From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 05:20:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 235491065670 for ; Sun, 23 Sep 2012 05:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EDFEC8FC12 for ; Sun, 23 Sep 2012 05:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N5K8NN012485 for ; Sun, 23 Sep 2012 05:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N5K8iK012484; Sun, 23 Sep 2012 05:20:08 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 05:20:08 GMT Resent-Message-Id: <201209230520.q8N5K8iK012484@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Shane Ambler Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54F1D106564A for ; Sun, 23 Sep 2012 05:16:22 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 3C7278FC0A for ; Sun, 23 Sep 2012 05:16:22 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N5GMZc062347 for ; Sun, 23 Sep 2012 05:16:22 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8N5GLNh062334; Sun, 23 Sep 2012 05:16:21 GMT (envelope-from nobody) Message-Id: <201209230516.q8N5GLNh062334@red.freebsd.org> Date: Sun, 23 Sep 2012 05:16:21 GMT From: Shane Ambler To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171884: [maintainer update] update for graphics/opencolorio X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 05:20:09 -0000 >Number: 171884 >Category: ports >Synopsis: [maintainer update] update for graphics/opencolorio >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 05:20:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Shane Ambler >Release: 9.0-RELEASE-p1 >Organization: >Environment: FreeBSD leader.local 9.0-RELEASE-p1 FreeBSD 9.0-RELEASE-p1 #1: Tue May 15 12:34:33 CST 2012 shane@leader.local:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update to graphics/opencolorio which fixes the gcc linking issues and documentation creation. Three questions - 1. The base code installs .so.1 and .so.1.0.7 and I added .so.1.0 - is the .so.1.0 needed/not-wanted/not-important? 2. To get the latex steps working I needed to rename .jpeg files to .jpg - this seems a wasted step - is there something I am missing or is this a quirk we work with? 3. With openimageio I needed to separate the python bindings into a separate port, which was initially due to dependency issues. While I don't see the dependency issue here, I do need to build the bindings for the doc creation step. Should I separate the python bindings install into a separate port or add an option to install them or is that my choice? >How-To-Repeat: >Fix: Patch attached with submission follows: diff -Nru opencolorio.orig/Makefile opencolorio/Makefile --- opencolorio.orig/Makefile 2012-09-23 14:34:47.050499597 +0930 +++ opencolorio/Makefile 2012-09-23 14:21:30.667502596 +0930 @@ -3,6 +3,7 @@ PORTNAME= opencolorio PORTVERSION= 1.0.7 +PORTREVISION= 1 CATEGORIES= graphics multimedia MASTER_SITES= https://github.com/imageworks/OpenColorIO/tarball/ DISTNAME= v${PORTVERSION} @@ -21,34 +22,29 @@ CMAKE_VERBOSE= yes CMAKE_OUTSOURCE= yes CMAKE_ARGS= -DOCIO_BUILD_JNIGLUE:BOOL=OFF \ - -DOCIO_BUILD_PYGLUE:BOOL=OFF + -DOCIO_BUILD_PYGLUE:BOOL=ON USE_LDCONFIG= yes +USE_PYTHON= 2.6+ WRKSRC= ${WRKDIR}/imageworks-OpenColorIO-b3cb224 MAKE_JOBS_SAFE= yes -OPTIONS_DEFINE= CLIAPPS SSE -OPTIONS_DEFAULT= SSE +OPTIONS_DEFINE= DOCS CLIAPPS SSE +OPTIONS_DEFAULT= DOCS CLIAPPS SSE CLIAPPS_DESC= Build cli apps SSE_DESC= Enable sse optimizations .include -.if ${CC:T} != "clang" -USE_GCC= 4.6+ -.endif - .if empty(PORT_OPTIONS:MDOCS) CMAKE_ARGS+= -DOCIO_BUILD_DOCS:BOOL=OFF .else -# docs currently broken -CMAKE_ARGS+= -DOCIO_BUILD_DOCS:BOOL=OFF +BUILD_DEPENDS+= sphinx-build:${PORTSDIR}/textproc/py-sphinx +CMAKE_ARGS+= -DOCIO_BUILD_DOCS:BOOL=ON .endif .if ${PORT_OPTIONS:MCLIAPPS} -.if ${CC:T} != "clang" -BROKEN= cli apps don't build with gcc -.endif +USE_GL= glew glut CMAKE_ARGS+= -DOCIO_BUILD_APPS:BOOL=ON PLIST_SUB+= CLIAPPS="" .else @@ -56,6 +52,12 @@ PLIST_SUB+= CLIAPPS="@comment " .endif +.if ${PORT_OPTIONS:MSSE} +CMAKE_ARGS+= -DOCIO_USE_SSE:BOOL=ON +.else +CMAKE_ARGS+= -DOCIO_USE_SSE:BOOL=OFF +.endif + .include .if ${ARCH} == "i386" || ${OSVERSION} < 803000 @@ -69,10 +71,16 @@ CFLAGS+= -march=pentium2 .endif -.if ${PORT_OPTIONS:MSSE} -CMAKE_ARGS+= -DOCIO_USE_SSE:BOOL=ON -.else -CMAKE_ARGS+= -DOCIO_USE_SSE:BOOL=OFF -.endif +SPIDIR=${WRKSRC}/docs/configurations/images/spi-vfx +post-patch: + ${MV} ${SPIDIR}/gn10_to_linear_light.jpeg ${SPIDIR}/gn10_to_linear_light.jpg + ${MV} ${SPIDIR}/gnf_to_linear_light.jpeg ${SPIDIR}/gnf_to_linear_light.jpg + ${MV} ${SPIDIR}/lg10_to_linear_light.jpeg ${SPIDIR}/lg10_to_linear_light.jpg + ${MV} ${SPIDIR}/lg8_to_vd8.jpeg ${SPIDIR}/lg8_to_vd8.jpg + ${MV} ${SPIDIR}/lgf_to_linear_light.jpeg ${SPIDIR}/lgf_to_linear_light.jpg + +post-install: + cd ${PREFIX}/lib && ${LN} -sf libOpenColorIO.so.1.0.7 libOpenColorIO.so.1.0 + cd ${PREFIX}/lib && ${LN} -sf %%PYTHON_SITELIBDIR%%/PyOpenColorIO.so.1.0.7 %%PYTHON_SITELIBDIR%%/PyOpenColorIO.so.1.0 .include diff -Nru opencolorio.orig/files/patch-docs_CMakeLists.txt opencolorio/files/patch-docs_CMakeLists.txt --- opencolorio.orig/files/patch-docs_CMakeLists.txt 1970-01-01 09:30:00.000000000 +0930 +++ opencolorio/files/patch-docs_CMakeLists.txt 2012-09-23 12:00:20.900500226 +0930 @@ -0,0 +1,11 @@ +--- docs/CMakeLists.txt.orig 2012-09-23 11:57:34.602501738 +0930 ++++ docs/CMakeLists.txt 2012-09-23 11:58:17.007499021 +0930 +@@ -98,7 +98,7 @@ + add_dependencies(doc Sphinx) + + install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/build-html/ +- DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/OpenColorIO/html ++ DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/opencolorio + PATTERN .git EXCLUDE) + + find_package(LATEX) diff -Nru opencolorio.orig/files/patch-docs_configurations_spi_vfx.rst opencolorio/files/patch-docs_configurations_spi_vfx.rst --- opencolorio.orig/files/patch-docs_configurations_spi_vfx.rst 1970-01-01 09:30:00.000000000 +0930 +++ opencolorio/files/patch-docs_configurations_spi_vfx.rst 2012-09-23 09:59:19.063499504 +0930 @@ -0,0 +1,47 @@ +--- docs/configurations/spi_vfx.rst.orig 2012-04-18 09:38:16.000000000 +0930 ++++ docs/configurations/spi_vfx.rst 2012-09-23 09:32:29.056500081 +0930 +@@ -71,7 +71,7 @@ + + lg8, lg10, and lg16 are similar. They are all the same log to linear transformation but are explicitly defined to be lossless at the specified bit depths. The luts use nearest neighbor interpolation to search for an exact match. Significant performance gains were found when using the proper bitdepth lut. While using the lg16 conversion on an 8 bit image will yield the same result, it is measurably slower than using the 8-bit conversion (assuming 8-bits is all that is needed). This performance gap remains even on current graphics hardware. + +-.. figure:: images/spi-vfx/lg10_to_linear_light.jpeg ++.. figure:: images/spi-vfx/lg10_to_linear_light.jpg + :align: center + + lg10 to linear light. The green curve represents the lg to ln conversion. The red curve show the green channel of a Kodak 5218 exposure test. The x-axis is in 10bit input lg the output is in lg base2 linear light units. 0.0 Represents diffuse white. +@@ -81,7 +81,7 @@ + lgf is identical on the range from 0-1 to the standard lg luts. It specifies an additional range below 0.0 and above 1.0. In 10 bit the spaces is defined from -512 to 2048. Lg color timing number from either on set color correction devices or from a DI house to be applied in a way that can be fully inverted out without loss. Lgf specifies 18 stops above the lg10 max and 36 stops below the log10 min with a total dynamic range of 85 stops. The space is designed to be bigger than needed. + + +-.. figure:: images/spi-vfx/lgf_to_linear_light.jpeg ++.. figure:: images/spi-vfx/lgf_to_linear_light.jpg + :align: center + + lgf to linear light. The green curve represents the lg to ln conversion. The red curve show the green channel of a Kodak 5218 exposure test. The x axis is in 10bit input lg the output is in log(base2) linear light units. 0 Represents diffuse white +@@ -94,7 +94,7 @@ + + GN is the Imageworks Panalog space. It follows the Panalog specification and additionally extrapolates so all of the values from 0 to 1023 are defined. This was necessary due to compression artifacts that could create values below the Panalog specifications. gn8,10,16 are defined with diffuse white at 681, Max white is approximately 2.6 stops above diffuse white and black is approximately 12.6 stops below diffuse white. The dynamic range is less than that of lg. + +-.. figure:: images/spi-vfx/gn10_to_linear_light.jpeg ++.. figure:: images/spi-vfx/gn10_to_linear_light.jpg + :align: center + + gn10 to linear light. the x axis is in 10bit Panalog values. The Y axis is in linear light. The green curve is the gn curve. the red curve is the Panalog data. +@@ -103,7 +103,7 @@ + + gnf specifies 14.5 stops above the gn10 max and 18 of stops below the gn10 min. The entire range of gnf is 47 stops. + +-.. figure:: images/spi-vfx/gnf_to_linear_light.jpeg ++.. figure:: images/spi-vfx/gnf_to_linear_light.jpg + :align: center + + gnf to linear light. the x axis is in 10bit Panalog values. The Y axis is in linear light. The green curve is the gn curve. the red curve is the Panalog data. Only a subset of the function is used to define the gnf solorspace +@@ -116,7 +116,7 @@ + + The vd spaces are mappings of linear image data into display space. The main part of the transformation is defined as a single curve that is conceptually two parts. The first is a ln to lg conversion. The second is lg to sRGB conversion. This is based off the neutral channel response of the sRGB film emulation lut used in the profile. The dynamic range of the vd colorspace is limited. It is undesirable to map the vd max to the linear max. Such a conversion results in linear values are almost never what an artist intended. The rule of thumb is that, at the high end, single value deltas in an 8 bit image should never create over a half stop of additional linear light. The vd conversion curve is limited to prevent this case. + +-.. figure :: images/spi-vfx/lg8_to_vd8.jpeg ++.. figure :: images/spi-vfx/lg8_to_vd8.jpg + :align: center + + The curve used to map from Lg8 to vd 8. The x-axis is in lg8 units, the y-axis is in vd8 units. diff -Nru opencolorio.orig/files/patch-export_OpenColorIO_OpenColorABI.h.in opencolorio/files/patch-export_OpenColorIO_OpenColorABI.h.in --- opencolorio.orig/files/patch-export_OpenColorIO_OpenColorABI.h.in 1970-01-01 09:30:00.000000000 +0930 +++ opencolorio/files/patch-export_OpenColorIO_OpenColorABI.h.in 2012-09-20 14:43:35.987135550 +0930 @@ -0,0 +1,18 @@ +--- export/OpenColorIO/OpenColorABI.h.in.orig 2012-09-17 14:13:30.299501867 +0930 ++++ export/OpenColorIO/OpenColorABI.h.in 2012-09-17 14:13:36.793503619 +0930 +@@ -82,8 +82,13 @@ + #endif + #define OCIOHIDDEN + #else // Others platforms not supported atm +- #define OCIOEXPORT +- #define OCIOHIDDEN ++ #if __GNUC__ >= 4 ++ #define OCIOEXPORT __attribute__ ((visibility("default"))) ++ #define OCIOHIDDEN __attribute__ ((visibility("hidden"))) ++ #else ++ #define OCIOEXPORT ++ #define OCIOHIDDEN ++ #endif + #endif + + #endif // INCLUDED_OCIO_OPENCOLORABI_H diff -Nru opencolorio.orig/files/patch-share_cmake_OCIOMacros.cmake opencolorio/files/patch-share_cmake_OCIOMacros.cmake --- opencolorio.orig/files/patch-share_cmake_OCIOMacros.cmake 1970-01-01 09:30:00.000000000 +0930 +++ opencolorio/files/patch-share_cmake_OCIOMacros.cmake 2012-09-23 08:23:47.742502423 +0930 @@ -0,0 +1,20 @@ +--- share/cmake/OCIOMacros.cmake.orig 2012-09-23 08:22:50.284500079 +0930 ++++ share/cmake/OCIOMacros.cmake 2012-09-23 08:23:01.717501340 +0930 +@@ -294,7 +294,7 @@ + MACRO(ExtractRstCPP INFILE OUTFILE) + add_custom_command( + OUTPUT ${OUTFILE} +- COMMAND ${CMAKE_SOURCE_DIR}/share/sphinx/ExtractRstFromSourceCPP.py ${INFILE} ${OUTFILE} ++ COMMAND python ${CMAKE_SOURCE_DIR}/share/sphinx/ExtractRstFromSourceCPP.py ${INFILE} ${OUTFILE} + DEPENDS ${INFILE} + COMMENT "Extracting reStructuredText from ${INFILE} (using old process)" + ) +@@ -303,7 +303,7 @@ + MACRO(ExtractRstSimple INFILE OUTFILE) + add_custom_command( + OUTPUT ${OUTFILE} +- COMMAND ${CMAKE_SOURCE_DIR}/share/sphinx/ExtractRstFromSourceSimple.py ${INFILE} ${OUTFILE} ++ COMMAND python ${CMAKE_SOURCE_DIR}/share/sphinx/ExtractRstFromSourceSimple.py ${INFILE} ${OUTFILE} + DEPENDS ${INFILE} + COMMENT "Extracting reStructuredText from ${INFILE}" + ) diff -Nru opencolorio.orig/pkg-plist opencolorio/pkg-plist --- opencolorio.orig/pkg-plist 2012-09-23 14:34:47.050499597 +0930 +++ opencolorio/pkg-plist 2012-09-23 14:24:56.173499867 +0930 @@ -7,12 +7,178 @@ include/OpenColorIO/OpenColorTransforms.h include/OpenColorIO/OpenColorABI.h include/OpenColorIO/OpenColorIO.h +include/PyOpenColorIO/PyOpenColorIO.h +%%PYTHON_SITELIBDIR%%/PyOpenColorIO.so +%%PYTHON_SITELIBDIR%%/PyOpenColorIO.so.1 +%%PYTHON_SITELIBDIR%%/PyOpenColorIO.so.1.0 +%%PYTHON_SITELIBDIR%%/PyOpenColorIO.so.1.0.7 lib/libOpenColorIO.a lib/libOpenColorIO.so lib/libOpenColorIO.so.1 +lib/libOpenColorIO.so.1.0 lib/libOpenColorIO.so.1.0.7 libdata/pkgconfig/OpenColorIO.pc share/ocio/setup_ocio.sh +%%PORTDOCS%%%%DOCSDIR%%/_images/gn10_to_linear_light.jpg +%%PORTDOCS%%%%DOCSDIR%%/_images/gnf_to_linear_light.jpg +%%PORTDOCS%%%%DOCSDIR%%/_images/lg10_to_linear_light.jpg +%%PORTDOCS%%%%DOCSDIR%%/_images/lg8_to_vd8.jpg +%%PORTDOCS%%%%DOCSDIR%%/_images/lgf_to_linear_light.jpg +%%PORTDOCS%%%%DOCSDIR%%/_images/psicc_itworks.png +%%PORTDOCS%%%%DOCSDIR%%/_images/psicc_open_current_profile.png +%%PORTDOCS%%%%DOCSDIR%%/_images/psicc_proof_setup.png +%%PORTDOCS%%%%DOCSDIR%%/_images/psicc_reveal_profile.png +%%PORTDOCS%%%%DOCSDIR%%/_images/psicc_select_profile.png +%%PORTDOCS%%%%DOCSDIR%%/_sources/ChangeLog.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/CompatibleSoftware.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/allocation_vars.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/index.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/nuke_default.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/spi_anim.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/spi_pipeline.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/spi_vfx.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/api/index.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/api/OpenColorIO.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/api/OpenColorTransforms.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/api/OpenColorTypes.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/bindings/PythonAPI.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/bindings/PythonTransforms.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/bindings/PythonTypes.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/coding_guidelines.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/getting_started.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/index.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/internal_architecture.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/issues.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/submitting_changes.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/usage_examples.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/downloads.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/FAQ.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/index.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/installation.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/License.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/userguide/baking_luts.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/userguide/contexts.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/userguide/index.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/userguide/looks.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/userguide/tool_overview.txt +%%PORTDOCS%%%%DOCSDIR%%/_static/ajax-loader.gif +%%PORTDOCS%%%%DOCSDIR%%/_static/alert_info_32.png +%%PORTDOCS%%%%DOCSDIR%%/_static/alert_warning_32.png +%%PORTDOCS%%%%DOCSDIR%%/_static/basic.css +%%PORTDOCS%%%%DOCSDIR%%/_static/bg-page.png +%%PORTDOCS%%%%DOCSDIR%%/_static/bullet_orange.png +%%PORTDOCS%%%%DOCSDIR%%/_static/clo_res19_lm10.0101.jpg +%%PORTDOCS%%%%DOCSDIR%%/_static/clo_res19_lnf.0101.jpg +%%PORTDOCS%%%%DOCSDIR%%/_static/clo_res19_vd16.0101.jpg +%%PORTDOCS%%%%DOCSDIR%%/_static/comment-bright.png +%%PORTDOCS%%%%DOCSDIR%%/_static/comment-close.png +%%PORTDOCS%%%%DOCSDIR%%/_static/comment.png +%%PORTDOCS%%%%DOCSDIR%%/_static/doctools.js +%%PORTDOCS%%%%DOCSDIR%%/_static/down-pressed.png +%%PORTDOCS%%%%DOCSDIR%%/_static/down.png +%%PORTDOCS%%%%DOCSDIR%%/_static/file.png +%%PORTDOCS%%%%DOCSDIR%%/_static/jquery.js +%%PORTDOCS%%%%DOCSDIR%%/_static/minus.png +%%PORTDOCS%%%%DOCSDIR%%/_static/ocio.css +%%PORTDOCS%%%%DOCSDIR%%/_static/plus.png +%%PORTDOCS%%%%DOCSDIR%%/_static/pygments.css +%%PORTDOCS%%%%DOCSDIR%%/_static/searchtools.js +%%PORTDOCS%%%%DOCSDIR%%/_static/underscore.js +%%PORTDOCS%%%%DOCSDIR%%/_static/up-pressed.png +%%PORTDOCS%%%%DOCSDIR%%/_static/up.png +%%PORTDOCS%%%%DOCSDIR%%/_static/websupport.js +%%PORTDOCS%%%%DOCSDIR%%/.buildinfo +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/ChangeLog.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/CompatibleSoftware.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/configurations/allocation_vars.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/configurations/index.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/configurations/nuke_default.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/configurations/spi_anim.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/configurations/spi_pipeline.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/configurations/spi_vfx.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/api/index.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/api/OpenColorIO.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/api/OpenColorTransforms.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/api/OpenColorTypes.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/bindings/PythonAPI.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/bindings/PythonTransforms.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/bindings/PythonTypes.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/coding_guidelines.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/getting_started.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/index.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/internal_architecture.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/issues.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/submitting_changes.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/developers/usage_examples.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/downloads.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/environment.pickle +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/FAQ.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/index.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/installation.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/License.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/userguide/baking_luts.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/userguide/contexts.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/userguide/index.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/userguide/looks.doctree +%%PORTDOCS%%%%DOCSDIR%%/.doctrees/userguide/tool_overview.doctree +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.html +%%PORTDOCS%%%%DOCSDIR%%/CompatibleSoftware.html +%%PORTDOCS%%%%DOCSDIR%%/configurations/allocation_vars.html +%%PORTDOCS%%%%DOCSDIR%%/configurations/index.html +%%PORTDOCS%%%%DOCSDIR%%/configurations/nuke_default.html +%%PORTDOCS%%%%DOCSDIR%%/configurations/spi_anim.html +%%PORTDOCS%%%%DOCSDIR%%/configurations/spi_pipeline.html +%%PORTDOCS%%%%DOCSDIR%%/configurations/spi_vfx.html +%%PORTDOCS%%%%DOCSDIR%%/developers/api/index.html +%%PORTDOCS%%%%DOCSDIR%%/developers/api/OpenColorIO.html +%%PORTDOCS%%%%DOCSDIR%%/developers/api/OpenColorTransforms.html +%%PORTDOCS%%%%DOCSDIR%%/developers/api/OpenColorTypes.html +%%PORTDOCS%%%%DOCSDIR%%/developers/bindings/PythonAPI.html +%%PORTDOCS%%%%DOCSDIR%%/developers/bindings/PythonTransforms.html +%%PORTDOCS%%%%DOCSDIR%%/developers/bindings/PythonTypes.html +%%PORTDOCS%%%%DOCSDIR%%/developers/coding_guidelines.html +%%PORTDOCS%%%%DOCSDIR%%/developers/getting_started.html +%%PORTDOCS%%%%DOCSDIR%%/developers/index.html +%%PORTDOCS%%%%DOCSDIR%%/developers/internal_architecture.html +%%PORTDOCS%%%%DOCSDIR%%/developers/issues.html +%%PORTDOCS%%%%DOCSDIR%%/developers/submitting_changes.html +%%PORTDOCS%%%%DOCSDIR%%/developers/usage_examples.html +%%PORTDOCS%%%%DOCSDIR%%/downloads.html +%%PORTDOCS%%%%DOCSDIR%%/FAQ.html +%%PORTDOCS%%%%DOCSDIR%%/genindex.html +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%%%DOCSDIR%%/installation.html +%%PORTDOCS%%%%DOCSDIR%%/License.html +%%PORTDOCS%%%%DOCSDIR%%/objects.inv +%%PORTDOCS%%%%DOCSDIR%%/py-modindex.html +%%PORTDOCS%%%%DOCSDIR%%/search.html +%%PORTDOCS%%%%DOCSDIR%%/searchindex.js +%%PORTDOCS%%%%DOCSDIR%%/userguide/baking_luts.html +%%PORTDOCS%%%%DOCSDIR%%/userguide/contexts.html +%%PORTDOCS%%%%DOCSDIR%%/userguide/index.html +%%PORTDOCS%%%%DOCSDIR%%/userguide/looks.html +%%PORTDOCS%%%%DOCSDIR%%/userguide/tool_overview.html @dirrm include/OpenColorIO +@dirrm include/PyOpenColorIO @dirrmtry libdata/pkgconfig @dirrm share/ocio +%%PORTDOCS%%@dirrm %%DOCSDIR%%/userguide +%%PORTDOCS%%@dirrm %%DOCSDIR%%/developers/bindings +%%PORTDOCS%%@dirrm %%DOCSDIR%%/developers/api +%%PORTDOCS%%@dirrm %%DOCSDIR%%/developers +%%PORTDOCS%%@dirrm %%DOCSDIR%%/configurations +%%PORTDOCS%%@dirrm %%DOCSDIR%%/.doctrees/userguide +%%PORTDOCS%%@dirrm %%DOCSDIR%%/.doctrees/developers/bindings +%%PORTDOCS%%@dirrm %%DOCSDIR%%/.doctrees/developers/api +%%PORTDOCS%%@dirrm %%DOCSDIR%%/.doctrees/developers +%%PORTDOCS%%@dirrm %%DOCSDIR%%/.doctrees/configurations +%%PORTDOCS%%@dirrm %%DOCSDIR%%/.doctrees +%%PORTDOCS%%@dirrm %%DOCSDIR%%/_static +%%PORTDOCS%%@dirrm %%DOCSDIR%%/_sources/userguide +%%PORTDOCS%%@dirrm %%DOCSDIR%%/_sources/developers/bindings +%%PORTDOCS%%@dirrm %%DOCSDIR%%/_sources/developers/api +%%PORTDOCS%%@dirrm %%DOCSDIR%%/_sources/developers +%%PORTDOCS%%@dirrm %%DOCSDIR%%/_sources/configurations +%%PORTDOCS%%@dirrm %%DOCSDIR%%/_sources +%%PORTDOCS%%@dirrm %%DOCSDIR%%/_images +%%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 05:30:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 88FE21065673 for ; Sun, 23 Sep 2012 05:30:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5A11F8FC12 for ; Sun, 23 Sep 2012 05:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N5UHtE021194 for ; Sun, 23 Sep 2012 05:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N5UHrR021185; Sun, 23 Sep 2012 05:30:17 GMT (envelope-from gnats) Date: Sun, 23 Sep 2012 05:30:17 GMT Message-Id: <201209230530.q8N5UHrR021185@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Shane Ambler Cc: Subject: Re: ports/171884: [maintainer update] update for graphics/opencolorio X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Shane Ambler List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 05:30:17 -0000 The following reply was made to PR ports/171884; it has been noted by GNATS. From: Shane Ambler To: bug-followup@FreeBSD.org, FreeBSD@Shaneware.biz Cc: Subject: Re: ports/171884: [maintainer update] update for graphics/opencolorio Date: Sun, 23 Sep 2012 14:50:04 +0930 Sorry - the %%PYTHON_SITELIBDIR%% I added at the end of the Makefile should be ${PYTHON_SITELIBDIR} From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 05:37:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 09EF91065673; Sun, 23 Sep 2012 05:37:03 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D1DD28FC16; Sun, 23 Sep 2012 05:37:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N5b26P030840; Sun, 23 Sep 2012 05:37:02 GMT (envelope-from bsam@freefall.freebsd.org) Received: (from bsam@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N5b2q1030836; Sun, 23 Sep 2012 05:37:02 GMT (envelope-from bsam) Date: Sun, 23 Sep 2012 05:37:02 GMT Message-Id: <201209230537.q8N5b2q1030836@freefall.freebsd.org> To: bsam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: bsam@FreeBSD.org Cc: Subject: Re: ports/171877: [patch] graphics/popper: unify poppler-config.h includes in core "installed" headers (bug 52193) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 05:37:03 -0000 Synopsis: [patch] graphics/popper: unify poppler-config.h includes in core "installed" headers (bug 52193) Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: bsam Responsible-Changed-When: Sun Sep 23 05:37:02 UTC 2012 Responsible-Changed-Why: Over to the maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=171877 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 07:00:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B54B1065674 for ; Sun, 23 Sep 2012 07:00:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 12F0E8FC14 for ; Sun, 23 Sep 2012 07:00:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N70OXm005937 for ; Sun, 23 Sep 2012 07:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N70O3n005931; Sun, 23 Sep 2012 07:00:24 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 07:00:24 GMT Resent-Message-Id: <201209230700.q8N70O3n005931@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Horance Chou Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF5D3106564A for ; Sun, 23 Sep 2012 06:57:26 +0000 (UTC) (envelope-from horance@djh5e.doesntexist.org) Received: from djh5e.doesntexist.org (host-69.74-185-111.static.totalbb.net.tw [111.185.74.69]) by mx1.freebsd.org (Postfix) with ESMTP id 5EF668FC14 for ; Sun, 23 Sep 2012 06:57:25 +0000 (UTC) Received: from djh5e.doesntexist.org (smmsp@localhost [127.0.0.1]) by djh5e.doesntexist.org (8.14.5/8.14.5) with ESMTP id q8N6vOZK036484; Sun, 23 Sep 2012 14:57:24 +0800 (CST) (envelope-from horance@djh5e.doesntexist.org) Received: (from root@localhost) by djh5e.doesntexist.org (8.14.5/8.14.5/Submit) id q8N6vO30036483; Sun, 23 Sep 2012 14:57:24 +0800 (CST) (envelope-from horance) Message-Id: <201209230657.q8N6vO30036483@djh5e.doesntexist.org> Date: Sun, 23 Sep 2012 14:57:24 +0800 (CST) From: Horance Chou To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: pvizeli@yahoo.de Subject: ports/171886: [PATCH] multimedia/gpac-mp4box: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 07:00:25 -0000 >Number: 171886 >Category: ports >Synopsis: [PATCH] multimedia/gpac-mp4box: [SUMMARIZE CHANGES] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 07:00:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Horance Chou >Release: FreeBSD 9.1-PRERELEASE i386 >Organization: FreeBSD User @ Taiwan >Environment: System: FreeBSD gaia.freera.net 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #9: Thu Jul 26 16:35:35 CST 2012 >Description: updated to 0.5.0 Port maintainer (pvizeli@yahoo.de) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: suffix) >How-To-Repeat: >Fix: --- gpac-mp4box-0.5.0.patch begins here --- diff -ruN --exclude=CVS ../gpac-mp4box.orig/Makefile ./Makefile --- ../gpac-mp4box.orig/Makefile 2012-06-01 13:22:30.000000000 +0800 +++ ./Makefile 2012-09-14 00:33:27.000000000 +0800 @@ -6,8 +6,7 @@ # PORTNAME= mp4box -DISTVERSION= 0.4.5 -PORTREVISION= 1 +DISTVERSION= 0.5.0 CATEGORIES= multimedia MASTER_SITES= SF/gpac/GPAC/GPAC%20${PORTVERSION} PKGNAMEPREFIX= gpac- @@ -16,7 +15,7 @@ MAINTAINER= pvizeli@yahoo.de COMMENT= A tool for merge mpg4 from Gpac -LIB_DEPENDS= gpac.1:${PORTSDIR}/multimedia/gpac-libgpac +LIB_DEPENDS= gpac.2:${PORTSDIR}/multimedia/gpac-libgpac WRKSRC= ${WRKDIR}/gpac/applications/mp4box PLIST_FILES= bin/mp4box diff -ruN --exclude=CVS ../gpac-mp4box.orig/distinfo ./distinfo --- ../gpac-mp4box.orig/distinfo 2011-07-03 21:38:24.000000000 +0800 +++ ./distinfo 2012-09-12 15:37:33.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (gpac-0.4.5.tar.gz) = f4039763ebec6630dc38e5e030c6573b47ced28fd009770c2e0e18b087753671 -SIZE (gpac-0.4.5.tar.gz) = 4269054 +SHA256 (gpac-0.5.0.tar.gz) = 42971ac39511a1b6d1db39af664ce887b38c8657328c88cd200d87a02de81c24 +SIZE (gpac-0.5.0.tar.gz) = 7861057 diff -ruN --exclude=CVS ../gpac-mp4box.orig/files/patch-Makefile ./files/patch-Makefile --- ../gpac-mp4box.orig/files/patch-Makefile 2009-02-27 20:27:38.000000000 +0800 +++ ./files/patch-Makefile 2012-09-14 00:38:56.000000000 +0800 @@ -7,7 +7,7 @@ +CFLAGS+= -I/usr/local/include -L/usr/local/lib +LDFLAGS= -lpthread -lgpac +NAME= mp4box -+OBJ= filedump.o fileimport.o main.o ++OBJ= filedump.o fileimport.o live.o main.o +prog: $(OBJ) + $(CC) $(CFLAGS) -o $(NAME) $(OBJ) $(LDFLAGS) +all: prog --- gpac-mp4box-0.5.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 07:00:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95B5E1065675 for ; Sun, 23 Sep 2012 07:00:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6C4C08FC17 for ; Sun, 23 Sep 2012 07:00:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N70PXD006003 for ; Sun, 23 Sep 2012 07:00:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N70PNH005996; Sun, 23 Sep 2012 07:00:25 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 07:00:25 GMT Resent-Message-Id: <201209230700.q8N70PNH005996@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Horance Chou Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AAE26106566B; Sun, 23 Sep 2012 06:59:29 +0000 (UTC) (envelope-from horance@djh5e.doesntexist.org) Received: from djh5e.doesntexist.org (host-69.74-185-111.static.totalbb.net.tw [111.185.74.69]) by mx1.freebsd.org (Postfix) with ESMTP id 278478FC0A; Sun, 23 Sep 2012 06:59:27 +0000 (UTC) Received: from djh5e.doesntexist.org (smmsp@localhost [127.0.0.1]) by djh5e.doesntexist.org (8.14.5/8.14.5) with ESMTP id q8N6xR16036759; Sun, 23 Sep 2012 14:59:27 +0800 (CST) (envelope-from horance@djh5e.doesntexist.org) Received: (from root@localhost) by djh5e.doesntexist.org (8.14.5/8.14.5/Submit) id q8N6xRXg036758; Sun, 23 Sep 2012 14:59:27 +0800 (CST) (envelope-from horance) Message-Id: <201209230659.q8N6xRXg036758@djh5e.doesntexist.org> Date: Sun, 23 Sep 2012 14:59:27 +0800 (CST) From: Horance Chou To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: multimedia@FreeBSD.org Subject: ports/171887: [PATCH] multimedia/mkvtoolnix: update to 5.8.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 07:00:25 -0000 >Number: 171887 >Category: ports >Synopsis: [PATCH] multimedia/mkvtoolnix: update to 5.8.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 07:00:25 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Horance Chou >Release: FreeBSD 9.1-PRERELEASE i386 >Organization: FreeBSD User @ Taiwan >Environment: System: FreeBSD gaia.freera.net 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #9: Thu Jul 26 16:35:35 CST 2012 >Description: - Update to 5.8.0 Added file(s): - files/patch-src-common-timecode.h Port maintainer (multimedia@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- mkvtoolnix-5.8.0.patch begins here --- diff -ruN --exclude=CVS ../mkvtoolnix.orig/Makefile ./Makefile --- ../mkvtoolnix.orig/Makefile 2012-07-20 04:15:37.000000000 +0800 +++ ./Makefile 2012-09-23 13:08:01.000000000 +0800 @@ -6,8 +6,7 @@ # PORTNAME= mkvtoolnix -PORTVERSION= 5.0.1 -PORTREVISION= 2 +PORTVERSION= 5.8.0 CATEGORIES= multimedia audio MASTER_SITES= http://www.bunkus.org/videotools/mkvtoolnix/sources/ @@ -23,9 +22,12 @@ vorbis.4:${PORTSDIR}/audio/libvorbis \ ogg:${PORTSDIR}/audio/libogg \ boost_regex.4:${PORTSDIR}/devel/boost-libs \ - curl.6:${PORTSDIR}/ftp/curl + curl.6:${PORTSDIR}/ftp/curl \ + ebml.3:${PORTSDIR}/textproc/libebml \ + matroska.5:${PORTSDIR}/multimedia/libmatroska USE_BZIP2= yes +USE_GCC= 4.6+ USE_GETTEXT= yes USE_ICONV= yes GNU_CONFIGURE= yes @@ -33,7 +35,7 @@ USE_RUBY= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ENV+= ac_cv_path_PO4A=no +CONFIGURE_ENV+= ac_cv_path_PO4A=no ZLIB_CFLAGS=-I/usr/include ZLIB_LIBS=-lz CONFIGURE_ARGS= --enable-lzo --enable-bz2 --disable-qt \ --with-boost=${LOCALBASE} \ --with-boost-filesystem=boost_filesystem \ @@ -41,7 +43,7 @@ --with-boost-regex=boost_regex MAKE_JOBS_SAFE= yes -MANLANG= "" ja zh_CN nl +MANLANG= "" ja zh_CN nl uk MAN1= mkvextract.1 mkvinfo.1 mkvmerge.1 mkvpropedit.1 OPTIONS_DEFINE= WXGTK diff -ruN --exclude=CVS ../mkvtoolnix.orig/distinfo ./distinfo --- ../mkvtoolnix.orig/distinfo 2011-10-11 04:58:27.000000000 +0800 +++ ./distinfo 2012-09-21 22:49:24.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (mkvtoolnix-5.0.1.tar.bz2) = eecc48d17c0583b6b071e710bfe88ae09439bd99bb90c694a2fed0651bb08f19 -SIZE (mkvtoolnix-5.0.1.tar.bz2) = 2155095 +SHA256 (mkvtoolnix-5.8.0.tar.bz2) = 3c9ec7e4c035b82a35850c5ada98a29904edc44a0d1c9b900ed05d56e6274960 +SIZE (mkvtoolnix-5.8.0.tar.bz2) = 4454971 diff -ruN --exclude=CVS ../mkvtoolnix.orig/files/patch-src-common-timecode.h ./files/patch-src-common-timecode.h --- ../mkvtoolnix.orig/files/patch-src-common-timecode.h 1970-01-01 08:00:00.000000000 +0800 +++ ./files/patch-src-common-timecode.h 2012-09-22 22:32:56.000000000 +0800 @@ -0,0 +1,11 @@ +--- src/common/timecode.h.orig 2012-09-22 22:31:07.000000000 +0800 ++++ src/common/timecode.h 2012-09-22 22:31:19.000000000 +0800 +@@ -139,7 +139,7 @@ + } + + basic_timecode_c abs() const { +- return basic_timecode_c{std::abs(m_timecode), m_valid}; ++ return basic_timecode_c{(T)std::abs(m_timecode), m_valid}; + } + + // comparison diff -ruN --exclude=CVS ../mkvtoolnix.orig/pkg-plist ./pkg-plist --- ../mkvtoolnix.orig/pkg-plist 2011-09-28 21:44:33.000000000 +0800 +++ ./pkg-plist 2012-09-23 10:23:52.000000000 +0800 @@ -5,17 +5,56 @@ %%GUI%%bin/mmg %%GUI%%share/applications/mkvinfo.desktop %%GUI%%share/applications/mkvmergeGUI.desktop +%%GUI%%share/icons/hicolor/16x16/apps/mkvextract.png +%%GUI%%share/icons/hicolor/16x16/apps/mkvinfo.png +%%GUI%%share/icons/hicolor/16x16/apps/mkvmerge.png +%%GUI%%share/icons/hicolor/16x16/apps/mkvmergeGUI.png +%%GUI%%share/icons/hicolor/16x16/apps/mkvpropedit.png +%%GUI%%share/icons/hicolor/24x24/apps/mkvextract.png +%%GUI%%share/icons/hicolor/24x24/apps/mkvinfo.png +%%GUI%%share/icons/hicolor/24x24/apps/mkvmerge.png +%%GUI%%share/icons/hicolor/24x24/apps/mkvmergeGUI.png +%%GUI%%share/icons/hicolor/24x24/apps/mkvpropedit.png +%%GUI%%share/icons/hicolor/32x32/apps/mkvextract.png %%GUI%%share/icons/hicolor/32x32/apps/mkvinfo.png +%%GUI%%share/icons/hicolor/32x32/apps/mkvmerge.png %%GUI%%share/icons/hicolor/32x32/apps/mkvmergeGUI.png +%%GUI%%share/icons/hicolor/32x32/apps/mkvpropedit.png +%%GUI%%share/icons/hicolor/48x48/apps/mkvextract.png +%%GUI%%share/icons/hicolor/48x48/apps/mkvinfo.png +%%GUI%%share/icons/hicolor/48x48/apps/mkvmerge.png +%%GUI%%share/icons/hicolor/48x48/apps/mkvmergeGUI.png +%%GUI%%share/icons/hicolor/48x48/apps/mkvpropedit.png +%%GUI%%share/icons/hicolor/64x64/apps/mkvextract.png %%GUI%%share/icons/hicolor/64x64/apps/mkvinfo.png +%%GUI%%share/icons/hicolor/64x64/apps/mkvmerge.png %%GUI%%share/icons/hicolor/64x64/apps/mkvmergeGUI.png +%%GUI%%share/icons/hicolor/64x64/apps/mkvpropedit.png +%%GUI%%share/icons/hicolor/96x96/apps/mkvextract.png +%%GUI%%share/icons/hicolor/96x96/apps/mkvinfo.png +%%GUI%%share/icons/hicolor/96x96/apps/mkvmerge.png +%%GUI%%share/icons/hicolor/96x96/apps/mkvmergeGUI.png +%%GUI%%share/icons/hicolor/96x96/apps/mkvpropedit.png +%%GUI%%share/icons/hicolor/128x128/apps/mkvextract.png +%%GUI%%share/icons/hicolor/128x128/apps/mkvinfo.png +%%GUI%%share/icons/hicolor/128x128/apps/mkvmerge.png +%%GUI%%share/icons/hicolor/128x128/apps/mkvmergeGUI.png +%%GUI%%share/icons/hicolor/128x128/apps/mkvpropedit.png +%%GUI%%share/icons/hicolor/256x256/apps/mkvextract.png +%%GUI%%share/icons/hicolor/256x256/apps/mkvinfo.png +%%GUI%%share/icons/hicolor/256x256/apps/mkvmerge.png +%%GUI%%share/icons/hicolor/256x256/apps/mkvmergeGUI.png +%%GUI%%share/icons/hicolor/256x256/apps/mkvpropedit.png +share/locale/cs/LC_MESSAGES/mkvtoolnix.mo share/locale/de/LC_MESSAGES/mkvtoolnix.mo share/locale/es/LC_MESSAGES/mkvtoolnix.mo +share/locale/eu/LC_MESSAGES/mkvtoolnix.mo share/locale/fr/LC_MESSAGES/mkvtoolnix.mo share/locale/it/LC_MESSAGES/mkvtoolnix.mo share/locale/ja/LC_MESSAGES/mkvtoolnix.mo share/locale/lt/LC_MESSAGES/mkvtoolnix.mo share/locale/nl/LC_MESSAGES/mkvtoolnix.mo +share/locale/pl/LC_MESSAGES/mkvtoolnix.mo share/locale/ru/LC_MESSAGES/mkvtoolnix.mo share/locale/tr/LC_MESSAGES/mkvtoolnix.mo share/locale/uk/LC_MESSAGES/mkvtoolnix.mo @@ -37,9 +76,46 @@ %%DOCSDIR%%/guide/en/images/trackselection.gif %%DOCSDIR%%/guide/en/images/videotrackoptions.gif %%DOCSDIR%%/guide/en/mkvmerge-gui.hhc +%%DOCSDIR%%/guide/en/mkvmerge-gui.hhk %%DOCSDIR%%/guide/en/mkvmerge-gui.hhp %%DOCSDIR%%/guide/en/mkvmerge-gui.html -%%DOCSDIR%%/guide/en/mkvmerge-gui.hhk +%%DOCSDIR%%/guide/es/images/addingremovingattachments.gif +%%DOCSDIR%%/guide/es/images/addremovefiles.gif +%%DOCSDIR%%/guide/es/images/attachmentoptions.gif +%%DOCSDIR%%/guide/es/images/audiotrackoptions.gif +%%DOCSDIR%%/guide/es/images/chaptereditor.gif +%%DOCSDIR%%/guide/es/images/generaltrackoptions.gif +%%DOCSDIR%%/guide/es/images/jobmanager.gif +%%DOCSDIR%%/guide/es/images/movietitle.gif +%%DOCSDIR%%/guide/es/images/muxingwindow.gif +%%DOCSDIR%%/guide/es/images/selectmkvmergeexecutable.gif +%%DOCSDIR%%/guide/es/images/splitting.gif +%%DOCSDIR%%/guide/es/images/textsubtitlestrackoptions.gif +%%DOCSDIR%%/guide/es/images/trackselection.gif +%%DOCSDIR%%/guide/es/images/videotrackoptions.gif +%%DOCSDIR%%/guide/es/mkvmerge-gui.hhc +%%DOCSDIR%%/guide/es/mkvmerge-gui.hhk +%%DOCSDIR%%/guide/es/mkvmerge-gui.hhp +%%DOCSDIR%%/guide/es/mkvmerge-gui.html +%%DOCSDIR%%/guide/eu/images/addingremovingattachments.gif +%%DOCSDIR%%/guide/eu/images/addremovefiles.gif +%%DOCSDIR%%/guide/eu/images/attachmentoptions.gif +%%DOCSDIR%%/guide/eu/images/audiotrackoptions.gif +%%DOCSDIR%%/guide/eu/images/chaptereditor.gif +%%DOCSDIR%%/guide/eu/images/generaltrackoptions.gif +%%DOCSDIR%%/guide/eu/images/headereditor.gif +%%DOCSDIR%%/guide/eu/images/jobmanager.gif +%%DOCSDIR%%/guide/eu/images/movietitle.gif +%%DOCSDIR%%/guide/eu/images/muxingwindow.gif +%%DOCSDIR%%/guide/eu/images/selectmkvmergeexecutable.gif +%%DOCSDIR%%/guide/eu/images/splitting.gif +%%DOCSDIR%%/guide/eu/images/textsubtitlestrackoptions.gif +%%DOCSDIR%%/guide/eu/images/trackselection.gif +%%DOCSDIR%%/guide/eu/images/videotrackoptions.gif +%%DOCSDIR%%/guide/eu/mkvmerge-gui.hhc +%%DOCSDIR%%/guide/eu/mkvmerge-gui.hhk +%%DOCSDIR%%/guide/eu/mkvmerge-gui.hhp +%%DOCSDIR%%/guide/eu/mkvmerge-gui.html %%DOCSDIR%%/guide/zh_CN/images/addingremovingattachments.gif %%DOCSDIR%%/guide/zh_CN/images/addremovefiles.gif %%DOCSDIR%%/guide/zh_CN/images/attachmentoptions.gif @@ -55,15 +131,21 @@ %%DOCSDIR%%/guide/zh_CN/images/trackselection.gif %%DOCSDIR%%/guide/zh_CN/images/videotrackoptions.gif %%DOCSDIR%%/guide/zh_CN/mkvmerge-gui.hhc +%%DOCSDIR%%/guide/zh_CN/mkvmerge-gui.hhk %%DOCSDIR%%/guide/zh_CN/mkvmerge-gui.hhp %%DOCSDIR%%/guide/zh_CN/mkvmerge-gui.html -%%DOCSDIR%%/guide/zh_CN/mkvmerge-gui.hhk @dirrmtry man/zh_CN/man1 @dirrmtry man/zh_CN +@dirrmtry man/uk/man1 +@dirrmtry man/uk @dirrmtry man/nl/man1 @dirrmtry man/nl @dirrm %%DOCSDIR%%/guide/zh_CN/images @dirrm %%DOCSDIR%%/guide/zh_CN +@dirrm %%DOCSDIR%%/guide/eu/images +@dirrm %%DOCSDIR%%/guide/eu +@dirrm %%DOCSDIR%%/guide/es/images +@dirrm %%DOCSDIR%%/guide/es @dirrm %%DOCSDIR%%/guide/en/images @dirrm %%DOCSDIR%%/guide/en @dirrm %%DOCSDIR%%/guide --- mkvtoolnix-5.8.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 07:00:41 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BDBA71065673; Sun, 23 Sep 2012 07:00:41 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 91B3F8FC14; Sun, 23 Sep 2012 07:00:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N70fYG008850; Sun, 23 Sep 2012 07:00:41 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N70fkB008826; Sun, 23 Sep 2012 07:00:41 GMT (envelope-from edwin) Date: Sun, 23 Sep 2012 07:00:41 GMT Message-Id: <201209230700.q8N70fkB008826@freefall.freebsd.org> To: horance@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171886: [PATCH] multimedia/gpac-mp4box: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 07:00:41 -0000 Synopsis: [PATCH] multimedia/gpac-mp4box: [SUMMARIZE CHANGES] State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Sep 23 07:00:40 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171886 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 07:00:55 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B3DAB106564A; Sun, 23 Sep 2012 07:00:55 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 875168FC0A; Sun, 23 Sep 2012 07:00:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N70tiS010856; Sun, 23 Sep 2012 07:00:55 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N70tws010844; Sun, 23 Sep 2012 07:00:55 GMT (envelope-from edwin) Date: Sun, 23 Sep 2012 07:00:55 GMT Message-Id: <201209230700.q8N70tws010844@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171887: [PATCH] multimedia/mkvtoolnix: update to 5.8.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 07:00:55 -0000 Synopsis: [PATCH] multimedia/mkvtoolnix: update to 5.8.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 23 07:00:54 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171887 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 07:10:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7D9681065670 for ; Sun, 23 Sep 2012 07:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 774188FC12 for ; Sun, 23 Sep 2012 07:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N7A9gc015004 for ; Sun, 23 Sep 2012 07:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N7A9AZ014998; Sun, 23 Sep 2012 07:10:09 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 07:10:09 GMT Resent-Message-Id: <201209230710.q8N7A9AZ014998@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Horance Chou Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2E69D106566C; Sun, 23 Sep 2012 07:05:14 +0000 (UTC) (envelope-from horance@djh5e.doesntexist.org) Received: from djh5e.doesntexist.org (host-69.74-185-111.static.totalbb.net.tw [111.185.74.69]) by mx1.freebsd.org (Postfix) with ESMTP id B8EBB8FC17; Sun, 23 Sep 2012 07:05:13 +0000 (UTC) Received: from djh5e.doesntexist.org (smmsp@localhost [127.0.0.1]) by djh5e.doesntexist.org (8.14.5/8.14.5) with ESMTP id q8N6tJmH036233; Sun, 23 Sep 2012 14:55:19 +0800 (CST) (envelope-from horance@djh5e.doesntexist.org) Received: (from root@localhost) by djh5e.doesntexist.org (8.14.5/8.14.5/Submit) id q8N6tJBR036232; Sun, 23 Sep 2012 14:55:19 +0800 (CST) (envelope-from horance) Message-Id: <201209230655.q8N6tJBR036232@djh5e.doesntexist.org> Date: Sun, 23 Sep 2012 14:55:19 +0800 (CST) From: Horance Chou To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: multimedia@FreeBSD.org Subject: ports/171888: [PATCH] multimedia/gpac-libgpac: update to 0.5.0,1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 07:10:10 -0000 >Number: 171888 >Category: ports >Synopsis: [PATCH] multimedia/gpac-libgpac: update to 0.5.0,1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 07:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Horance Chou >Release: FreeBSD 9.1-PRERELEASE i386 >Organization: FreeBSD User @ Taiwan >Environment: System: FreeBSD gaia.freera.net 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #9: Thu Jul 26 16:35:35 CST 2012 >Description: - Update to 0.5.0,1 Added file(s): - files/patch-src-Makefile Port maintainer (multimedia@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- gpac-libgpac-0.5.0,1.patch begins here --- diff -ruN --exclude=CVS ../gpac-libgpac.orig/Makefile ./Makefile --- ../gpac-libgpac.orig/Makefile 2012-06-01 13:22:30.000000000 +0800 +++ ./Makefile 2012-09-23 13:12:34.000000000 +0800 @@ -6,8 +6,7 @@ # PORTNAME= gpac -PORTVERSION= 0.4.5 -PORTREVISION= 6 +PORTVERSION= 0.5.0 PORTEPOCH= 1 CATEGORIES= multimedia MASTER_SITES= SF/${PORTNAME}/GPAC/GPAC%20${PORTVERSION} @@ -25,12 +24,13 @@ BUILD_WRKSRC= ${WRKSRC}/src INSTALL_WRKSRC= ${WRKSRC}/bin/gcc -LIBVER= 1 +LIBVER_MAJOR= 2 +LIBVER= ${LIBVER_MAJOR}.0.0 OPTIONS_DEFINE= IPV6 JPEG OPENGL SSL PNG XVIDEO OPTIONS_DEFAULT= IPV6 JPEG SSL PNG -CFLAGS+= -I${LOCALBASE}/include +CFLAGS= LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --cc="${CC}" --X11-path="${LOCALBASE}" \ @@ -92,6 +92,7 @@ cd ${WRKSRC}/include/gpac && ${FIND} . | \ ${CPIO} -vpdm -L -R ${LIBOWN}:${LIBGRP} ${PREFIX}/include/gpac ${INSTALL_DATA} ${INSTALL_WRKSRC}/libgpac.so.${LIBVER} ${PREFIX}/lib + ${LN} -sf libgpac.so.${LIBVER} ${PREFIX}/lib/libgpac.so.${LIBVER_MAJOR} ${LN} -sf libgpac.so.${LIBVER} ${PREFIX}/lib/libgpac.so ${INSTALL_DATA} ${INSTALL_WRKSRC}/libgpac_static.a ${PREFIX}/lib diff -ruN --exclude=CVS ../gpac-libgpac.orig/distinfo ./distinfo --- ../gpac-libgpac.orig/distinfo 2011-07-03 21:38:24.000000000 +0800 +++ ./distinfo 2012-09-23 13:10:42.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (gpac-0.4.5.tar.gz) = f4039763ebec6630dc38e5e030c6573b47ced28fd009770c2e0e18b087753671 -SIZE (gpac-0.4.5.tar.gz) = 4269054 +SHA256 (gpac-0.5.0.tar.gz) = 42971ac39511a1b6d1db39af664ce887b38c8657328c88cd200d87a02de81c24 +SIZE (gpac-0.5.0.tar.gz) = 7861057 diff -ruN --exclude=CVS ../gpac-libgpac.orig/files/patch-configure ./files/patch-configure --- ../gpac-libgpac.orig/files/patch-configure 2012-05-19 23:16:51.000000000 +0800 +++ ./files/patch-configure 2012-09-13 23:33:51.000000000 +0800 @@ -1,75 +1,43 @@ ---- configure.orig 2008-12-02 19:04:42.000000000 +0100 -+++ configure 2012-05-19 17:09:20.000000000 +0200 -@@ -33,6 +33,7 @@ - make="make" - strip="strip" - cpu=`uname -m` -+targetos=`uname -s` - debuginfo="no" - sdl_path="" - sdl_local="no" -@@ -102,7 +103,7 @@ - bigendian="no" - SHFLAGS=-shared - need_inet_aton="no" --LDFLAGS="$LDFLAGS -Wl --warn-common" -+LDFLAGS="$LDFLAGS -Wl,--warn-common" - CFLAGS="" - CPPFLAGS="" - GPAC_SH_FLAGS=-lpthread -@@ -222,7 +223,9 @@ - if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then - if [ -z "`echo $CFLAGS | grep -- -m32`" ]; then - cpu="x86_64" -- libdir="lib64" -+ if [ x"$targetos" != x"FreeBSD" ]; then -+ libdir="lib64" -+ fi - #that's a bit crude... - PIC_CFLAGS="-fPIC -DPIC" - want_pic="yes" -@@ -280,7 +283,6 @@ - source_path="`cd \"$source_path\"; pwd`" - fi - # OS specific --targetos=`uname -s` - case $targetos in - BeOS) - js_flags=-DXP_BEOS -@@ -317,8 +319,8 @@ - FreeBSD) - make="gmake" - LDFLAGS="$LDFLAGS -export-dynamic" --CFLAGS="$CFLAGS -pthread" --GPAC_SH_FLAGS=-pthread -+DYN_LIB_SUFFIX="so.$LIBVER" -+GPAC_SH_FLAGS="$PTHREAD_LIBS" - freebsd="yes" - js_flags="-DXP_UNIX -I/usr/include/js" - ;; -@@ -1111,6 +1113,8 @@ - LINK3D="-lopengl32 -lglu32" - elif test "$darwin" = "yes" ; then - LINK3D="-lgl -lglu" -+ elif test "$freebsd" = "yes" ; then -+ LINK3D="-lGL -lGLU" - else - LINK3D="-lGL -lglut" - fi -@@ -1673,7 +1677,7 @@ - echo "USE_X11_XV=$has_x11_xv" >> config.mak +--- configure.orig 2012-09-13 23:29:03.000000000 +0800 ++++ configure 2012-09-13 23:33:38.000000000 +0800 +@@ -496,8 +496,7 @@ + FreeBSD) + make="gmake" + LDFLAGS="$LDFLAGS -export-dynamic" +- CFLAGS="$CFLAGS -pthread" +- GPAC_SH_FLAGS=-pthread ++ GPAC_SH_FLAGS="$PTHREAD_LIBS" + freebsd="yes" + js_flags="-DXP_UNIX -I/usr/include/js" + ;; +@@ -1900,6 +1899,8 @@ + elif test "$darwin" = "yes" ; then + LINK3D="-framework OpenGL -framework GLUT" + DarwinGL="yes" ++ elif test "$freebsd" = "yes" ; then ++ LINK3D="-lGL -lGLU" + else + LINK3D="-lGL -lGLU -lX11" + fi +@@ -2123,9 +2124,9 @@ + echo "#define GPAC_CONFIGURATION \"$GPAC_CONFIGURATION\"" >> $TMPH + + version="`grep '#define GPAC_VERSION ' \"$source_path/include/gpac/tools.h\" | cut -d '"' -f 2`" +-version_major=`grep '#define GPAC_VERSION_MAJOR ' $source_path/include/gpac/tools.h | sed -e 's/.*\([0-9]\)\+$/\1/'` +-version_minor=`grep '#define GPAC_VERSION_MINOR ' $source_path/include/gpac/tools.h | sed -e 's/.*\([0-9]\)\+$/\1/'` +-version_micro=`grep '#define GPAC_VERSION_MICRO ' $source_path/include/gpac/tools.h | sed -e 's/.*\([0-9]\)\+$/\1/'` ++version_major=`grep '#define GPAC_VERSION_MAJOR ' $source_path/include/gpac/tools.h | sed -e 's/.*\([0-9]\)$/\1/'` ++version_minor=`grep '#define GPAC_VERSION_MINOR ' $source_path/include/gpac/tools.h | sed -e 's/.*\([0-9]\)$/\1/'` ++version_micro=`grep '#define GPAC_VERSION_MICRO ' $source_path/include/gpac/tools.h | sed -e 's/.*\([0-9]\)$/\1/'` + soname_version="${version_major}.${version_minor}.${version_micro}" + + if [ -d ".svn" ]; then +@@ -2766,7 +2767,7 @@ + echo "USE_X11_XV=$has_x11_xv" >> config.mak fi -if test "$is_64" = "yes"; then +if test "$is_64" = "yes" -a "$freebsd" = "no" ; then - echo "X11_LIB_PATH=$X11_PATH/lib64" >> config.mak + echo "X11_LIB_PATH=$X11_PATH/lib64" >> config.mak else - echo "X11_LIB_PATH=$X11_PATH/lib" >> config.mak -@@ -1805,6 +1809,6 @@ - fi - - echo '%.opic : %.c' >> config.mak --echo ' $(CC) $(CFLAGS) $(PIC_CFLAGS) -c $< -o $@' >> config.mak -+echo " \$(CC) \$(CFLAGS) \$(PIC_CFLAGS) $INCL3D -c \$< -o \$@" >> config.mak - - echo "Done - type 'make help' for make info, 'make' to build" + echo "X11_LIB_PATH=$X11_PATH/lib" >> config.mak diff -ruN --exclude=CVS ../gpac-libgpac.orig/files/patch-src-Makefile ./files/patch-src-Makefile --- ../gpac-libgpac.orig/files/patch-src-Makefile 1970-01-01 08:00:00.000000000 +0800 +++ ./files/patch-src-Makefile 2012-09-13 23:14:44.000000000 +0800 @@ -0,0 +1,11 @@ +--- src/Makefile.orig 2012-09-13 23:13:43.000000000 +0800 ++++ src/Makefile 2012-09-13 23:14:10.000000000 +0800 +@@ -2,7 +2,7 @@ + + vpath %.c $(SRC_PATH)/src + +-CFLAGS= $(OPTFLAGS) -I"$(SRC_PATH)/include" ++CFLAGS= $(OPTFLAGS) -I"$(SRC_PATH)/include" -I$(PREFIX)/include + + ifeq ($(DEBUGBUILD), yes) + CFLAGS+=-g diff -ruN --exclude=CVS ../gpac-libgpac.orig/files/patch-src-media_tools-img.c ./files/patch-src-media_tools-img.c --- ../gpac-libgpac.orig/files/patch-src-media_tools-img.c 2012-06-01 13:22:30.000000000 +0800 +++ ./files/patch-src-media_tools-img.c 2012-09-12 15:39:34.000000000 +0800 @@ -8,30 +8,3 @@ #endif /*GPAC_HAS_PNG*/ -@@ -399,7 +400,7 @@ - } - static void user_error_fn(png_structp png_ptr,png_const_charp error_msg) - { -- longjmp(png_ptr->jmpbuf, 1); -+ longjmp(png_jmpbuf(png_ptr), 1); - } - - GF_EXPORT -@@ -424,7 +425,7 @@ - png_destroy_read_struct(&png_ptr, (png_infopp)NULL, (png_infopp)NULL); - return GF_IO_ERR; - } -- if (setjmp(png_ptr->jmpbuf)) { -+ if (setjmp(png_jmpbuf(png_ptr))) { - png_destroy_info_struct(png_ptr,(png_infopp) & info_ptr); - png_destroy_read_struct(&png_ptr, (png_infopp)NULL, (png_infopp)NULL); - return GF_IO_ERR; -@@ -551,7 +552,7 @@ - /* Allocate/initialize the image information data. REQUIRED */ - info_ptr = png_create_info_struct(png_ptr); - if (info_ptr == NULL) { -- png_destroy_write_struct(&png_ptr, png_infopp_NULL); -+ png_destroy_write_struct(&png_ptr, (png_infopp)NULL); - return GF_IO_ERR; - } - diff -ruN --exclude=CVS ../gpac-libgpac.orig/pkg-plist ./pkg-plist --- ../gpac-libgpac.orig/pkg-plist 2009-02-14 09:55:45.000000000 +0800 +++ ./pkg-plist 2012-09-14 00:17:05.000000000 +0800 @@ -1,32 +1,43 @@ +include/gpac/ait.h include/gpac/avparse.h include/gpac/base_coding.h include/gpac/bifs.h -include/gpac/bifsengine.h include/gpac/bitstream.h +include/gpac/cache.h include/gpac/color.h include/gpac/compositor.h include/gpac/config_file.h +include/gpac/configuration.h include/gpac/constants.h include/gpac/crypt.h include/gpac/download.h +include/gpac/dsmcc.h +include/gpac/dvb_mpe.h include/gpac/esi.h include/gpac/events.h +include/gpac/events_constants.h +include/gpac/filestreamer.h include/gpac/ietf.h include/gpac/internal/avilib.h include/gpac/internal/bifs_dev.h include/gpac/internal/bifs_tables.h include/gpac/internal/camera.h include/gpac/internal/compositor_dev.h -include/gpac/internal/config_static.h include/gpac/internal/crypt_dev.h +include/gpac/internal/dvb_mpe_dev.h include/gpac/internal/ietf_dev.h include/gpac/internal/isomedia_dev.h include/gpac/internal/laser_dev.h +include/gpac/internal/m3u8.h include/gpac/internal/media_dev.h include/gpac/internal/mesh.h +include/gpac/internal/mpd.h include/gpac/internal/odf_dev.h +include/gpac/internal/odf_parse_common.h include/gpac/internal/ogg.h +include/gpac/internal/reedsolomon.h include/gpac/internal/scenegraph_dev.h +include/gpac/internal/smjs_api.h include/gpac/internal/swf_dev.h include/gpac/internal/terminal_dev.h include/gpac/internal/vobsub.h @@ -42,6 +53,7 @@ include/gpac/modules/audio_out.h include/gpac/modules/codec.h include/gpac/modules/font.h +include/gpac/modules/hardcoded_proto.h include/gpac/modules/ipmp.h include/gpac/modules/js_usr.h include/gpac/modules/raster2d.h @@ -57,6 +69,9 @@ include/gpac/nodes_xbl.h include/gpac/options.h include/gpac/path2d.h +include/gpac/ringbuffer.h +include/gpac/rtp_streamer.h +include/gpac/scene_engine.h include/gpac/scene_manager.h include/gpac/scenegraph.h include/gpac/scenegraph_svg.h @@ -69,11 +84,14 @@ include/gpac/thread.h include/gpac/token.h include/gpac/tools.h +include/gpac/unicode.h include/gpac/user.h include/gpac/utf.h +include/gpac/version.h include/gpac/xml.h lib/libgpac.so -lib/libgpac.so.1 +lib/libgpac.so.2 +lib/libgpac.so.2.0.0 lib/libgpac_static.a @dirrm include/gpac/modules @dirrm include/gpac/internal --- gpac-libgpac-0.5.0,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 07:10:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7DDB11065672 for ; Sun, 23 Sep 2012 07:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 14E508FC08 for ; Sun, 23 Sep 2012 07:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N7A8oU014926 for ; Sun, 23 Sep 2012 07:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N7A83Y014920; Sun, 23 Sep 2012 07:10:08 GMT (envelope-from gnats) Date: Sun, 23 Sep 2012 07:10:08 GMT Message-Id: <201209230710.q8N7A83Y014920@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/171886: [PATCH] multimedia/gpac-mp4box: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 07:10:10 -0000 The following reply was made to PR ports/171886; it has been noted by GNATS. From: Edwin Groothuis To: pvizeli@yahoo.de Cc: bug-followup@FreeBSD.org Subject: Re: ports/171886: [PATCH] multimedia/gpac-mp4box: [SUMMARIZE CHANGES] Date: Sun, 23 Sep 2012 07:00:37 UT Maintainer of multimedia/gpac-mp4box, Please note that PR ports/171886 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171886 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 07:10:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 23B291065673; Sun, 23 Sep 2012 07:10:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EA7918FC08; Sun, 23 Sep 2012 07:10:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N7AKDr017732; Sun, 23 Sep 2012 07:10:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N7AKOH017718; Sun, 23 Sep 2012 07:10:20 GMT (envelope-from edwin) Date: Sun, 23 Sep 2012 07:10:20 GMT Message-Id: <201209230710.q8N7AKOH017718@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171888: [PATCH] multimedia/gpac-libgpac: update to 0.5.0, 1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 07:10:21 -0000 Synopsis: [PATCH] multimedia/gpac-libgpac: update to 0.5.0,1 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 23 07:10:20 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171888 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 07:20:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C849C106566C for ; Sun, 23 Sep 2012 07:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 47F858FC14 for ; Sun, 23 Sep 2012 07:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N7K898024576 for ; Sun, 23 Sep 2012 07:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N7K8KQ024575; Sun, 23 Sep 2012 07:20:08 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 07:20:08 GMT Resent-Message-Id: <201209230720.q8N7K8KQ024575@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Horance Chou Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D16EE106566B; Sun, 23 Sep 2012 07:12:31 +0000 (UTC) (envelope-from horance@djh5e.doesntexist.org) Received: from djh5e.doesntexist.org (host-69.74-185-111.static.totalbb.net.tw [111.185.74.69]) by mx1.freebsd.org (Postfix) with ESMTP id 677308FC0A; Sun, 23 Sep 2012 07:12:30 +0000 (UTC) Received: from djh5e.doesntexist.org (smmsp@localhost [127.0.0.1]) by djh5e.doesntexist.org (8.14.5/8.14.5) with ESMTP id q8N7CUp9037087; Sun, 23 Sep 2012 15:12:30 +0800 (CST) (envelope-from horance@djh5e.doesntexist.org) Received: (from root@localhost) by djh5e.doesntexist.org (8.14.5/8.14.5/Submit) id q8N7CU1D037086; Sun, 23 Sep 2012 15:12:30 +0800 (CST) (envelope-from horance) Message-Id: <201209230712.q8N7CU1D037086@djh5e.doesntexist.org> Date: Sun, 23 Sep 2012 15:12:30 +0800 (CST) From: Horance Chou To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: multimedia@FreeBSD.org Subject: ports/171889: [PATCH] multimedia/gpac-libgpac: update to 0.5.0,1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 07:20:08 -0000 >Number: 171889 >Category: ports >Synopsis: [PATCH] multimedia/gpac-libgpac: update to 0.5.0,1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 07:20:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Horance Chou >Release: FreeBSD 9.1-PRERELEASE i386 >Organization: FreeBSD User @ Taiwan >Environment: System: FreeBSD gaia.freera.net 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #9: Thu Jul 26 16:35:35 CST 2012 >Description: - Update to 0.5.0,1 Added file(s): - files/patch-src-Makefile Port maintainer (multimedia@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- gpac-libgpac-0.5.0,1.patch begins here --- diff -ruN --exclude=CVS ../gpac-libgpac.orig/Makefile ./Makefile --- ../gpac-libgpac.orig/Makefile 2012-06-01 13:22:30.000000000 +0800 +++ ./Makefile 2012-09-23 13:12:34.000000000 +0800 @@ -6,8 +6,7 @@ # PORTNAME= gpac -PORTVERSION= 0.4.5 -PORTREVISION= 6 +PORTVERSION= 0.5.0 PORTEPOCH= 1 CATEGORIES= multimedia MASTER_SITES= SF/${PORTNAME}/GPAC/GPAC%20${PORTVERSION} @@ -25,12 +24,13 @@ BUILD_WRKSRC= ${WRKSRC}/src INSTALL_WRKSRC= ${WRKSRC}/bin/gcc -LIBVER= 1 +LIBVER_MAJOR= 2 +LIBVER= ${LIBVER_MAJOR}.0.0 OPTIONS_DEFINE= IPV6 JPEG OPENGL SSL PNG XVIDEO OPTIONS_DEFAULT= IPV6 JPEG SSL PNG -CFLAGS+= -I${LOCALBASE}/include +CFLAGS= LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --cc="${CC}" --X11-path="${LOCALBASE}" \ @@ -92,6 +92,7 @@ cd ${WRKSRC}/include/gpac && ${FIND} . | \ ${CPIO} -vpdm -L -R ${LIBOWN}:${LIBGRP} ${PREFIX}/include/gpac ${INSTALL_DATA} ${INSTALL_WRKSRC}/libgpac.so.${LIBVER} ${PREFIX}/lib + ${LN} -sf libgpac.so.${LIBVER} ${PREFIX}/lib/libgpac.so.${LIBVER_MAJOR} ${LN} -sf libgpac.so.${LIBVER} ${PREFIX}/lib/libgpac.so ${INSTALL_DATA} ${INSTALL_WRKSRC}/libgpac_static.a ${PREFIX}/lib diff -ruN --exclude=CVS ../gpac-libgpac.orig/distinfo ./distinfo --- ../gpac-libgpac.orig/distinfo 2011-07-03 21:38:24.000000000 +0800 +++ ./distinfo 2012-09-23 13:10:42.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (gpac-0.4.5.tar.gz) = f4039763ebec6630dc38e5e030c6573b47ced28fd009770c2e0e18b087753671 -SIZE (gpac-0.4.5.tar.gz) = 4269054 +SHA256 (gpac-0.5.0.tar.gz) = 42971ac39511a1b6d1db39af664ce887b38c8657328c88cd200d87a02de81c24 +SIZE (gpac-0.5.0.tar.gz) = 7861057 diff -ruN --exclude=CVS ../gpac-libgpac.orig/files/patch-configure ./files/patch-configure --- ../gpac-libgpac.orig/files/patch-configure 2012-05-19 23:16:51.000000000 +0800 +++ ./files/patch-configure 2012-09-13 23:33:51.000000000 +0800 @@ -1,75 +1,43 @@ ---- configure.orig 2008-12-02 19:04:42.000000000 +0100 -+++ configure 2012-05-19 17:09:20.000000000 +0200 -@@ -33,6 +33,7 @@ - make="make" - strip="strip" - cpu=`uname -m` -+targetos=`uname -s` - debuginfo="no" - sdl_path="" - sdl_local="no" -@@ -102,7 +103,7 @@ - bigendian="no" - SHFLAGS=-shared - need_inet_aton="no" --LDFLAGS="$LDFLAGS -Wl --warn-common" -+LDFLAGS="$LDFLAGS -Wl,--warn-common" - CFLAGS="" - CPPFLAGS="" - GPAC_SH_FLAGS=-lpthread -@@ -222,7 +223,9 @@ - if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then - if [ -z "`echo $CFLAGS | grep -- -m32`" ]; then - cpu="x86_64" -- libdir="lib64" -+ if [ x"$targetos" != x"FreeBSD" ]; then -+ libdir="lib64" -+ fi - #that's a bit crude... - PIC_CFLAGS="-fPIC -DPIC" - want_pic="yes" -@@ -280,7 +283,6 @@ - source_path="`cd \"$source_path\"; pwd`" - fi - # OS specific --targetos=`uname -s` - case $targetos in - BeOS) - js_flags=-DXP_BEOS -@@ -317,8 +319,8 @@ - FreeBSD) - make="gmake" - LDFLAGS="$LDFLAGS -export-dynamic" --CFLAGS="$CFLAGS -pthread" --GPAC_SH_FLAGS=-pthread -+DYN_LIB_SUFFIX="so.$LIBVER" -+GPAC_SH_FLAGS="$PTHREAD_LIBS" - freebsd="yes" - js_flags="-DXP_UNIX -I/usr/include/js" - ;; -@@ -1111,6 +1113,8 @@ - LINK3D="-lopengl32 -lglu32" - elif test "$darwin" = "yes" ; then - LINK3D="-lgl -lglu" -+ elif test "$freebsd" = "yes" ; then -+ LINK3D="-lGL -lGLU" - else - LINK3D="-lGL -lglut" - fi -@@ -1673,7 +1677,7 @@ - echo "USE_X11_XV=$has_x11_xv" >> config.mak +--- configure.orig 2012-09-13 23:29:03.000000000 +0800 ++++ configure 2012-09-13 23:33:38.000000000 +0800 +@@ -496,8 +496,7 @@ + FreeBSD) + make="gmake" + LDFLAGS="$LDFLAGS -export-dynamic" +- CFLAGS="$CFLAGS -pthread" +- GPAC_SH_FLAGS=-pthread ++ GPAC_SH_FLAGS="$PTHREAD_LIBS" + freebsd="yes" + js_flags="-DXP_UNIX -I/usr/include/js" + ;; +@@ -1900,6 +1899,8 @@ + elif test "$darwin" = "yes" ; then + LINK3D="-framework OpenGL -framework GLUT" + DarwinGL="yes" ++ elif test "$freebsd" = "yes" ; then ++ LINK3D="-lGL -lGLU" + else + LINK3D="-lGL -lGLU -lX11" + fi +@@ -2123,9 +2124,9 @@ + echo "#define GPAC_CONFIGURATION \"$GPAC_CONFIGURATION\"" >> $TMPH + + version="`grep '#define GPAC_VERSION ' \"$source_path/include/gpac/tools.h\" | cut -d '"' -f 2`" +-version_major=`grep '#define GPAC_VERSION_MAJOR ' $source_path/include/gpac/tools.h | sed -e 's/.*\([0-9]\)\+$/\1/'` +-version_minor=`grep '#define GPAC_VERSION_MINOR ' $source_path/include/gpac/tools.h | sed -e 's/.*\([0-9]\)\+$/\1/'` +-version_micro=`grep '#define GPAC_VERSION_MICRO ' $source_path/include/gpac/tools.h | sed -e 's/.*\([0-9]\)\+$/\1/'` ++version_major=`grep '#define GPAC_VERSION_MAJOR ' $source_path/include/gpac/tools.h | sed -e 's/.*\([0-9]\)$/\1/'` ++version_minor=`grep '#define GPAC_VERSION_MINOR ' $source_path/include/gpac/tools.h | sed -e 's/.*\([0-9]\)$/\1/'` ++version_micro=`grep '#define GPAC_VERSION_MICRO ' $source_path/include/gpac/tools.h | sed -e 's/.*\([0-9]\)$/\1/'` + soname_version="${version_major}.${version_minor}.${version_micro}" + + if [ -d ".svn" ]; then +@@ -2766,7 +2767,7 @@ + echo "USE_X11_XV=$has_x11_xv" >> config.mak fi -if test "$is_64" = "yes"; then +if test "$is_64" = "yes" -a "$freebsd" = "no" ; then - echo "X11_LIB_PATH=$X11_PATH/lib64" >> config.mak + echo "X11_LIB_PATH=$X11_PATH/lib64" >> config.mak else - echo "X11_LIB_PATH=$X11_PATH/lib" >> config.mak -@@ -1805,6 +1809,6 @@ - fi - - echo '%.opic : %.c' >> config.mak --echo ' $(CC) $(CFLAGS) $(PIC_CFLAGS) -c $< -o $@' >> config.mak -+echo " \$(CC) \$(CFLAGS) \$(PIC_CFLAGS) $INCL3D -c \$< -o \$@" >> config.mak - - echo "Done - type 'make help' for make info, 'make' to build" + echo "X11_LIB_PATH=$X11_PATH/lib" >> config.mak diff -ruN --exclude=CVS ../gpac-libgpac.orig/files/patch-src-Makefile ./files/patch-src-Makefile --- ../gpac-libgpac.orig/files/patch-src-Makefile 1970-01-01 08:00:00.000000000 +0800 +++ ./files/patch-src-Makefile 2012-09-13 23:14:44.000000000 +0800 @@ -0,0 +1,11 @@ +--- src/Makefile.orig 2012-09-13 23:13:43.000000000 +0800 ++++ src/Makefile 2012-09-13 23:14:10.000000000 +0800 +@@ -2,7 +2,7 @@ + + vpath %.c $(SRC_PATH)/src + +-CFLAGS= $(OPTFLAGS) -I"$(SRC_PATH)/include" ++CFLAGS= $(OPTFLAGS) -I"$(SRC_PATH)/include" -I$(PREFIX)/include + + ifeq ($(DEBUGBUILD), yes) + CFLAGS+=-g diff -ruN --exclude=CVS ../gpac-libgpac.orig/files/patch-src-media_tools-img.c ./files/patch-src-media_tools-img.c --- ../gpac-libgpac.orig/files/patch-src-media_tools-img.c 2012-06-01 13:22:30.000000000 +0800 +++ ./files/patch-src-media_tools-img.c 2012-09-12 15:39:34.000000000 +0800 @@ -8,30 +8,3 @@ #endif /*GPAC_HAS_PNG*/ -@@ -399,7 +400,7 @@ - } - static void user_error_fn(png_structp png_ptr,png_const_charp error_msg) - { -- longjmp(png_ptr->jmpbuf, 1); -+ longjmp(png_jmpbuf(png_ptr), 1); - } - - GF_EXPORT -@@ -424,7 +425,7 @@ - png_destroy_read_struct(&png_ptr, (png_infopp)NULL, (png_infopp)NULL); - return GF_IO_ERR; - } -- if (setjmp(png_ptr->jmpbuf)) { -+ if (setjmp(png_jmpbuf(png_ptr))) { - png_destroy_info_struct(png_ptr,(png_infopp) & info_ptr); - png_destroy_read_struct(&png_ptr, (png_infopp)NULL, (png_infopp)NULL); - return GF_IO_ERR; -@@ -551,7 +552,7 @@ - /* Allocate/initialize the image information data. REQUIRED */ - info_ptr = png_create_info_struct(png_ptr); - if (info_ptr == NULL) { -- png_destroy_write_struct(&png_ptr, png_infopp_NULL); -+ png_destroy_write_struct(&png_ptr, (png_infopp)NULL); - return GF_IO_ERR; - } - diff -ruN --exclude=CVS ../gpac-libgpac.orig/pkg-plist ./pkg-plist --- ../gpac-libgpac.orig/pkg-plist 2009-02-14 09:55:45.000000000 +0800 +++ ./pkg-plist 2012-09-14 00:17:05.000000000 +0800 @@ -1,32 +1,43 @@ +include/gpac/ait.h include/gpac/avparse.h include/gpac/base_coding.h include/gpac/bifs.h -include/gpac/bifsengine.h include/gpac/bitstream.h +include/gpac/cache.h include/gpac/color.h include/gpac/compositor.h include/gpac/config_file.h +include/gpac/configuration.h include/gpac/constants.h include/gpac/crypt.h include/gpac/download.h +include/gpac/dsmcc.h +include/gpac/dvb_mpe.h include/gpac/esi.h include/gpac/events.h +include/gpac/events_constants.h +include/gpac/filestreamer.h include/gpac/ietf.h include/gpac/internal/avilib.h include/gpac/internal/bifs_dev.h include/gpac/internal/bifs_tables.h include/gpac/internal/camera.h include/gpac/internal/compositor_dev.h -include/gpac/internal/config_static.h include/gpac/internal/crypt_dev.h +include/gpac/internal/dvb_mpe_dev.h include/gpac/internal/ietf_dev.h include/gpac/internal/isomedia_dev.h include/gpac/internal/laser_dev.h +include/gpac/internal/m3u8.h include/gpac/internal/media_dev.h include/gpac/internal/mesh.h +include/gpac/internal/mpd.h include/gpac/internal/odf_dev.h +include/gpac/internal/odf_parse_common.h include/gpac/internal/ogg.h +include/gpac/internal/reedsolomon.h include/gpac/internal/scenegraph_dev.h +include/gpac/internal/smjs_api.h include/gpac/internal/swf_dev.h include/gpac/internal/terminal_dev.h include/gpac/internal/vobsub.h @@ -42,6 +53,7 @@ include/gpac/modules/audio_out.h include/gpac/modules/codec.h include/gpac/modules/font.h +include/gpac/modules/hardcoded_proto.h include/gpac/modules/ipmp.h include/gpac/modules/js_usr.h include/gpac/modules/raster2d.h @@ -57,6 +69,9 @@ include/gpac/nodes_xbl.h include/gpac/options.h include/gpac/path2d.h +include/gpac/ringbuffer.h +include/gpac/rtp_streamer.h +include/gpac/scene_engine.h include/gpac/scene_manager.h include/gpac/scenegraph.h include/gpac/scenegraph_svg.h @@ -69,11 +84,14 @@ include/gpac/thread.h include/gpac/token.h include/gpac/tools.h +include/gpac/unicode.h include/gpac/user.h include/gpac/utf.h +include/gpac/version.h include/gpac/xml.h lib/libgpac.so -lib/libgpac.so.1 +lib/libgpac.so.2 +lib/libgpac.so.2.0.0 lib/libgpac_static.a @dirrm include/gpac/modules @dirrm include/gpac/internal --- gpac-libgpac-0.5.0,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 07:20:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8BAD5106564A; Sun, 23 Sep 2012 07:20:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5ED128FC17; Sun, 23 Sep 2012 07:20:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N7KLnD026759; Sun, 23 Sep 2012 07:20:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N7KLMa026745; Sun, 23 Sep 2012 07:20:21 GMT (envelope-from edwin) Date: Sun, 23 Sep 2012 07:20:21 GMT Message-Id: <201209230720.q8N7KLMa026745@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171889: [PATCH] multimedia/gpac-libgpac: update to 0.5.0, 1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 07:20:21 -0000 Synopsis: [PATCH] multimedia/gpac-libgpac: update to 0.5.0,1 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 23 07:20:20 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171889 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 07:22:55 2012 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2BDD6106564A; Sun, 23 Sep 2012 07:22:55 +0000 (UTC) (envelope-from horance@gmail.com) Received: from mail-qc0-f182.google.com (mail-qc0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id BA05C8FC0C; Sun, 23 Sep 2012 07:22:54 +0000 (UTC) Received: by qcsg15 with SMTP id g15so668904qcs.13 for ; Sun, 23 Sep 2012 00:22:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=iJ9MZq0PcKTioVOTIBFqjNRdJk0ElhbYf7EVJjmbbBA=; b=ECnOFCr3PZAMWbuy24M2PcZnaHgJyJERY6gzt/v/dYbkN80e5iPOzg9qCsFuyJGrYH hO1Uk0juPUUaa5J1G141odx2OGJT7vmU739U2l19vk1HvYcdAT+zo0+dTgAuG3Ynl+89 jyEC6MdFS1GXBHhDOz26qLj5xLbpfuG94H2a4Z77bJcbiPGgeDBrwGhw+6e/+sjpMw1t iw+weov3aHGmoQseI8/FgP6f6zyPGLh/JKiuhp8/36EQMIk3juQGEagIPE2wOQPlCggx xh9v1j64WwKnmyyT3esUT+y9lYEw1zO6EJ19PDJeHPL8EbKHuZ9/wJQAhxQbXO0X+iTv Uesw== MIME-Version: 1.0 Received: by 10.224.197.10 with SMTP id ei10mr24043894qab.49.1348384974009; Sun, 23 Sep 2012 00:22:54 -0700 (PDT) Received: by 10.49.39.69 with HTTP; Sun, 23 Sep 2012 00:22:53 -0700 (PDT) In-Reply-To: <201209230720.q8N7K7Ob024570@freefall.freebsd.org> References: <201209230712.q8N7CU1D037086@djh5e.doesntexist.org> <201209230720.q8N7K7Ob024570@freefall.freebsd.org> Date: Sun, 23 Sep 2012 15:22:53 +0800 Message-ID: From: Horance Chou To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports-bugs@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: ports/171889: [PATCH] multimedia/gpac-libgpac: update to 0.5.0, 1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 07:22:55 -0000 This is duplicated to 171888, please delete, sorry! Regards, Horance On Sun, Sep 23, 2012 at 3:20 PM, wrote: > Thank you very much for your problem report. > It has the internal identification `ports/171889'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=171889 > > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: [PATCH] multimedia/gpac-libgpac: update to 0.5.0,1 > >Arrival-Date: Sun Sep 23 07:20:07 UTC 2012 > From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 08:00:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 031581065672 for ; Sun, 23 Sep 2012 08:00:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9DC678FC16 for ; Sun, 23 Sep 2012 08:00:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N80KxO065552 for ; Sun, 23 Sep 2012 08:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N80KdH065551; Sun, 23 Sep 2012 08:00:20 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 08:00:20 GMT Resent-Message-Id: <201209230800.q8N80KdH065551@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Derek Wood Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E531F106564A for ; Sun, 23 Sep 2012 07:52:35 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id D09DB8FC18 for ; Sun, 23 Sep 2012 07:52:35 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N7qZMi017244 for ; Sun, 23 Sep 2012 07:52:35 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8N7qZ9n017243; Sun, 23 Sep 2012 07:52:35 GMT (envelope-from nobody) Message-Id: <201209230752.q8N7qZ9n017243@red.freebsd.org> Date: Sun, 23 Sep 2012 07:52:35 GMT From: Derek Wood To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171890: [patch] x11/xdialog: update WWW string in pkg-descr X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 08:00:21 -0000 >Number: 171890 >Category: ports >Synopsis: [patch] x11/xdialog: update WWW string in pkg-descr >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 08:00:20 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Derek Wood >Release: FreeBSD 9.1-RC1 amd64 >Organization: >Environment: FreeBSD bespin 9.1-RC1 FreeBSD 9.1-RC1 #0: Tue Aug 14 04:25:06 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The http://xdialog.dyns.net/ URL in the WWW string doesn't work, and is replaced in the patch with one that does ( http://xdialog.free.fr/ ). >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN /usr/ports/x11/xdialog/pkg-descr xdialog/pkg-descr --- /usr/ports/x11/xdialog/pkg-descr 2011-10-24 02:11:33.000000000 -0700 +++ xdialog/pkg-descr 2012-09-23 00:25:08.000000000 -0700 @@ -4,4 +4,4 @@ and use while adding even more functionalities. Author: Thierry Godefroy -WWW: http://xdialog.dyns.net/ +WWW: http://xdialog.free.fr/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 08:00:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E36B81065670; Sun, 23 Sep 2012 08:00:33 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B69D98FC12; Sun, 23 Sep 2012 08:00:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8N80XZk066688; Sun, 23 Sep 2012 08:00:33 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8N80Xgv066679; Sun, 23 Sep 2012 08:00:33 GMT (envelope-from edwin) Date: Sun, 23 Sep 2012 08:00:33 GMT Message-Id: <201209230800.q8N80Xgv066679@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sylvio@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171890: [patch] x11/xdialog: update WWW string in pkg-descr X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 08:00:34 -0000 Synopsis: [patch] x11/xdialog: update WWW string in pkg-descr Responsible-Changed-From-To: freebsd-ports-bugs->sylvio Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 23 08:00:32 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171890 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 10:50:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A5A21065672 for ; Sun, 23 Sep 2012 10:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E1C8F8FC1A for ; Sun, 23 Sep 2012 10:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NAo2iR033230 for ; Sun, 23 Sep 2012 10:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NAo2Im033229; Sun, 23 Sep 2012 10:50:02 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 10:50:02 GMT Resent-Message-Id: <201209231050.q8NAo2Im033229@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Raphael Kubo da Costa Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 79E2B106566B for ; Sun, 23 Sep 2012 10:46:53 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 4ACC98FC0C for ; Sun, 23 Sep 2012 10:46:53 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NAkr2Z011876 for ; Sun, 23 Sep 2012 10:46:53 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8NAkrIn011875; Sun, 23 Sep 2012 10:46:53 GMT (envelope-from nobody) Message-Id: <201209231046.q8NAkrIn011875@red.freebsd.org> Date: Sun, 23 Sep 2012 10:46:53 GMT From: Raphael Kubo da Costa To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171891: multimedia/webcamd: Version 3.7.0.3 fails to build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 10:50:03 -0000 >Number: 171891 >Category: ports >Synopsis: multimedia/webcamd: Version 3.7.0.3 fails to build with clang >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 10:50:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Raphael Kubo da Costa >Release: FreeBSD 9-STABLE >Organization: FreeBSD Project >Environment: FreeBSD gibbon 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #55: Sun Sep 16 05:39:14 EEST 2012 root@gibbon:/usr/obj/usr/src/sys/GIBBON amd64 >Description: Trying to build multimedia/webcamd fails here with clang: /usr/local/libexec/ccache/world/clang -O2 -pipe -march=core2 -fno-strict-aliasing -march=core2 -D_GNU_SOURCE -DCURR_FILE_NAME=\"lirc_igorplugusb\" -DBITS_PER_LONG=64 -DLINUX -Wall -Wno-pointer-sign -Wno-unused-variable -I/usr/ports/multimedia/webcamd/work/webcamd-3.7.0.3 -I/usr/ports/multimedia/webcamd/work/webcamd-3.7.0.3/dummy -I/usr/ports/multimedia/webcamd/work/webcamd-3.7.0.3/headers -Imedia_tree/drivers/media/common/tuners -Imedia_tree/drivers/media/dvb/dvb-core -Imedia_tree/drivers/media/dvb/dvb-usb -Imedia_tree/drivers/media/dvb/frontends -Imedia_tree/drivers/media/dvb/ttpci -Imedia_tree/drivers/media/video/gspca -Imedia_tree/drivers/media/video/hdpvr -Imedia_tree/drivers/media/dvb-core -Imedia_tree/drivers/media/dvb-usb -Imedia_tree/drivers/media/dvb-frontends -Imedia_tree/drivers/media/tuners -Imedia_tree/drivers/media/pci/ttpci -Imedia_tree/drivers/media/common/siano -Imedia_tree/drivers/media/common/b2c2 -Imedia_tree/drivers/media/usb/gspca -Imedia_tree/drivers/media/usb/ dvb-usb -Imedia_tree/include -I/usr/local -I/usr/local/include -include webcamd_global.h -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/local/include/hal -I/usr/local/include/dbus-1.0 -I/usr/local/include/dbus-1.0/include -DHAVE_HAL -std=gnu99 -Qunused-arguments -fstack-protector -c media_tree/drivers/staging/media/lirc/lirc_igorplugusb.c In file included from media_tree/drivers/staging/media/lirc/lirc_igorplugusb.c:1: media_tree/drivers/staging/media/lirc/lirc_igorplugusb.c:547:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] MODULE_INFO(vermagic, VERMAGIC_STRING); ^~~~~~~~~~~ media_tree/drivers/staging/media/lirc/lirc_igorplugusb.c:547:13: error: a parameter list without types is only allowed in a function definition MODULE_INFO(vermagic, VERMAGIC_STRING); ^ 1 warning and 1 error generated. *** [lirc_igorplugusb.o] Error code 1 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 10:50:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B8361065770; Sun, 23 Sep 2012 10:50:25 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3E5328FC1A; Sun, 23 Sep 2012 10:50:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NAoPOZ037061; Sun, 23 Sep 2012 10:50:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NAoPYY037052; Sun, 23 Sep 2012 10:50:25 GMT (envelope-from edwin) Date: Sun, 23 Sep 2012 10:50:25 GMT Message-Id: <201209231050.q8NAoPYY037052@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, hselasky@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171891: multimedia/webcamd: Version 3.7.0.3 fails to build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 10:50:25 -0000 Synopsis: multimedia/webcamd: Version 3.7.0.3 fails to build with clang Responsible-Changed-From-To: freebsd-ports-bugs->hselasky Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 23 10:50:24 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171891 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 12:03:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1D3D1065676; Sun, 23 Sep 2012 12:03:34 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A30C98FC14; Sun, 23 Sep 2012 12:03:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NC3YId010187; Sun, 23 Sep 2012 12:03:34 GMT (envelope-from rakuco@freefall.freebsd.org) Received: (from rakuco@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NC3Xrw010181; Sun, 23 Sep 2012 12:03:33 GMT (envelope-from rakuco) Date: Sun, 23 Sep 2012 12:03:33 GMT Message-Id: <201209231203.q8NC3Xrw010181@freefall.freebsd.org> To: krichy@tvnetwork.hu, rakuco@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rakuco@FreeBSD.org From: rakuco@FreeBSD.org Cc: Subject: Re: ports/171694: [maintainer update] devel/libjson++: update to 0.3.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 12:03:34 -0000 Synopsis: [maintainer update] devel/libjson++: update to 0.3.4 Responsible-Changed-From-To: freebsd-ports-bugs->rakuco Responsible-Changed-By: rakuco Responsible-Changed-When: Sun Sep 23 12:03:22 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171694 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 12:09:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A463A106566B; Sun, 23 Sep 2012 12:09:06 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 786308FC0A; Sun, 23 Sep 2012 12:09:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NC96qY011008; Sun, 23 Sep 2012 12:09:06 GMT (envelope-from bsam@freefall.freebsd.org) Received: (from bsam@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NC96Qj011004; Sun, 23 Sep 2012 12:09:06 GMT (envelope-from bsam) Date: Sun, 23 Sep 2012 12:09:06 GMT Message-Id: <201209231209.q8NC96Qj011004@freefall.freebsd.org> To: bsam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bsam@FreeBSD.org From: bsam@FreeBSD.org Cc: Subject: Re: ports/171643: [MAINTAINER] devel/ice: Fixes for Clang, C++11, libc++ X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 12:09:06 -0000 Synopsis: [MAINTAINER] devel/ice: Fixes for Clang, C++11, libc++ Responsible-Changed-From-To: freebsd-ports-bugs->bsam Responsible-Changed-By: bsam Responsible-Changed-When: Sun Sep 23 12:09:06 UTC 2012 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=171643 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 13:30:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89C121065672 for ; Sun, 23 Sep 2012 13:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5244B8FC18 for ; Sun, 23 Sep 2012 13:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NDU93F087198 for ; Sun, 23 Sep 2012 13:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NDU99K087197; Sun, 23 Sep 2012 13:30:09 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 13:30:09 GMT Resent-Message-Id: <201209231330.q8NDU99K087197@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dima Panov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3EF9106566C for ; Sun, 23 Sep 2012 13:20:56 +0000 (UTC) (envelope-from fluffy@Fluffy.Khv.RU) Received: from ns.ael.RU (ns.ael.ru [62.76.207.226]) by mx1.freebsd.org (Postfix) with ESMTP id E510A8FC0C for ; Sun, 23 Sep 2012 13:20:55 +0000 (UTC) Received: from Beastie.Fluffy.Khv.RU (host85.static2.l2tp.ttkdv.ru [46.38.1.85] (may be forged)) by ns.ael.RU (8.14.4/8.14.3/Fluffy/5.3) with ESMTP id q8NDJFSZ032435; Mon, 24 Sep 2012 00:19:16 +1100 (VLAT) (envelope-from fluffy@Fluffy.Khv.RU) Received: from Beastie.Fluffy.Khv.RU (localhost [127.0.0.1]) by Beastie.Fluffy.Khv.RU (8.14.5/8.14.5/Fluffy/5.4.1) with ESMTP id q8NDJ1Ab067648; Mon, 24 Sep 2012 00:19:02 +1100 (VLAT) (envelope-from fluffy@Fluffy.Khv.RU) Received: (from fluffy@localhost) by Beastie.Fluffy.Khv.RU (8.14.5/8.14.5/Submit) id q8NDJ1RV067647; Mon, 24 Sep 2012 00:19:01 +1100 (VLAT) (envelope-from fluffy) Message-Id: <201209231319.q8NDJ1RV067647@Beastie.Fluffy.Khv.RU> Date: Mon, 24 Sep 2012 00:19:01 +1100 (VLAT) From: Dima Panov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: bkoenig@alpha-tierchen.de Subject: ports/171892: graphics/libvisual04-plugins: unbreak with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dima Panov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 13:30:09 -0000 >Number: 171892 >Category: ports >Synopsis: graphics/libvisual04-plugins: unbreak with clang >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 13:30:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dima Panov >Release: FreeBSD 10.0-1000018-CURRENT amd64 >Organization: Twilight Zone >Environment: System: FreeBSD Beastie.Fluffy.Khv.RU 10.0-1000018-CURRENT FreeBSD 10.0-1000018-CURRENT #0: Thu Sep 20 02:02:51 VLAT 2012 toor@Beastie.Fluffy.Khv.RU:/usr/obj/usr/src/sys/Spot amd64 >Description: fix mistyped return statements, which clang objects strenuously to >How-To-Repeat: >Fix: Fix obtained from PkgSrc Index: graphics/libvisual04-plugins/files/patch-plugins_morph_flash_morph__flash.c =================================================================== RCS file: graphics/libvisual04-plugins/files/patch-plugins_morph_flash_morph__flash.c diff -N graphics/libvisual04-plugins/files/patch-plugins_morph_flash_morph__flash.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ graphics/libvisual04-plugins/files/patch-plugins_morph_flash_morph__flash.c 23 Sep 2012 13:08:54 -0000 @@ -0,0 +1,13 @@ +- fix mistyped return statements, which clang objects strenuously to + +--- plugins/morph/flash/morph_flash.c~ 2006-01-27 20:19:18.000000000 +0000 ++++ plugins/morph/flash/morph_flash.c +@@ -116,7 +116,7 @@ int lv_morph_flash_palette (VisPluginDat + FlashPrivate *priv = visual_object_get_private (VISUAL_OBJECT (plugin)); + + if (src1->pal == NULL || src2->pal == NULL) +- return; ++ return 0; + + if (rate < 0.5) + visual_palette_blend (pal, src1->pal, &priv->whitepal, rate * 2); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 13:30:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B5BB106564A; Sun, 23 Sep 2012 13:30:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F3C8E8FC12; Sun, 23 Sep 2012 13:30:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NDUMZ3089058; Sun, 23 Sep 2012 13:30:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NDUM1J089049; Sun, 23 Sep 2012 13:30:22 GMT (envelope-from edwin) Date: Sun, 23 Sep 2012 13:30:22 GMT Message-Id: <201209231330.q8NDUM1J089049@freefall.freebsd.org> To: fluffy@freebsd.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171892: graphics/libvisual04-plugins: unbreak with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 13:30:23 -0000 Synopsis: graphics/libvisual04-plugins: unbreak with clang State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Sep 23 13:30:22 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171892 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 13:40:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E2C8F106564A for ; Sun, 23 Sep 2012 13:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CDD948FC08 for ; Sun, 23 Sep 2012 13:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NDe9Dg098296 for ; Sun, 23 Sep 2012 13:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NDe9m7098287; Sun, 23 Sep 2012 13:40:09 GMT (envelope-from gnats) Date: Sun, 23 Sep 2012 13:40:09 GMT Message-Id: <201209231340.q8NDe9m7098287@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/171892: graphics/libvisual04-plugins: unbreak with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 13:40:10 -0000 The following reply was made to PR ports/171892; it has been noted by GNATS. From: Edwin Groothuis To: bkoenig@alpha-tierchen.de Cc: bug-followup@FreeBSD.org Subject: Re: ports/171892: graphics/libvisual04-plugins: unbreak with clang Date: Sun, 23 Sep 2012 13:30:18 UT Maintainer of graphics/libvisual04-plugins, Please note that PR ports/171892 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171892 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 14:00:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C28E106571D for ; Sun, 23 Sep 2012 14:00:28 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 922BD8FC16 for ; Sun, 23 Sep 2012 14:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NE0R5W015481 for ; Sun, 23 Sep 2012 14:00:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NE0RMU015473; Sun, 23 Sep 2012 14:00:27 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 14:00:27 GMT Resent-Message-Id: <201209231400.q8NE0RMU015473@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Petermann Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33180106566B for ; Sun, 23 Sep 2012 13:58:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1DF898FC12 for ; Sun, 23 Sep 2012 13:58:13 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NDwCmK049646 for ; Sun, 23 Sep 2012 13:58:12 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8NDwCGP049645; Sun, 23 Sep 2012 13:58:12 GMT (envelope-from nobody) Message-Id: <201209231358.q8NDwCGP049645@red.freebsd.org> Date: Sun, 23 Sep 2012 13:58:12 GMT From: Matthias Petermann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171893: [BUG] sysutils/ezjail: ezjail_admin update -b (Cannot find your copy of the FreeBSD source tree) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 14:00:28 -0000 >Number: 171893 >Category: ports >Synopsis: [BUG] sysutils/ezjail: ezjail_admin update -b (Cannot find your copy of the FreeBSD source tree) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 14:00:26 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthias Petermann >Release: 9.0-p3 >Organization: >Environment: FreeBSD compaq 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 02:52:29 UTC 2012 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The command: ezjail_admin update -b responds with an error message on my system: Error: Cannot find your copy of the FreeBSD source tree in . Consider using 'ezjail-admin install' to create the base jail from an ftp server. Opposite to the message, the FreeBSD source tree is installed under /usr/src and the respective path is set in /usr/local/etc/ezjail.conf (ezjail_sourcetree). Another system with ezJail 3.1 works fine with the same settings. I drilled down the problem with diff of ezjail_admin version 3.1 vs. 3.2.2. It looks like that 3.2.2 within the #### ezjail-admin UPDATE ##### section unsets a couple of variables but never assigns them again. Thats why later in the code: # Bump the user for some of the most common errors [ -d "${ezjail_sourcetree}" ] || exerr "Error: Cannot find your copy of the FreeBSD source tree in ${ezjail_sourcetree}.\n Consider using '${ezjail_admin} install' to create the base jail from an ftp server." exits with the error. The problem was already reported to ezjail@erdgeist.org (the ezJail mailing list). This PR is for informational purpose. >How-To-Repeat: After the installation of ezjail, try to update the basejail with: ezjail_admin update -b >Fix: I could fix the problem in 3.2.2 temporarely by changing the line: unset ezjail_provideports ezjail_installaction ezjail_osversion_source ezjail_osversion_destination ezjail_sourcetree to: unset ezjail_provideports ezjail_installaction ezjail_osversion_source ezjail_osversion_destination >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 14:00:40 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C139A1065701; Sun, 23 Sep 2012 14:00:40 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 93CE48FC0C; Sun, 23 Sep 2012 14:00:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NE0exF017093; Sun, 23 Sep 2012 14:00:40 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NE0e9w017080; Sun, 23 Sep 2012 14:00:40 GMT (envelope-from edwin) Date: Sun, 23 Sep 2012 14:00:40 GMT Message-Id: <201209231400.q8NE0e9w017080@freefall.freebsd.org> To: matthias@d2ux.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171893: [BUG] sysutils/ezjail: ezjail_admin update -b (Cannot find your copy of the FreeBSD source tree) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 14:00:40 -0000 Synopsis: [BUG] sysutils/ezjail: ezjail_admin update -b (Cannot find your copy of the FreeBSD source tree) State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Sep 23 14:00:39 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171893 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 14:09:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 40D31106564A; Sun, 23 Sep 2012 14:09:14 +0000 (UTC) (envelope-from hans.petter.selasky@bitfrost.no) Received: from relay04.isp.tdc.no (relay04.isp.tdc.no [213.236.144.178]) by mx1.freebsd.org (Postfix) with ESMTP id E353F8FC12; Sun, 23 Sep 2012 14:09:13 +0000 (UTC) Received: from smtp02-out.isp.tdc.no (smtp02-out.isp.tdc.no [213.236.144.173]) by relay04.isp.tdc.no (Postfix) with ESMTP id 3XPr4z0B36zCBT; Sun, 23 Sep 2012 16:09:07 +0200 (CEST) Received: from mail.bitfrost.no (mail.bitfrost.no [85.19.79.136]) by smtp02-out.isp.tdc.no (Postfix) with ESMTP id 3XPr4y6vxGz6J4; Sun, 23 Sep 2012 16:09:06 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at bitfrost.no From: =?utf-8?Q?Hans_Petter_Selasky?= To: =?utf-8?Q?nox=40freebsd=2Eorg?= , =?utf-8?Q?hselasky=40FreeBSD=2Eorg?= , =?utf-8?Q?freebsd-ports-bugs=40FreeBSD=2Eorg?= , =?utf-8?Q?edwin=40FreeBSD=2Eorg?= , =?utf-8?Q?edwin=40FreeBSD=2Eorg?= Date: Sun, 23 Sep 2012 16:09:05 +0200 Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=_1wNnECe8pi1Pgz4nM-4IhLWfnpia1D1BETI9pF3CgAG7MBlX" In-Reply-To: <201209231050.q8NAoPYY037052@freefall.freebsd.org> References: <201209231050.q8NAoPYY037052@freefall.freebsd.org> X-Priority: 3 (Normal) Message-Id: X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: RE: ports/171891: multimedia/webcamd: Version 3.7.0.3 fails to build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 14:09:14 -0000 This is a multi-part message in MIME format. Your mail reader does not understand MIME message format. --=_1wNnECe8pi1Pgz4nM-4IhLWfnpia1D1BETI9pF3CgAG7MBlX Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Please find attached a patch which will fix the problem. Sorry for the in= convenience.=0D=0A=0D=0A=C2=A0=0D=0A--HPS=20=0D=0A=0D=0A=0D=0A --=_1wNnECe8pi1Pgz4nM-4IhLWfnpia1D1BETI9pF3CgAG7MBlX Content-Type: application/octet-stream; name=webcamd_clang.fix Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename=webcamd_clang.fix LS0tIHdvcmsvd2ViY2FtZC0zLjcuMC4zL2tlcm5lbC9saW51eF9kZWZzLmgub3JpZwkyMDEy LTA5LTIzIDE2OjA2OjA3LjAwMDAwMDAwMCArMDIwMAorKysgd29yay93ZWJjYW1kLTMuNy4w LjMva2VybmVsL2xpbnV4X2RlZnMuaAkyMDEyLTA5LTIzIDE2OjA2OjI0LjAwMDAwMDAwMCAr MDIwMApAQCAtOTgsNiArOTgsNyBAQAogI2RlZmluZQlzeW1ib2xfcHV0KHgpIF9fbm9wCiAj ZGVmaW5lCUVYUE9SVF9TWU1CT0woLi4uKQogI2RlZmluZQlFWFBPUlRfU1lNQk9MX0dQTCgu Li4pCisjZGVmaW5lCU1PRFVMRV9JTkZPKC4uLikKICNkZWZpbmUJTU9EVUxFX0FVVEhPUigu Li4pCiAjZGVmaW5lCU1PRFVMRV9ERVNDUklQVElPTiguLi4pCiAjZGVmaW5lCU1PRFVMRV9M SUNFTlNFKC4uLikK --=_1wNnECe8pi1Pgz4nM-4IhLWfnpia1D1BETI9pF3CgAG7MBlX-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 14:10:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8194E106566B for ; Sun, 23 Sep 2012 14:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6AC358FC0A for ; Sun, 23 Sep 2012 14:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NEADrE024282 for ; Sun, 23 Sep 2012 14:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NEADsW024277; Sun, 23 Sep 2012 14:10:13 GMT (envelope-from gnats) Date: Sun, 23 Sep 2012 14:10:13 GMT Message-Id: <201209231410.q8NEADsW024277@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/171893: [BUG] sysutils/ezjail: ezjail_admin update -b (Cannot find your copy of the FreeBSD source tree) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 14:10:13 -0000 The following reply was made to PR ports/171893; it has been noted by GNATS. From: Edwin Groothuis To: erdgeist@erdgeist.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/171893: [BUG] sysutils/ezjail: ezjail_admin update -b (Cannot find your copy of the FreeBSD source tree) Date: Sun, 23 Sep 2012 14:00:35 UT Maintainer of sysutils/ezjail, Please note that PR ports/171893 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171893 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 14:50:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE1BC1065774 for ; Sun, 23 Sep 2012 14:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2C4868FC1A for ; Sun, 23 Sep 2012 14:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NEo8h3060892 for ; Sun, 23 Sep 2012 14:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NEo8Tw060891; Sun, 23 Sep 2012 14:50:08 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 14:50:08 GMT Resent-Message-Id: <201209231450.q8NEo8Tw060891@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dirk Engling Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D2DBF1065670 for ; Sun, 23 Sep 2012 14:40:45 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BFF6D8FC16 for ; Sun, 23 Sep 2012 14:40:45 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NEejAF014636 for ; Sun, 23 Sep 2012 14:40:45 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8NEejFE014635; Sun, 23 Sep 2012 14:40:45 GMT (envelope-from nobody) Message-Id: <201209231440.q8NEejFE014635@red.freebsd.org> Date: Sun, 23 Sep 2012 14:40:45 GMT From: Dirk Engling To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171894: Maintainer update ezjail 3.2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 14:50:09 -0000 >Number: 171894 >Category: ports >Synopsis: Maintainer update ezjail 3.2.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 14:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dirk Engling >Release: 9.0-RELEASE >Organization: >Environment: >Description: >How-To-Repeat: >Fix: diff /usr/ports/sysutils/ezjail/Makefile ./Makefile 1c1,6 < # $FreeBSD: ports/sysutils/ezjail/Makefile,v 1.17 2012/09/14 19:02:12 jgh Exp $ --- > # New ports collection makefile for: ezjail > # Date created: 1 September 2005 > # Whom: erdgeist > # > # $FreeBSD: ports/sysutils/ezjail/Makefile,v 1.16 2012/08/03 15:54:35 cs Exp $ > # 4c9 < PORTVERSION= 3.2.2 --- > PORTVERSION= 3.2.3 diff /usr/ports/sysutils/ezjail/distinfo ./distinfo 1,2c1,2 < SHA256 (ezjail-3.2.2.tar.bz2) = b942c670a595d74586fbd13d29d6b6dd5d6871876261254e936d28cda031e4e0 < SIZE (ezjail-3.2.2.tar.bz2) = 34579 --- > SHA256 (ezjail-3.2.3.tar.bz2) = 072ac07e5499917c28e20656e9c08df9ab6cbc2b28945999389939eea71cf65f > SIZE (ezjail-3.2.3.tar.bz2) = 34638 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 15:12:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81CF7106566C; Sun, 23 Sep 2012 15:12:19 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 540A28FC1B; Sun, 23 Sep 2012 15:12:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NFCIXH086033; Sun, 23 Sep 2012 15:12:18 GMT (envelope-from rakuco@freefall.freebsd.org) Received: (from rakuco@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NFCIUH086029; Sun, 23 Sep 2012 15:12:18 GMT (envelope-from rakuco) Date: Sun, 23 Sep 2012 15:12:18 GMT Message-Id: <201209231512.q8NFCIUH086029@freefall.freebsd.org> To: rakuco@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rakuco@FreeBSD.org From: rakuco@FreeBSD.org Cc: Subject: Re: ports/171819: [MAINTAINER] multimedia/gtk-youtube-viewer: Makefile changed, Port require always DATA, fixed missing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 15:12:19 -0000 Synopsis: [MAINTAINER] multimedia/gtk-youtube-viewer: Makefile changed, Port require always DATA, fixed missing Responsible-Changed-From-To: freebsd-ports-bugs->rakuco Responsible-Changed-By: rakuco Responsible-Changed-When: Sun Sep 23 15:12:18 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171819 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 15:38:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 61EEB106566B; Sun, 23 Sep 2012 15:38:11 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 351E18FC14; Sun, 23 Sep 2012 15:38:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NFcB61006622; Sun, 23 Sep 2012 15:38:11 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NFcBaD006618; Sun, 23 Sep 2012 15:38:11 GMT (envelope-from culot) Date: Sun, 23 Sep 2012 15:38:11 GMT Message-Id: <201209231538.q8NFcBaD006618@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/171894: Maintainer update ezjail 3.2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 15:38:11 -0000 Synopsis: Maintainer update ezjail 3.2.3 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Sun Sep 23 15:38:10 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171894 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 16:28:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 053B0106564A; Sun, 23 Sep 2012 16:28:19 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CDC328FC0C; Sun, 23 Sep 2012 16:28:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NGSIar050382; Sun, 23 Sep 2012 16:28:18 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NGSIoA050378; Sun, 23 Sep 2012 16:28:18 GMT (envelope-from makc) Date: Sun, 23 Sep 2012 16:28:18 GMT Message-Id: <201209231628.q8NGSIoA050378@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/171879: [MAINTAINER] upgrade graphics/povray37 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 16:28:19 -0000 Synopsis: [MAINTAINER] upgrade graphics/povray37 Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Sun Sep 23 16:28:18 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171879 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 16:30:41 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BF4E61065674; Sun, 23 Sep 2012 16:30:41 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 946108FC14; Sun, 23 Sep 2012 16:30:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NGUfoc055754; Sun, 23 Sep 2012 16:30:41 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NGUfbq055741; Sun, 23 Sep 2012 16:30:41 GMT (envelope-from makc) Date: Sun, 23 Sep 2012 16:30:41 GMT Message-Id: <201209231630.q8NGUfbq055741@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/171876: New port: devel/openvex X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 16:30:41 -0000 Synopsis: New port: devel/openvex Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Sun Sep 23 16:30:40 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171876 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 17:00:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3CDE81065672 for ; Sun, 23 Sep 2012 17:00:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EFBD48FC15 for ; Sun, 23 Sep 2012 17:00:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NH0Mgr078171 for ; Sun, 23 Sep 2012 17:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NH0MBP078167; Sun, 23 Sep 2012 17:00:22 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 17:00:22 GMT Resent-Message-Id: <201209231700.q8NH0MBP078167@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Koichiro IWAO Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7BDE106566C for ; Sun, 23 Sep 2012 16:55:52 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id A34318FC08 for ; Sun, 23 Sep 2012 16:55:52 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NGtpVN003638 for ; Sun, 23 Sep 2012 16:55:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8NGtpV6003637; Sun, 23 Sep 2012 16:55:51 GMT (envelope-from nobody) Message-Id: <201209231655.q8NGtpV6003637@red.freebsd.org> Date: Sun, 23 Sep 2012 16:55:51 GMT From: Koichiro IWAO To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171895: [maintainer update] devel/rubygem-awesomeprint: Update to 1.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 17:00:23 -0000 >Number: 171895 >Category: ports >Synopsis: [maintainer update] devel/rubygem-awesomeprint: Update to 1.1.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 17:00:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Koichiro IWAO >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD ports-dev.vmeta.jp 9.0-RELEASE FreeBSD 9.0-RELEASE #0 r235554M: Fri May 18 02:24:16 JST 2012 root@icepick.vmeta.jp:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update to 1.1.0 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN ./Makefile /usr/ports/devel/rubygem-awesome_print/Makefile --- ./Makefile 2012-09-24 01:40:12.015629171 +0900 +++ /usr/ports/devel/rubygem-awesome_print/Makefile 2012-06-02 00:40:52.000000000 +0900 @@ -6,7 +6,7 @@ # PORTNAME= awesome_print -PORTVERSION= 1.1.0 +PORTVERSION= 1.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG diff -ruN ./distinfo /usr/ports/devel/rubygem-awesome_print/distinfo --- ./distinfo 2012-09-24 01:40:21.538628402 +0900 +++ /usr/ports/devel/rubygem-awesome_print/distinfo 2012-06-02 00:40:52.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (rubygem/awesome_print-1.1.0.gem) = 1ec7896a94a6a2044336dddea3561e7c66e36e22784da0e175fd2cf089bca29b -SIZE (rubygem/awesome_print-1.1.0.gem) = 27136 +SHA256 (rubygem/awesome_print-1.0.2.gem) = 772021d8a49ed6c707d7e6c70dba6dcfd466812824fa1993c1305434a2bc96cf +SIZE (rubygem/awesome_print-1.0.2.gem) = 25088 Files ./rubygem-awesome_print-1.1.0.tbz and /usr/ports/devel/rubygem-awesome_print/rubygem-awesome_print-1.1.0.tbz differ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 17:05:51 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FA321065674; Sun, 23 Sep 2012 17:05:51 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 43AE48FC1D; Sun, 23 Sep 2012 17:05:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NH5pQM086828; Sun, 23 Sep 2012 17:05:51 GMT (envelope-from bsam@freefall.freebsd.org) Received: (from bsam@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NH5piq086824; Sun, 23 Sep 2012 17:05:51 GMT (envelope-from bsam) Date: Sun, 23 Sep 2012 17:05:51 GMT Message-Id: <201209231705.q8NH5piq086824@freefall.freebsd.org> To: bsam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bsam@FreeBSD.org From: bsam@FreeBSD.org Cc: Subject: Re: ports/166665: [new port] java/jboss-as: JBoss 7.1 new port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 17:05:51 -0000 Synopsis: [new port] java/jboss-as: JBoss 7.1 new port Responsible-Changed-From-To: freebsd-ports-bugs->bsam Responsible-Changed-By: bsam Responsible-Changed-When: Sun Sep 23 17:05:50 UTC 2012 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=166665 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 17:32:33 2012 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2A81106566C; Sun, 23 Sep 2012 17:32:32 +0000 (UTC) (envelope-from meta+ports@vmeta.jp) Received: from glory.vmeta.jp (7c293911.i-revonet.jp [124.41.57.17]) by mx1.freebsd.org (Postfix) with ESMTP id B355C8FC0A; Sun, 23 Sep 2012 17:32:31 +0000 (UTC) Received: from icepick.vmeta.jp (z86.219-127-29.ppp.wakwak.ne.jp [219.127.29.86]) by glory.vmeta.jp (Postfix) with ESMTPSA id 2B6ABFB0; Mon, 24 Sep 2012 02:24:02 +0900 (JST) Date: Mon, 24 Sep 2012 02:23:36 +0900 From: meta+ports@vmeta.jp To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20120923172335.GA66820@icepick.vmeta.jp> References: <201209231655.q8NGtpV6003637@red.freebsd.org> <201209231700.q8NH0MUK078139@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="AhhlLboLdkugWU4S" Content-Disposition: inline In-Reply-To: <201209231700.q8NH0MUK078139@freefall.freebsd.org> X-Operating-System: FreeBSD 9.0-RELEASE amd64 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Koichiro IWAO Subject: Re: ports/171895: [maintainer update] devel/rubygem-awesomeprint: Update to 1.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 17:32:33 -0000 --AhhlLboLdkugWU4S Content-Type: text/plain; charset=iso-2022-jp Content-Disposition: inline The patch was reverse order. The correct patch is attached. -- `whois vmeta.jp | nkf -w` meta --AhhlLboLdkugWU4S Content-Type: text/plain; charset=iso-2022-jp Content-Disposition: attachment; filename="rubygem-awesome_print.txt" diff -ruN /usr/ports/devel/rubygem-awesome_print/Makefile ./Makefile --- /usr/ports/devel/rubygem-awesome_print/Makefile 2012-06-02 00:40:52.000000000 +0900 +++ ./Makefile 2012-09-24 01:40:12.015629171 +0900 @@ -6,7 +6,7 @@ # PORTNAME= awesome_print -PORTVERSION= 1.0.2 +PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG diff -ruN /usr/ports/devel/rubygem-awesome_print/distinfo ./distinfo --- /usr/ports/devel/rubygem-awesome_print/distinfo 2012-06-02 00:40:52.000000000 +0900 +++ ./distinfo 2012-09-24 01:40:21.538628402 +0900 @@ -1,2 +1,2 @@ -SHA256 (rubygem/awesome_print-1.0.2.gem) = 772021d8a49ed6c707d7e6c70dba6dcfd466812824fa1993c1305434a2bc96cf -SIZE (rubygem/awesome_print-1.0.2.gem) = 25088 +SHA256 (rubygem/awesome_print-1.1.0.gem) = 1ec7896a94a6a2044336dddea3561e7c66e36e22784da0e175fd2cf089bca29b +SIZE (rubygem/awesome_print-1.1.0.gem) = 27136 --AhhlLboLdkugWU4S-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 17:40:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E17D1065670 for ; Sun, 23 Sep 2012 17:40:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 190F38FC16 for ; Sun, 23 Sep 2012 17:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NHeBdM015831 for ; Sun, 23 Sep 2012 17:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NHeBem015829; Sun, 23 Sep 2012 17:40:11 GMT (envelope-from gnats) Date: Sun, 23 Sep 2012 17:40:11 GMT Message-Id: <201209231740.q8NHeBem015829@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: meta+ports@vmeta.jp Cc: Subject: Re: ports/171895: [maintainer update] devel/rubygem-awesomeprint: Update to 1.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: meta+ports@vmeta.jp List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 17:40:12 -0000 The following reply was made to PR ports/171895; it has been noted by GNATS. From: meta+ports@vmeta.jp To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Koichiro IWAO Subject: Re: ports/171895: [maintainer update] devel/rubygem-awesomeprint: Update to 1.1.0 Date: Mon, 24 Sep 2012 02:23:36 +0900 --AhhlLboLdkugWU4S Content-Type: text/plain; charset=iso-2022-jp Content-Disposition: inline The patch was reverse order. The correct patch is attached. -- `whois vmeta.jp | nkf -w` meta --AhhlLboLdkugWU4S Content-Type: text/plain; charset=iso-2022-jp Content-Disposition: attachment; filename="rubygem-awesome_print.txt" diff -ruN /usr/ports/devel/rubygem-awesome_print/Makefile ./Makefile --- /usr/ports/devel/rubygem-awesome_print/Makefile 2012-06-02 00:40:52.000000000 +0900 +++ ./Makefile 2012-09-24 01:40:12.015629171 +0900 @@ -6,7 +6,7 @@ # PORTNAME= awesome_print -PORTVERSION= 1.0.2 +PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG diff -ruN /usr/ports/devel/rubygem-awesome_print/distinfo ./distinfo --- /usr/ports/devel/rubygem-awesome_print/distinfo 2012-06-02 00:40:52.000000000 +0900 +++ ./distinfo 2012-09-24 01:40:21.538628402 +0900 @@ -1,2 +1,2 @@ -SHA256 (rubygem/awesome_print-1.0.2.gem) = 772021d8a49ed6c707d7e6c70dba6dcfd466812824fa1993c1305434a2bc96cf -SIZE (rubygem/awesome_print-1.0.2.gem) = 25088 +SHA256 (rubygem/awesome_print-1.1.0.gem) = 1ec7896a94a6a2044336dddea3561e7c66e36e22784da0e175fd2cf089bca29b +SIZE (rubygem/awesome_print-1.1.0.gem) = 27136 --AhhlLboLdkugWU4S-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 17:43:55 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A36A41065673; Sun, 23 Sep 2012 17:43:55 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6BAED8FC18; Sun, 23 Sep 2012 17:43:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NHhtG3023544; Sun, 23 Sep 2012 17:43:55 GMT (envelope-from bsam@freefall.freebsd.org) Received: (from bsam@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NHhsVR023540; Sun, 23 Sep 2012 17:43:54 GMT (envelope-from bsam) Date: Sun, 23 Sep 2012 17:43:54 GMT Message-Id: <201209231743.q8NHhsVR023540@freefall.freebsd.org> To: coder@tuxfamily.org, bsam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bsam@FreeBSD.org Cc: Subject: Re: ports/168215: [PATCH] print/scribus-devel: update to 1.5.0 svn X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 17:43:55 -0000 Synopsis: [PATCH] print/scribus-devel: update to 1.5.0 svn State-Changed-From-To: suspended->closed State-Changed-By: bsam State-Changed-When: Sun Sep 23 17:42:06 UTC 2012 State-Changed-Why: The PR was committed at May, 28. Thanks for the report! http://www.freebsd.org/cgi/query-pr.cgi?pr=168215 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 17:50:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42666106566C for ; Sun, 23 Sep 2012 17:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1D23F8FC12 for ; Sun, 23 Sep 2012 17:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NHo7Wm024259 for ; Sun, 23 Sep 2012 17:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NHo77F024258; Sun, 23 Sep 2012 17:50:07 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 17:50:07 GMT Resent-Message-Id: <201209231750.q8NHo77F024258@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kurt Jaeger Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA7711065675; Sun, 23 Sep 2012 17:40:32 +0000 (UTC) (envelope-from pi@zfs.opsec.eu) Received: from zfs.opsec.eu (zfs.opsec.eu [IPv6:2001:14f8:200:4::18]) by mx1.freebsd.org (Postfix) with ESMTP id 234708FC15; Sun, 23 Sep 2012 17:40:31 +0000 (UTC) Received: from pi by zfs.opsec.eu with local (Exim 4.80 (FreeBSD)) (envelope-from ) id 1TFqAR-000EW8-SH; Sun, 23 Sep 2012 19:40:31 +0200 Message-Id: Date: Sun, 23 Sep 2012 19:40:31 +0200 From: Kurt Jaeger To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: eadler@FreeBSD.org Subject: ports/171896: ports/multimedia/libvdpau on 9.0-REL amd64 fails to configure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kurt Jaeger List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 17:50:08 -0000 >Number: 171896 >Category: ports >Synopsis: ports/multimedia/libvdpau on 9.0-REL amd64 fails to configure >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 17:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kurt Jaeger >Release: FreeBSD 9.0-RELEASE amd64 >Organization: - >Environment: System: FreeBSD zfs.opsec.eu 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: libvdpau fails to build due to autoconf issues ? [...] checking how to hardcode library paths into programs... immediate ./configure: 14968: Syntax error: word unexpected (expecting ")") See full build log at: http://opsec.eu/backup/libvdpau-error >How-To-Repeat: cd /usr/ports/multimedia/libvdpau make >Fix: No fix as of now. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 17:52:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97C68106564A; Sun, 23 Sep 2012 17:52:13 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6B3008FC0A; Sun, 23 Sep 2012 17:52:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NHqDdo032342; Sun, 23 Sep 2012 17:52:13 GMT (envelope-from bsam@freefall.freebsd.org) Received: (from bsam@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NHqDfE032338; Sun, 23 Sep 2012 17:52:13 GMT (envelope-from bsam) Date: Sun, 23 Sep 2012 17:52:13 GMT Message-Id: <201209231752.q8NHqDfE032338@freefall.freebsd.org> To: coder@tuxfamily.org, bsam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bsam@FreeBSD.org Cc: Subject: Re: ports/168215: [PATCH] print/scribus-devel: update to 1.5.0 svn X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 17:52:13 -0000 Synopsis: [PATCH] print/scribus-devel: update to 1.5.0 svn State-Changed-From-To: closed->open State-Changed-By: bsam State-Changed-When: Sun Sep 23 17:49:24 UTC 2012 State-Changed-Why: Open once more. the PR was committed, then re-opened and the port marked broken. It's broken for more then three months. Seems that the maintainer has lost interest. http://www.freebsd.org/cgi/query-pr.cgi?pr=168215 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 18:00:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4821E106564A for ; Sun, 23 Sep 2012 18:00:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F3DEB8FC1C for ; Sun, 23 Sep 2012 18:00:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NI0M5L032514 for ; Sun, 23 Sep 2012 18:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NI0MLg032513; Sun, 23 Sep 2012 18:00:22 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 18:00:22 GMT Resent-Message-Id: <201209231800.q8NI0MLg032513@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Aldis Berjoza Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 86E1C106564A for ; Sun, 23 Sep 2012 17:57:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 73A588FC14 for ; Sun, 23 Sep 2012 17:57:32 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NHvWLi061778 for ; Sun, 23 Sep 2012 17:57:32 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8NHvWoR061777; Sun, 23 Sep 2012 17:57:32 GMT (envelope-from nobody) Message-Id: <201209231757.q8NHvWoR061777@red.freebsd.org> Date: Sun, 23 Sep 2012 17:57:32 GMT From: Aldis Berjoza To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171897: [PATCH] multimedia/playd update to v1.22.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 18:00:23 -0000 >Number: 171897 >Category: ports >Synopsis: [PATCH] multimedia/playd update to v1.22.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 18:00:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Aldis Berjoza >Release: >Organization: >Environment: >Description: Update multimedia/playd to v1.22.3 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -u playd.bak/Makefile playd/Makefile --- playd.bak/Makefile 2012-09-23 20:38:12.526289654 +0300 +++ playd/Makefile 2012-09-23 20:53:17.176785429 +0300 @@ -6,7 +6,7 @@ # PORTNAME= playd -PORTVERSION= 1.22.2 +PORTVERSION= 1.22.3 CATEGORIES= multimedia MASTER_SITES= http://files.bsdroot.lv/my/FreeBSD/distfiles/ DISTNAME= playd.sh-${PORTVERSION} @@ -23,7 +23,7 @@ NO_BUILD= yes WRKSRC= ${WRKDIR}/graudeejs-playd-${REV} -REV= 52bf8eb +REV= 1e09c80 do-install: ${INSTALL_SCRIPT} ${WRKSRC}/bin/playd.sh ${PREFIX}/bin/playd diff -u playd.bak/distinfo playd/distinfo --- playd.bak/distinfo 2012-09-23 20:38:12.526289654 +0300 +++ playd/distinfo 2012-09-23 20:52:40.120484771 +0300 @@ -1,2 +1,2 @@ -SHA256 (playd.sh-1.22.2.tar.gz) = 462b225040c4444080117504f6142c5ee91e46da3fb8f0c4069f5eeb336fa973 -SIZE (playd.sh-1.22.2.tar.gz) = 11004 +SHA256 (playd.sh-1.22.3.tar.gz) = 0bd005b8e38cea60761867f82cf6f8b0681685223af2e8c27d421bd9b6c65f84 +SIZE (playd.sh-1.22.3.tar.gz) = 11045 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 18:10:49 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E0671065672; Sun, 23 Sep 2012 18:10:49 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 633BD8FC0A; Sun, 23 Sep 2012 18:10:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NIAngF049250; Sun, 23 Sep 2012 18:10:49 GMT (envelope-from rakuco@freefall.freebsd.org) Received: (from rakuco@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NIAnuB049246; Sun, 23 Sep 2012 18:10:49 GMT (envelope-from rakuco) Date: Sun, 23 Sep 2012 18:10:49 GMT Message-Id: <201209231810.q8NIAnuB049246@freefall.freebsd.org> To: rakuco@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rakuco@FreeBSD.org From: rakuco@FreeBSD.org Cc: Subject: Re: ports/171785: update www/fusionpbx X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 18:10:49 -0000 Synopsis: update www/fusionpbx Responsible-Changed-From-To: freebsd-ports-bugs->rakuco Responsible-Changed-By: rakuco Responsible-Changed-When: Sun Sep 23 18:10:49 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171785 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 18:20:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB31E106566B for ; Sun, 23 Sep 2012 18:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 939DD8FC12 for ; Sun, 23 Sep 2012 18:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NIK138051235 for ; Sun, 23 Sep 2012 18:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NIK1E8051234; Sun, 23 Sep 2012 18:20:01 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 18:20:01 GMT Resent-Message-Id: <201209231820.q8NIK1E8051234@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 555C21065670 for ; Sun, 23 Sep 2012 18:12:23 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.23]) by mx1.freebsd.org (Postfix) with SMTP id C9B748FC14 for ; Sun, 23 Sep 2012 18:12:22 +0000 (UTC) Received: (qmail invoked by alias); 23 Sep 2012 18:12:15 -0000 Received: from 201-230.4-85.cust.bluewin.ch (EHLO something.email.com) [85.4.230.201] by mail.gmx.net (mp017) with SMTP; 23 Sep 2012 20:12:15 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sun, 23 Sep 2012 20:12:14 +0200 Message-Id: <20120923181223.555C21065670@hub.freebsd.org> Date: Sun, 23 Sep 2012 20:12:14 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: perl@FreeBSD.org Subject: ports/171898: [PATCH] multimedia/p5-Video-Info: downgrade to 0.993, 1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 18:20:01 -0000 >Number: 171898 >Category: ports >Synopsis: [PATCH] multimedia/p5-Video-Info: downgrade to 0.993,1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 18:20:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: - Update to 0.993,1 This is not update this is downgrade, because is Version 0.999 not more on CPAN. Perhaps is better to not use +PORTEPOCH= 1 and to change only to +PORTVERSION= 0.993 Makefile changed: Added +BUILD_DEPENDS= p5-Video-OpenQuicktime>=0:${PORTSDIR}/multimedia/p5-Video-OpenQuicktime \ + devel/p5-Class-MakeMethods>=0:${PORTSDIR}/devel/p5-Class-MakeMethods \ + audio/p5-MP3-Info>=0:${PORTSDIR}/audio/p5-MP3-Info +MAN3= Video::Info.3 Video::Info::MPEG::Constants.3 Video::Info::RIFF.3 \ + Video::Info::MPEG::Audio.3 Video::Info::MPEG::System.3 Video::Info::Magic.3 \ + Video::Info::FOO.3 Video::Info::MPEG.3 Video::Info::ASF.3 Video::Info::Quicktime.3 \ + Video::Info::MPEG::Video.3 pkg-plist changed Port maintainer (perl@FreeBSD.org) is cc'd. Generated and tested manually, tested with port test and with RedPorts (all RELEASES, CLANG), sent with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: portlint -A WARN: Makefile: for new port, make $FreeBSD$ tag in comment section empty, to make SVN happy. WARN: Makefile: new ports should not set PORTEPOCH. 0 fatal errors and 2 warnings found. Build log RedPorts https://redports.org/buildarchive/20120923172140-44194/ >Fix: --- p5-Video-Info-0.993,1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/multimedia/p5-Video-Info/Makefile ./Makefile --- /usr/ports/multimedia/p5-Video-Info/Makefile 2012-04-10 01:51:39.000000000 +0200 +++ ./Makefile 2012-09-23 19:08:31.000000000 +0200 @@ -6,8 +6,8 @@ # PORTNAME= Video-Info -PORTVERSION= 0.999 -PORTREVISION= 3 +PORTVERSION= 0.993 +PORTEPOCH= 1 CATEGORIES= multimedia perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -15,16 +15,18 @@ MAINTAINER= perl@FreeBSD.org COMMENT= Retrieve video properties such as: height width codec fps -DEPRECATED= BROKEN for more than 6 month -EXPIRATION_DATE= 2012-05-10 - -BROKEN= does not fetch +BUILD_DEPENDS= p5-Video-OpenQuicktime>=0:${PORTSDIR}/multimedia/p5-Video-OpenQuicktime \ + devel/p5-Class-MakeMethods>=0:${PORTSDIR}/devel/p5-Class-MakeMethods \ + audio/p5-MP3-Info>=0:${PORTSDIR}/audio/p5-MP3-Info PERL_CONFIGURE= yes PERL_CONFIGURE= yes MANCOMPRESSED= no -MAN3= Video::Info.3 +MAN3= Video::Info.3 Video::Info::MPEG::Constants.3 Video::Info::RIFF.3 \ + Video::Info::MPEG::Audio.3 Video::Info::MPEG::System.3 Video::Info::Magic.3 \ + Video::Info::FOO.3 Video::Info::MPEG.3 Video::Info::ASF.3 Video::Info::Quicktime.3 \ + Video::Info::MPEG::Video.3 .include diff -ruN --exclude=CVS /usr/ports/multimedia/p5-Video-Info/distinfo ./distinfo --- /usr/ports/multimedia/p5-Video-Info/distinfo 2011-05-17 13:10:23.000000000 +0200 +++ ./distinfo 2012-09-23 18:27:38.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (Video-Info-0.999.tar.gz) = 3a318fc42214df0986aa69b99e274f54ce43beae079034ce290bcb9ba15fdae2 -SIZE (Video-Info-0.999.tar.gz) = 2542 +SHA256 (Video-Info-0.993.tar.gz) = 7b4972e32820770600ed1a350c5aaeaa5b70ce4cef6b423e47503c934a0c72e3 +SIZE (Video-Info-0.993.tar.gz) = 634560 diff -ruN --exclude=CVS /usr/ports/multimedia/p5-Video-Info/pkg-plist ./pkg-plist --- /usr/ports/multimedia/p5-Video-Info/pkg-plist 2006-01-22 03:29:59.000000000 +0100 +++ ./pkg-plist 2012-09-23 20:04:03.000000000 +0200 @@ -1,5 +1,23 @@ -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Video/Info/.packlist %%SITE_PERL%%/Video/Info.pm +%%SITE_PERL%%/Video/Info/ASF.pm +%%SITE_PERL%%/Video/Info/FOO.pm +%%SITE_PERL%%/Video/Info/MPEG.pm +%%SITE_PERL%%/Video/Info/MPEG/Audio.pm +%%SITE_PERL%%/Video/Info/MPEG/Constants.pm +%%SITE_PERL%%/Video/Info/MPEG/System.pm +%%SITE_PERL%%/Video/Info/MPEG/Video.pm +%%SITE_PERL%%/Video/Info/Magic.pm +%%SITE_PERL%%/Video/Info/Quicktime.pm +%%SITE_PERL%%/Video/Info/RIFF.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Video/Info/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Video/Info -@dirrmtry %%SITE_PERL%%/Video @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Video +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%% +@dirrm %%SITE_PERL%%/Video/Info/MPEG +@dirrm %%SITE_PERL%%/Video/Info +@dirrm %%SITE_PERL%%/Video +@dirrmtry %%SITE_PERL%% +@dirrmtry lib/perl5/site_perl +@dirrmtry lib/perl5/5.14.2 +@dirrmtry lib/perl5 --- p5-Video-Info-0.993,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 18:20:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4D8A3106566B; Sun, 23 Sep 2012 18:20:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 219478FC0A; Sun, 23 Sep 2012 18:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NIKE4A053038; Sun, 23 Sep 2012 18:20:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NIKDLr053029; Sun, 23 Sep 2012 18:20:13 GMT (envelope-from edwin) Date: Sun, 23 Sep 2012 18:20:13 GMT Message-Id: <201209231820.q8NIKDLr053029@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171898: [PATCH] multimedia/p5-Video-Info: downgrade to 0.993, 1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 18:20:14 -0000 Synopsis: [PATCH] multimedia/p5-Video-Info: downgrade to 0.993,1 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 23 18:20:13 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171898 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 18:27:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B453106566B; Sun, 23 Sep 2012 18:27:23 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D3D428FC0A; Sun, 23 Sep 2012 18:27:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NIRMl4059602; Sun, 23 Sep 2012 18:27:22 GMT (envelope-from rakuco@freefall.freebsd.org) Received: (from rakuco@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NIRMJJ059597; Sun, 23 Sep 2012 18:27:22 GMT (envelope-from rakuco) Date: Sun, 23 Sep 2012 18:27:22 GMT Message-Id: <201209231827.q8NIRMJJ059597@freefall.freebsd.org> To: janos.mohacsi@bsd.hu, rakuco@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rakuco@FreeBSD.org From: rakuco@FreeBSD.org Cc: Subject: Re: ports/171393: [PATCH] net-mgmt/nfsen: fix pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 18:27:23 -0000 Synopsis: [PATCH] net-mgmt/nfsen: fix pkg-plist Responsible-Changed-From-To: freebsd-ports-bugs->rakuco Responsible-Changed-By: rakuco Responsible-Changed-When: Sun Sep 23 18:27:22 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171393 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 18:31:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 34B7D106566C; Sun, 23 Sep 2012 18:31:34 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 092BB8FC08; Sun, 23 Sep 2012 18:31:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NIVXQb069301; Sun, 23 Sep 2012 18:31:33 GMT (envelope-from rakuco@freefall.freebsd.org) Received: (from rakuco@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NIVXNL069297; Sun, 23 Sep 2012 18:31:33 GMT (envelope-from rakuco) Date: Sun, 23 Sep 2012 18:31:33 GMT Message-Id: <201209231831.q8NIVXNL069297@freefall.freebsd.org> To: rakuco@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rakuco@FreeBSD.org From: rakuco@FreeBSD.org Cc: Subject: Re: ports/171266: [patch] fix build of audio/cam with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 18:31:34 -0000 Synopsis: [patch] fix build of audio/cam with clang Responsible-Changed-From-To: freebsd-ports-bugs->rakuco Responsible-Changed-By: rakuco Responsible-Changed-When: Sun Sep 23 18:31:33 UTC 2012 Responsible-Changed-Why: OK, thanks for the information. Will commit it now. http://www.freebsd.org/cgi/query-pr.cgi?pr=171266 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 19:05:54 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C70F106566B; Sun, 23 Sep 2012 19:05:54 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D4B428FC08; Sun, 23 Sep 2012 19:05:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NJ5rAQ095618; Sun, 23 Sep 2012 19:05:53 GMT (envelope-from rakuco@freefall.freebsd.org) Received: (from rakuco@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NJ5rmP095614; Sun, 23 Sep 2012 19:05:53 GMT (envelope-from rakuco) Date: Sun, 23 Sep 2012 19:05:53 GMT Message-Id: <201209231905.q8NJ5rmP095614@freefall.freebsd.org> To: rakuco@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rakuco@FreeBSD.org From: rakuco@FreeBSD.org Cc: Subject: Re: ports/171897: [PATCH] multimedia/playd update to v1.22.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 19:05:54 -0000 Synopsis: [PATCH] multimedia/playd update to v1.22.3 Responsible-Changed-From-To: freebsd-ports-bugs->rakuco Responsible-Changed-By: rakuco Responsible-Changed-When: Sun Sep 23 19:05:53 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171897 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 20:47:39 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC192106571C; Sun, 23 Sep 2012 20:47:38 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6491E8FC0C; Sun, 23 Sep 2012 20:47:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NKlctn086667; Sun, 23 Sep 2012 20:47:38 GMT (envelope-from jhale@freefall.freebsd.org) Received: (from jhale@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NKlcs0086663; Sun, 23 Sep 2012 20:47:38 GMT (envelope-from jhale) Date: Sun, 23 Sep 2012 20:47:38 GMT Message-Id: <201209232047.q8NKlcs0086663@freefall.freebsd.org> To: jhale@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jhale@FreeBSD.org From: jhale@FreeBSD.org Cc: Subject: Re: ports/171813: [PATCH] fix ffmpeg dependency in audio/sox X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 20:47:39 -0000 Synopsis: [PATCH] fix ffmpeg dependency in audio/sox Responsible-Changed-From-To: freebsd-ports-bugs->jhale Responsible-Changed-By: jhale Responsible-Changed-When: Sun Sep 23 20:47:37 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171813 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 21:30:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C7BA106566B; Sun, 23 Sep 2012 21:30:01 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5C12A8FC12; Sun, 23 Sep 2012 21:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NLU1AJ022130; Sun, 23 Sep 2012 21:30:01 GMT (envelope-from jhale@freefall.freebsd.org) Received: (from jhale@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NLU1Wd022126; Sun, 23 Sep 2012 21:30:01 GMT (envelope-from jhale) Date: Sun, 23 Sep 2012 21:30:01 GMT Message-Id: <201209232130.q8NLU1Wd022126@freefall.freebsd.org> To: jhale@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jhale@FreeBSD.org From: jhale@FreeBSD.org Cc: Subject: Re: ports/171333: [PATCH] Update devel/clanlib to latest version 2.3.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 21:30:01 -0000 Synopsis: [PATCH] Update devel/clanlib to latest version 2.3.6 Responsible-Changed-From-To: freebsd-ports-bugs->jhale Responsible-Changed-By: jhale Responsible-Changed-When: Sun Sep 23 21:30:00 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171333 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 21:30:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECDF01065673 for ; Sun, 23 Sep 2012 21:30:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C16CB8FC0C for ; Sun, 23 Sep 2012 21:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NLUDIB022720 for ; Sun, 23 Sep 2012 21:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NLUD9s022714; Sun, 23 Sep 2012 21:30:13 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 21:30:13 GMT Resent-Message-Id: <201209232130.q8NLUD9s022714@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tom Russo Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E88BC106564A for ; Sun, 23 Sep 2012 21:22:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id D43958FC15 for ; Sun, 23 Sep 2012 21:22:41 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NLMfHD089956 for ; Sun, 23 Sep 2012 21:22:41 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8NLMf5Z089955; Sun, 23 Sep 2012 21:22:41 GMT (envelope-from nobody) Message-Id: <201209232122.q8NLMf5Z089955@red.freebsd.org> Date: Sun, 23 Sep 2012 21:22:41 GMT From: Tom Russo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171899: Openoffice 3.4.1 build failure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 21:30:14 -0000 >Number: 171899 >Category: ports >Synopsis: Openoffice 3.4.1 build failure >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 21:30:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Tom Russo >Release: FreeBSD 9.0 -stable >Organization: >Environment: FreeBSD bogodyn.org 9.0-STABLE FreeBSD 9.0-STABLE #0: Sun Jun 10 23:28:09 MDT 2012 root@bogotwo.local:/usr/obj/usr/src/sys/BOGODYN i386 >Description: Trying to portupgrade openoffice from 3.4.0_3 to 3.4.1, getting failure with the following output: .. cd /users/scratch/usr/ports/editors/openoffice-3/work/aoo-3.4.1/main/instsetoo_native/unxfbsdi.pro/URE/archive/install/en-US_inprogress_temp.11429; tar -cf - . | gzip > /users/scratch/usr/ports/editors/openoffice-3/work/aoo-3.4.1/main/instsetoo_native/unxfbsdi.pro/URE/archive/install/en-US_inprogress/Apache_OpenOffice_incubating-URE_3.4.1_FreeBSD_install-arc_en-US.tar.gz ... ------------------------------------ .. languages en-US ... .. analyzing files ... .. removing /users/scratch/usr/ports/editors/openoffice-3/work/aoo-3.4.1/main/instsetoo_native/unxfbsdi.pro/URE/archive/install/en-US_inprogress_temp.11429 ... .. cleaning the output tree ... .. removing directory /tmp/ooopackaging/i_114291348427558 ... .. checking log file /users/scratch/usr/ports/editors/openoffice-3/work/aoo-3.4.1/main/instsetoo_native/unxfbsdi.pro/URE/archive/logging/en-US/log_AOO341_en-US.log *********************************************************** Successful packaging process! *********************************************************** .. creating log file log_AOO341_en-US.log Sun Sep 23 13:12:42 2012 (00:04 min.) preparing 0 extension blobs for language en-US: preparing 0 bundled extensions for language en-US: ERROR: The following files could not be found: ERROR: File not found: fc_local.conf ERROR: File not found: Arimo-Bold.ttf ERROR: File not found: Arimo-BoldItalic.ttf ERROR: File not found: Arimo-Italic.ttf ERROR: File not found: Arimo-Regular.ttf ERROR: File not found: Cousine-Bold.ttf ERROR: File not found: Cousine-BoldItalic.ttf ERROR: File not found: Cousine-Italic.ttf ERROR: File not found: Cousine-Regular.ttf ERROR: File not found: GenBasB.ttf ERROR: File not found: GenBasBI.ttf ERROR: File not found: GenBasI.ttf ERROR: File not found: GenBasR.ttf ERROR: File not found: GenBkBasB.ttf ERROR: File not found: GenBkBasBI.ttf ERROR: File not found: GenBkBasI.ttf ERROR: File not found: GenBkBasR.ttf ERROR: File not found: SymbolNeu.ttf ERROR: File not found: Tinos-Bold.ttf ERROR: File not found: Tinos-BoldItalic.ttf ERROR: File not found: Tinos-Italic.ttf ERROR: File not found: Tinos-Regular.ttf .. cleaning the output tree ... .. removing directory /tmp/ooopackaging/i_114301348427558 ... ************************************************** ERROR: ERROR: Missing files in function: remove_Files_Without_Sourcedirectory ************************************************** ************************************************** ERROR: Saved logfile: /users/scratch/usr/ports/editors/openoffice-3/work/aoo-3.4.1/main/instsetoo_native/unxfbsdi.pro/OpenOffice/archive/logging/en-US/log_AOO341_en-US.log ************************************************** Sun Sep 23 13:12:42 2012 (00:04 min.) dmake: Error code 255, while making 'openoffice_en-US.archive' 1 module(s): instsetoo_native need(s) to be rebuilt Reason(s): ERROR: error 65280 occurred while making /users/scratch/usr/ports/editors/openoffice-3/work/aoo-3.4.1/main/instsetoo_native/util When you have fixed the errors in that module you can resume the build by running: build --from instsetoo_native *** [do-build] Error code 1 Stop in /usr/ports/editors/openoffice-3. *** [build] Error code 1 Stop in /usr/ports/editors/openoffice-3. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade20120923-22046-v2z7r6-0 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=apache-openoffice-3.4.0_3 UPGRADE_PORT_VER=3.4.0_3 make ** Fix the problem and try again. I'd attach the referenced log file log_AOO341_en-US.log, but it is too large. >How-To-Repeat: Try to build openoffice-3.4.1 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 21:40:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04E75106566B for ; Sun, 23 Sep 2012 21:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CCB198FC14 for ; Sun, 23 Sep 2012 21:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NLe7nW032884 for ; Sun, 23 Sep 2012 21:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NLe7vv032883; Sun, 23 Sep 2012 21:40:07 GMT (envelope-from gnats) Resent-Date: Sun, 23 Sep 2012 21:40:07 GMT Resent-Message-Id: <201209232140.q8NLe7vv032883@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Olli Hauer Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5CD47106566C for ; Sun, 23 Sep 2012 21:37:28 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4A1EA8FC08; Sun, 23 Sep 2012 21:37:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NLbSP8032830; Sun, 23 Sep 2012 21:37:28 GMT (envelope-from ohauer@freefall.freebsd.org) Received: (from ohauer@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NLbRp0032829; Sun, 23 Sep 2012 21:37:27 GMT (envelope-from ohauer) Message-Id: <201209232137.q8NLbRp0032829@freefall.freebsd.org> Date: Sun, 23 Sep 2012 21:37:27 GMT From: Olli Hauer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Jim Riggs Subject: ports/171900: [patch] www/mod_setenvifplus update to 0.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 21:40:08 -0000 >Number: 171900 >Category: ports >Synopsis: [patch] www/mod_setenvifplus update to 0.18 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Sep 23 21:40:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Olli Hauer >Release: >Organization: >Environment: 8.3-amd64 apache24 test-build >Description: During an exp-run I found ver 0.13 do not build with apache24 version 0.18 builds with apache22 and apache24. log: http://people.freebsd.org/~ohauer/logs/ap24-mod_setenvifplus-0.18.log >How-To-Repeat: >Fix: --- mod_setenvifplus.diff begins here --- Index: Makefile =================================================================== --- Makefile (revision 304725) +++ Makefile (working copy) @@ -1,16 +1,13 @@ -# New ports collection makefile for: mod_setenvifplus -# Date created: 2010-11-29 -# Whom: Jim Riggs -# +# Created by: Jim Riggs # $FreeBSD$ -# PORTNAME= mod_setenvifplus -PORTVERSION= 0.13 +PORTVERSION= 0.18 CATEGORIES= www MASTER_SITES= SF MASTER_SITE_SUBDIR= modsetenvifplus EXTRACT_SUFX= -src.tar.gz +DIST_SUBDIR= apache2 MAINTAINER= ports@christianserving.org COMMENT= Allows setting environment variables based on request attributes Index: distinfo =================================================================== --- distinfo (revision 304725) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (mod_setenvifplus-0.13-src.tar.gz) = b278ebcf12a71c9ef69efda91f6677d10020f6fe12531c4c5b2b28a8ba43632f -SIZE (mod_setenvifplus-0.13-src.tar.gz) = 25363 +SHA256 (apache2/mod_setenvifplus-0.18-src.tar.gz) = c91a2c3497b3a345b0716f04057fb709393d8fb4e5c4d5c7c30debb1067f817c +SIZE (apache2/mod_setenvifplus-0.18-src.tar.gz) = 21454 --- mod_setenvifplus.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 23 21:40:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1918106566C; Sun, 23 Sep 2012 21:40:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 74E678FC17; Sun, 23 Sep 2012 21:40:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8NLeIDS035217; Sun, 23 Sep 2012 21:40:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8NLeI3H035206; Sun, 23 Sep 2012 21:40:18 GMT (envelope-from edwin) Date: Sun, 23 Sep 2012 21:40:18 GMT Message-Id: <201209232140.q8NLeI3H035206@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, apache@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171900: [patch] www/mod_setenvifplus update to 0.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 21:40:18 -0000 Synopsis: [patch] www/mod_setenvifplus update to 0.18 Responsible-Changed-From-To: freebsd-ports-bugs->apache Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 23 21:40:17 UTC 2012 Responsible-Changed-Why: apache@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171900 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 00:00:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BAA68106566C for ; Mon, 24 Sep 2012 00:00:29 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8C4938FC0A for ; Mon, 24 Sep 2012 00:00:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O00TEN057761 for ; Mon, 24 Sep 2012 00:00:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O00Tsn057754; Mon, 24 Sep 2012 00:00:29 GMT (envelope-from gnats) Date: Mon, 24 Sep 2012 00:00:29 GMT Message-Id: <201209240000.q8O00Tsn057754@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jan Beich Cc: Subject: Re: ports/171896: ports/multimedia/libvdpau on 9.0-REL amd64 fails to configure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jan Beich List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 00:00:29 -0000 The following reply was made to PR ports/171896; it has been noted by GNATS. From: Jan Beich To: Kurt Jaeger Cc: bug-followup@FreeBSD.org Subject: Re: ports/171896: ports/multimedia/libvdpau on 9.0-REL amd64 fails to configure Date: Mon, 24 Sep 2012 07:54:07 +0800 Kurt Jaeger writes: > checking how to hardcode library paths into programs... immediate > ./configure: 14968: Syntax error: word unexpected (expecting ")") Can you check if it works with ports/171824 ? From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 00:20:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7CD11065744 for ; Mon, 24 Sep 2012 00:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AFC848FC1F for ; Mon, 24 Sep 2012 00:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O0K384081253 for ; Mon, 24 Sep 2012 00:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O0K3r5081252; Mon, 24 Sep 2012 00:20:03 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 00:20:03 GMT Resent-Message-Id: <201209240020.q8O0K3r5081252@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, clutton Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B39F6106567C for ; Mon, 24 Sep 2012 00:14:11 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9E9FB8FC1D for ; Mon, 24 Sep 2012 00:14:11 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O0EB3Y074815 for ; Mon, 24 Sep 2012 00:14:11 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8O0EA9R074814; Mon, 24 Sep 2012 00:14:10 GMT (envelope-from nobody) Message-Id: <201209240014.q8O0EA9R074814@red.freebsd.org> Date: Mon, 24 Sep 2012 00:14:10 GMT From: clutton To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171901: [MAINTAINER REPLACE AND PORT UPDATE] multimedia/ffmpegthumbnailer: Update to 2.0.8 add gnome scheme support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 00:20:04 -0000 >Number: 171901 >Category: ports >Synopsis: [MAINTAINER REPLACE AND PORT UPDATE] multimedia/ffmpegthumbnailer: Update to 2.0.8 add gnome scheme support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 00:20:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: clutton >Release: any >Organization: isgroup.com.ua >Environment: >Description: I sent patch to original maintainer and he offered me to take that port. So, I'm going ahead. >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/multimedia/ffmpegthumbnailer/Makefile b/multimedia/ffmpegthumbnailer/Makefile index 73ed727..91d9442 100644 --- a/multimedia/ffmpegthumbnailer/Makefile +++ b/multimedia/ffmpegthumbnailer/Makefile @@ -5,12 +5,11 @@ # $FreeBSD$ PORTNAME= ffmpegthumbnailer -PORTVERSION= 2.0.7 -PORTREVISION= 2 +PORTVERSION= 2.0.8 CATEGORIES= multimedia graphics MASTER_SITES= GOOGLE_CODE -MAINTAINER= dierk@blaxxtarz.de +MAINTAINER= mbsd@isgroup.com.ua COMMENT= Lightweight video thumbnailer that can be used by file managers LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ @@ -19,22 +18,32 @@ LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ CPPFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include LDFLAGS+= ${PTHREAD_LIBS} -L${LOCALBASE}/lib -CONFIGURE_ARGS= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig \ - --enable-gio +CONFIGURE_ARGS= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig --enable-gio GNU_CONFIGURE= yes USE_GMAKE= yes USE_GNOME= gnomehack pkgconfig _glib20 USE_LDCONFIG= yes -MAN1= ffmpegthumbnailer.1 +WANT_GNOME= yes + +OPTIONS_DEFINE= GNOME + +.include -SUB_FILES= pkg-message +.if ${PORT_OPTIONS:MGNOME} +PKGNAMESUFFIX+= -gnome +GCONF_SCHEMAS= ffmpegthumbnailer.schemas +.endif + +MAN1= ffmpegthumbnailer.1 post-install: cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE} install-pkgconfigDATA - ${MKDIR} ${DATADIR} - ${INSTALL_SCRIPT} ${FILESDIR}/bind-nautilus.sh ${DATADIR} - @${CAT} ${PKGMESSAGE} - -.include +.if ${PORT_OPTIONS:MGNOME} + ${INSTALL_DATA} ${FILESDIR}/${GCONF_SCHEMAS} ${LOCALBASE}/etc/gconf/schemas + @${SETENV} GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` \ + gconftool-2 --makefile-install-rule ${LOCALBASE}/etc/gconf/schemas/${GCONF_SCHEMAS} \ + > /dev/null +.endif +.include diff --git a/multimedia/ffmpegthumbnailer/distinfo b/multimedia/ffmpegthumbnailer/distinfo index 778322d..9deff7f 100644 --- a/multimedia/ffmpegthumbnailer/distinfo +++ b/multimedia/ffmpegthumbnailer/distinfo @@ -1,2 +1,2 @@ -SHA256 (ffmpegthumbnailer-2.0.7.tar.gz) = a71155339d17201a13fc3ebb649b0d00c7ab2d5a8880da071c8157a69c6f612b -SIZE (ffmpegthumbnailer-2.0.7.tar.gz) = 359864 +SHA256 (ffmpegthumbnailer-2.0.8.tar.gz) = 2c8bbefa838d38ea42fc8ac78258cda36865d974c991624b14cffdb92a3bc68b +SIZE (ffmpegthumbnailer-2.0.8.tar.gz) = 367186 diff --git a/multimedia/ffmpegthumbnailer/files/bind-nautilus.sh b/multimedia/ffmpegthumbnailer/files/bind-nautilus.sh index 327f5db..e69de29 100644 --- a/multimedia/ffmpegthumbnailer/files/bind-nautilus.sh +++ b/multimedia/ffmpegthumbnailer/files/bind-nautilus.sh @@ -1,16 +0,0 @@ -#!/bin/sh - -# Use this script to bind ffmpegthumbnailer to nautilus. - -type="application@x-extension-webm video/3gpp video/3gpp2 video@avi \ -video@flv video@mkv video@mp4 video@mpeg video@ogg video@quicktime video@webm \ -video@x-avi video@x-flv video@x-m4v video@x-matroska video@x-mkv video@x-mp4 \ -video@x-mpeg video@x-ms-asf video@x-ms-wmv video@x-ms-wvx video@x-msvideo \ -video@x-msvideo@avi video@x-theora@ogg video@x-theora@ogv video@x-webm" - -cmd="/usr/bin/ffmpegthumbnailer -s %s -i %i -o %o -f" - -for i in $type; do -gconftool-2 -s "/desktop/gnome/thumbnailers/$i/command" -t string "$cmd" -gconftool-2 -s "/desktop/gnome/thumbnailers/$i/enable" -t boolean "true" -done diff --git a/multimedia/ffmpegthumbnailer/files/pkg-message.in b/multimedia/ffmpegthumbnailer/files/pkg-message.in index bcf6cc1..e69de29 100644 --- a/multimedia/ffmpegthumbnailer/files/pkg-message.in +++ b/multimedia/ffmpegthumbnailer/files/pkg-message.in @@ -1,2 +0,0 @@ -Gnome users may bind ffmpegthumbnailer to nautilus using: -%%DATADIR%%/bind-nautilus.sh. diff --git a/multimedia/ffmpegthumbnailer/pkg-plist b/multimedia/ffmpegthumbnailer/pkg-plist index a4f5145..7f8e8fb 100644 --- a/multimedia/ffmpegthumbnailer/pkg-plist +++ b/multimedia/ffmpegthumbnailer/pkg-plist @@ -10,6 +10,4 @@ lib/libffmpegthumbnailer.la lib/libffmpegthumbnailer.so lib/libffmpegthumbnailer.so.4 libdata/pkgconfig/libffmpegthumbnailer.pc -%%DATADIR%%/bind-nautilus.sh @dirrm include/libffmpegthumbnailer -@dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 00:20:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 938021065679; Mon, 24 Sep 2012 00:20:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 668668FC0C; Mon, 24 Sep 2012 00:20:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O0KFlf083118; Mon, 24 Sep 2012 00:20:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O0KFqC083104; Mon, 24 Sep 2012 00:20:15 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 00:20:15 GMT Message-Id: <201209240020.q8O0KFqC083104@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171901: [MAINTAINER REPLACE AND PORT UPDATE] multimedia/ffmpegthumbnailer: Update to 2.0.8 add gnome scheme support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 00:20:15 -0000 Synopsis: [MAINTAINER REPLACE AND PORT UPDATE] multimedia/ffmpegthumbnailer: Update to 2.0.8 add gnome scheme support Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Mon Sep 24 00:20:14 UTC 2012 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171901 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 00:20:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2927810656B7; Mon, 24 Sep 2012 00:20:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EE6538FC1E; Mon, 24 Sep 2012 00:20:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O0KLVw084063; Mon, 24 Sep 2012 00:20:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O0KL9x084059; Mon, 24 Sep 2012 00:20:21 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 00:20:21 GMT Message-Id: <201209240020.q8O0KL9x084059@freefall.freebsd.org> To: mbsd@isgroup.com.ua, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171901: [MAINTAINER REPLACE AND PORT UPDATE] multimedia/ffmpegthumbnailer: Update to 2.0.8 add gnome scheme support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 00:20:22 -0000 Synopsis: [MAINTAINER REPLACE AND PORT UPDATE] multimedia/ffmpegthumbnailer: Update to 2.0.8 add gnome scheme support State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Sep 24 00:20:21 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171901 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 00:30:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7DFB6106566B for ; Mon, 24 Sep 2012 00:30:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 689408FC15 for ; Mon, 24 Sep 2012 00:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O0UFgf090109 for ; Mon, 24 Sep 2012 00:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O0UFgh090099; Mon, 24 Sep 2012 00:30:15 GMT (envelope-from gnats) Date: Mon, 24 Sep 2012 00:30:15 GMT Message-Id: <201209240030.q8O0UFgh090099@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/171901: [MAINTAINER REPLACE AND PORT UPDATE] multimedia/ffmpegthumbnailer: Update to 2.0.8 add gnome scheme support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 00:30:15 -0000 The following reply was made to PR ports/171901; it has been noted by GNATS. From: Edwin Groothuis To: dierk@blaxxtarz.de Cc: bug-followup@FreeBSD.org Subject: Re: ports/171901: [MAINTAINER REPLACE AND PORT UPDATE] multimedia/ffmpegthumbnailer: Update to 2.0.8 add gnome scheme support Date: Mon, 24 Sep 2012 00:20:18 UT Maintainer of multimedia/ffmpegthumbnailer, Please note that PR ports/171901 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171901 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 00:40:04 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D6E0106566C for ; Mon, 24 Sep 2012 00:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1735E8FC0A for ; Mon, 24 Sep 2012 00:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O0e3Kx000394 for ; Mon, 24 Sep 2012 00:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O0e307000393; Mon, 24 Sep 2012 00:40:03 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 00:40:03 GMT Resent-Message-Id: <201209240040.q8O0e307000393@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Seiji Ariga Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE8F1106566B for ; Mon, 24 Sep 2012 00:32:26 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BADD88FC08 for ; Mon, 24 Sep 2012 00:32:26 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O0WQlG008175 for ; Mon, 24 Sep 2012 00:32:26 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8O0WQ1U008174; Mon, 24 Sep 2012 00:32:26 GMT (envelope-from nobody) Message-Id: <201209240032.q8O0WQ1U008174@red.freebsd.org> Date: Mon, 24 Sep 2012 00:32:26 GMT From: Seiji Ariga To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171902: japanese/mozc-server does not need to depend on GNOME X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 00:40:04 -0000 >Number: 171902 >Category: ports >Synopsis: japanese/mozc-server does not need to depend on GNOME >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 00:40:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Seiji Ariga >Release: 9.0-STABLE FreeBSD 9.0-STABLE #0: Thu Jun 21 16:49:18 EDT 2012 >Organization: >Environment: >Description: Currently japanese/mozc-server depends on GNOME (glib and gtk), but it does not have to (especially when a user is not using X (i.e. using mozc-server only in console/ssh)). >How-To-Repeat: Compile japanese/mozc-server. >Fix: --- japanese/mozc-server/Makefile.orig 2012-09-24 09:19:55.000000000 +0900 +++ japanese/mozc-server/Makefile 2012-09-24 09:19:33.000000000 +0900 @@ -7,7 +7,7 @@ PORTNAME= mozc PORTVERSION= 1.6.1187.102 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= japanese MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PKGNAMEPREFIX?= ja- @@ -32,9 +32,7 @@ BUILD_MOZC_LIST?= mozc_server -.if ${BUILD_MOZC_LIST:Mmozc_server} == "mozc_server" -USE_GNOME+= glib20 gtk20 -.elif ${BUILD_MOZC_LIST:Mmozc_tool} == "mozc_tool" +.if ${BUILD_MOZC_LIST:Mmozc_tool} == "mozc_tool" USE_QT4+= gui dbus qmake_build moc_build uic_build rcc_build .elif ${BUILD_MOZC_LIST:Mibus_mozc} == "ibus_mozc" USE_GNOME+= glib20 gtk20 pygtk2 @@ -76,7 +74,13 @@ SSL_REINPLACE_STR+= -e "s,%%${V}%%,${${V}}," .endfor +.if ${BUILD_MOZC_LIST:Mmozc_server} == "mozc_server" || \ + ${BUILD_MOZC_LIST:Mmozc_tool} == "mozc_tool" || \ + ${BUILD_MOZC_LIST:Mmozc_el} == "mozc_el" +GYP_DEFINES="use_libprotobuf=1 enable_gtk_renderer=0" +.else GYP_DEFINES="use_libprotobuf=1" +.endif BUILD_CMD= ${SETENV} ${MAKE_ENV} ${GMAKE} BUILD_MOZC_CMD= cd ${BUILD_WRKSRC} && \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 00:40:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1393F106564A for ; Mon, 24 Sep 2012 00:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D88B28FC0C for ; Mon, 24 Sep 2012 00:40:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O0e68v000824 for ; Mon, 24 Sep 2012 00:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O0e6cX000818; Mon, 24 Sep 2012 00:40:06 GMT (envelope-from gnats) Date: Mon, 24 Sep 2012 00:40:06 GMT Message-Id: <201209240040.q8O0e6cX000818@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: paranormal Cc: Subject: Re: ports/171901: [MAINTAINER REPLACE AND PORT UPDATE] multimedia/ffmpegthumbnailer: Update to 2.0.8 add gnome scheme support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: paranormal List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 00:40:07 -0000 The following reply was made to PR ports/171901; it has been noted by GNATS. From: paranormal To: bug-followup@FreeBSD.org, mbsd@isgroup.com.ua Cc: Subject: Re: ports/171901: [MAINTAINER REPLACE AND PORT UPDATE] multimedia/ffmpegthumbnailer: Update to 2.0.8 add gnome scheme support Date: Mon, 24 Sep 2012 03:33:45 +0300 I'm not, but I'd like to be. From dierk@blaxxtarz.de > I'm sorry to say I'm not able to maintain this package anymore. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 00:40:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F35D1106564A; Mon, 24 Sep 2012 00:40:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C6B858FC0A; Mon, 24 Sep 2012 00:40:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O0eEPN002685; Mon, 24 Sep 2012 00:40:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O0eE8R002675; Mon, 24 Sep 2012 00:40:14 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 00:40:14 GMT Message-Id: <201209240040.q8O0eE8R002675@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, daichi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171902: japanese/mozc-server does not need to depend on GNOME X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 00:40:15 -0000 Synopsis: japanese/mozc-server does not need to depend on GNOME Responsible-Changed-From-To: freebsd-ports-bugs->daichi Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 24 00:40:14 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171902 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 02:20:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 71276106564A for ; Mon, 24 Sep 2012 02:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E4D588FC0C for ; Mon, 24 Sep 2012 02:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O2K2gE090211 for ; Mon, 24 Sep 2012 02:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O2K22X090210; Mon, 24 Sep 2012 02:20:02 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 02:20:02 GMT Resent-Message-Id: <201209240220.q8O2K22X090210@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Harlan Stenn Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1CA3D106564A for ; Mon, 24 Sep 2012 02:11:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 08AF08FC08 for ; Mon, 24 Sep 2012 02:11:31 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O2BUgS081783 for ; Mon, 24 Sep 2012 02:11:30 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8O2BUfh081782; Mon, 24 Sep 2012 02:11:30 GMT (envelope-from nobody) Message-Id: <201209240211.q8O2BUfh081782@red.freebsd.org> Date: Mon, 24 Sep 2012 02:11:30 GMT From: Harlan Stenn To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171903: Observium port should only provide dependencies X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 02:20:03 -0000 >Number: 171903 >Category: ports >Synopsis: Observium port should only provide dependencies >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 02:20:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Harlan Stenn >Release: FreeBSD 9 >Organization: NTP >Environment: >Description: The observium port is old and apparently sucks down an old source tarball. The observium folks are most adamant that one should not build snapshots of their code, but they also don't seem to think that manually dealing with dependencies is a big deal either. I recommend that the observium port be renamed to observium-deps (or something) and that it only make sure the necessary dependent packages are installed. >From this point, one should be able to either check out or upgrade observium from their SVN repo. >How-To-Repeat: Try and build the observium port, and you'll notice you cannot build the result with the instructions provided on the observium site. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 03:20:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C0521065670 for ; Mon, 24 Sep 2012 03:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 331118FC0A for ; Mon, 24 Sep 2012 03:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O3K3Xa044396 for ; Mon, 24 Sep 2012 03:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O3K3XW044391; Mon, 24 Sep 2012 03:20:03 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 03:20:03 GMT Resent-Message-Id: <201209240320.q8O3K3XW044391@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Bo-Yi Wu Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED9FE106566C for ; Mon, 24 Sep 2012 03:19:03 +0000 (UTC) (envelope-from appleboy@freebsd.ee.ccu.edu.tw) Received: from freebsd.ee.ccu.edu.tw (freebsd.ee.ccu.edu.tw [140.123.107.202]) by mx1.freebsd.org (Postfix) with ESMTP id 905D58FC08 for ; Mon, 24 Sep 2012 03:19:03 +0000 (UTC) Received: from freebsd.ee.ccu.edu.tw (localhost [127.0.0.1]) by freebsd.ee.ccu.edu.tw (8.14.3/8.14.3) with ESMTP id q8O32bTe003128; Mon, 24 Sep 2012 11:02:37 +0800 (CST) (envelope-from appleboy@freebsd.ee.ccu.edu.tw) Received: (from root@localhost) by freebsd.ee.ccu.edu.tw (8.14.3/8.14.3/Submit) id q8O32YBO003121; Mon, 24 Sep 2012 11:02:34 +0800 (CST) (envelope-from appleboy) Message-Id: <201209240302.q8O32YBO003121@freebsd.ee.ccu.edu.tw> Date: Mon, 24 Sep 2012 11:02:34 +0800 (CST) From: Bo-Yi Wu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: appleboy.tw@gmail.com Subject: ports/171904: [MAINTAINER] Update 3.0.10 to 3.0.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bo-Yi Wu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 03:20:03 -0000 >Number: 171904 >Category: ports >Synopsis: [MAINTAINER] Update 3.0.10 to 3.0.11 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 03:20:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Bo-Yi Wu >Release: FreeBSD 7.1-RELEASE-p13 i386 >Organization: >Environment: System: FreeBSD freebsd.ee.ccu.edu.tw 7.1-RELEASE-p13 FreeBSD 7.1-RELEASE-p13 #0: Mon Jul 12 17:44:51 UTC 2010 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: -Update 3.0.10 to 3.0.11 >How-To-Repeat: >Fix: --- phpbb3.patch begins here --- diff -ruN /usr/ports/www/phpbb3/Makefile phpbb3/Makefile --- /usr/ports/www/phpbb3/Makefile 2012-02-08 05:16:05.000000000 +0800 +++ phpbb3/Makefile 2012-09-24 10:42:35.000000000 +0800 @@ -6,10 +6,9 @@ # PORTNAME= phpbb -PORTVERSION= 3.0.10 +PORTVERSION= 3.0.11 CATEGORIES= www -MASTER_SITES= http://www.phpbb.com/files/release/ \ - http://d10xg45o6p6dbl.cloudfront.net/projects/p/phpbb/ +MASTER_SITES= https://www.phpbb.com/files/release/ DISTNAME= phpBB-${PORTVERSION} MAINTAINER= appleboy.tw@gmail.com diff -ruN /usr/ports/www/phpbb3/distinfo phpbb3/distinfo --- /usr/ports/www/phpbb3/distinfo 2012-02-08 05:16:05.000000000 +0800 +++ phpbb3/distinfo 2012-09-24 10:42:38.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (phpBB-3.0.10.tar.bz2) = 6060dde45558a786dfb8c3787996f8760426b30e3d07a1180c195229ccc6bc96 -SIZE (phpBB-3.0.10.tar.bz2) = 1576431 +SHA256 (phpBB-3.0.11.tar.bz2) = b8c40b8cad58a458442bf04cb2632e350a76e7fb688e2820f8afd92887e751f2 +SIZE (phpBB-3.0.11.tar.bz2) = 1589870 diff -ruN /usr/ports/www/phpbb3/pkg-plist phpbb3/pkg-plist --- /usr/ports/www/phpbb3/pkg-plist 2011-07-15 05:13:04.000000000 +0800 +++ phpbb3/pkg-plist 2012-09-24 10:53:48.000000000 +0800 @@ -44,7 +44,7 @@ %%PHPBBDIR%%/adm/images/innerbox_bg.gif %%PHPBBDIR%%/adm/images/no_avatar.gif %%PHPBBDIR%%/adm/images/no_image.png -%%PHPBBDIR%%/adm/images/phpbb_logo.gif +%%PHPBBDIR%%/adm/images/phpbb_logo.png %%PHPBBDIR%%/adm/images/progress_bar.gif %%PHPBBDIR%%/adm/images/spacer.gif %%PHPBBDIR%%/adm/images/toggle.gif --- phpbb3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 05:50:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 627FC1065670 for ; Mon, 24 Sep 2012 05:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 329778FC0A for ; Mon, 24 Sep 2012 05:50:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O5o5tF079920 for ; Mon, 24 Sep 2012 05:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O5o5ZI079913; Mon, 24 Sep 2012 05:50:05 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 05:50:05 GMT Resent-Message-Id: <201209240550.q8O5o5ZI079913@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, milki Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66A1A1065673 for ; Mon, 24 Sep 2012 05:40:59 +0000 (UTC) (envelope-from milki@cibo.ircmylife.com) Received: from cibo.ircmylife.com (unknown [IPv6:2607:f2f8:af08::2]) by mx1.freebsd.org (Postfix) with ESMTP id 05B248FC18 for ; Mon, 24 Sep 2012 05:40:58 +0000 (UTC) Received: from cibo.ircmylife.com (localhost [127.0.0.1]) by cibo.ircmylife.com (8.14.5/8.14.5) with ESMTP id q8O5etv8004477 for ; Sun, 23 Sep 2012 22:40:55 -0700 (PDT) (envelope-from milki@cibo.ircmylife.com) Received: (from milki@localhost) by cibo.ircmylife.com (8.14.5/8.14.5/Submit) id q8O5etbC004476; Sun, 23 Sep 2012 22:40:55 -0700 (PDT) (envelope-from milki) Message-Id: <201209240540.q8O5etbC004476@cibo.ircmylife.com> Date: Sun, 23 Sep 2012 22:40:55 -0700 (PDT) From: milki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/171905: [MAINTAINER] sysutils/password-store: update to 1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 05:50:05 -0000 >Number: 171905 >Category: ports >Synopsis: [MAINTAINER] sysutils/password-store: update to 1.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 05:50:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: milki >Release: FreeBSD 8.3-RELEASE-p3 amd64 >Organization: cibo >Environment: System: FreeBSD cibo.ircmylife.com 8.3-RELEASE-p3 FreeBSD 8.3-RELEASE-p3 #0: Tue Jun 12 00:39:29 UTC 2012 >Description: - Update to 1.4 - Patches updated Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- password-store-1.4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/password-store/Makefile ./Makefile --- /usr/ports/sysutils/password-store/Makefile 2012-09-16 19:37:38.000000000 -0700 +++ ./Makefile 2012-09-23 22:39:42.000000000 -0700 @@ -1,7 +1,7 @@ # $FreeBSD: ports/sysutils/password-store/Makefile,v 1.1 2012/09/17 02:37:38 swills Exp $ PORTNAME= password-store -PORTVERSION= 1.3.1 +PORTVERSION= 1.4 CATEGORIES= sysutils MASTER_SITES= http://git.zx2c4.com/password-store/snapshot/ EXTRACT_SUFX= .tar.xz @@ -17,7 +17,7 @@ OPTIONS_DEFINE= GIT XCLIP -GIT_DESC= Enable git backend +GIT_DESC= Enable git storage XCLIP_DESC= Enable xclip feature .include @@ -52,6 +52,7 @@ @${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/contrib/pass.bash-completion ${DATADIR}/ ${INSTALL_DATA} ${WRKSRC}/contrib/pass.zsh-completion ${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/contrib/pass.fish-completion ${DATADIR}/ ${INSTALL_DATA} ${WRKSRC}/man/pass.1 ${MANPREFIX}/man/man1/pass.1 MAN1= pass.1 @@ -60,7 +61,8 @@ PLIST_FILES= bin/pass \ libexec/pass \ share/password-store/pass.bash-completion \ - share/password-store/pass.zsh-completion + share/password-store/pass.zsh-completion \ + share/password-store/pass.fish-completion PLIST_DIRS= share/password-store .include diff -ruN --exclude=CVS /usr/ports/sysutils/password-store/distinfo ./distinfo --- /usr/ports/sysutils/password-store/distinfo 2012-09-16 19:37:38.000000000 -0700 +++ ./distinfo 2012-09-23 21:38:46.000000000 -0700 @@ -1,2 +1,2 @@ -SHA256 (password-store-1.3.1.tar.xz) = 351c0e2eb3315ca317026e73f7654a6351f2674000d9476b18c1525cbc5d732d -SIZE (password-store-1.3.1.tar.xz) = 14864 +SHA256 (password-store-1.4.tar.xz) = 2e94b0078abdf4673f3c22bde048776a3c12776b1bc98c22e8fb6e684b0b4a9e +SIZE (password-store-1.4.tar.xz) = 17968 diff -ruN --exclude=CVS /usr/ports/sysutils/password-store/files/linuxism+git+xclip.patch ./files/linuxism+git+xclip.patch --- /usr/ports/sysutils/password-store/files/linuxism+git+xclip.patch 2012-09-16 19:37:38.000000000 -0700 +++ ./files/linuxism+git+xclip.patch 2012-09-23 22:18:57.000000000 -0700 @@ -1,73 +1,162 @@ diff --git a/README b/README -index 52e23af..f24107f 100644 +index 47ed64b..6ebfd68 100644 --- README +++ README -@@ -14,8 +14,6 @@ Please see the man page for documentation and examples. - - Depends on: - - gpg2 +@@ -17,10 +17,6 @@ Depends on: + http://www.gnu.org/software/bash/ + - GnuPG2 + http://www.gnupg.org/ -- git +- http://www.git-scm.com/ -- xclip +- http://sourceforge.net/projects/xclip/ - pwgen + http://sourceforge.net/projects/pwgen/ - tree - - GNU getopt +diff --git a/contrib/pass.bash-completion b/contrib/pass.bash-completion +index ccffbfa..b9f86e4 100644 +--- contrib/pass.bash-completion ++++ contrib/pass.bash-completion +@@ -48,7 +48,7 @@ _pass() + { + COMPREPLY=() + local cur="${COMP_WORDS[COMP_CWORD]}" +- local commands="init ls show insert generate edit rm git help version" ++ local commands="init ls show insert generate edit rm help version" + if [[ $COMP_CWORD -gt 1 ]]; then + case "${COMP_WORDS[1]}" in + init) +@@ -59,7 +59,6 @@ _pass() + _pass_complete_entries + ;; + show|-*) +- COMPREPLY+=($(compgen -W "-c --clip" -- ${cur})) + _pass_complete_entries 1 + ;; + insert) +@@ -67,16 +66,13 @@ _pass() + _pass_complete_entries + ;; + generate) +- COMPREPLY+=($(compgen -W "-n --no-symbols -c --clip -f --force" -- ${cur})) ++ COMPREPLY+=($(compgen -W "-n --no-symbols -f --force" -- ${cur})) + _pass_complete_entries + ;; + rm|remove|delete) + COMPREPLY+=($(compgen -W "-r --recursive -f --force" -- ${cur})) + _pass_complete_entries + ;; +- git) +- COMPREPLY+=($(compgen -W "init push pull config log reflog" -- ${cur})) +- ;; + esac + else + COMPREPLY+=($(compgen -W "${commands}" -- ${cur})) +diff --git a/contrib/pass.fish-completion b/contrib/pass.fish-completion +index 7652d56..7d470b8 100644 +--- contrib/pass.fish-completion ++++ contrib/pass.fish-completion +@@ -76,7 +76,6 @@ complete -c $PROG -f -A -n '__fish_pass_uses_command insert' -a "(__fish_pass_pr + + complete -c $PROG -f -A -n '__fish_pass_needs_command' -a generate -d 'Command: generate new password' + complete -c $PROG -f -A -n '__fish_pass_uses_command generate' -s n -l no-symbols -d 'Do not use special symbols' +-complete -c $PROG -f -A -n '__fish_pass_uses_command generate' -s c -l clip -d 'Put the password in clipboard' + complete -c $PROG -f -A -n '__fish_pass_uses_command generate' -s f -l force -d 'Do not prompt before overwritting' + complete -c $PROG -f -A -n '__fish_pass_uses_command generate' -a "(__fish_pass_print_entry_dirs)" + +@@ -89,16 +88,7 @@ complete -c $PROG -f -A -n '__fish_pass_needs_command' -a edit -d 'Command: edit + complete -c $PROG -f -A -n '__fish_pass_uses_command edit' -a "(__fish_pass_print_entries)" + + complete -c $PROG -f -A -n '__fish_pass_needs_command' -a show -d 'Command: show existing password' +-complete -c $PROG -f -A -n '__fish_pass_uses_command show' -s c -l clip -d 'Put password in clipboard' + complete -c $PROG -f -A -n '__fish_pass_uses_command show' -a "(__fish_pass_print_entries)" + # When no command is given, `show` is defaulted. +-complete -c $PROG -f -A -n '__fish_pass_needs_command' -s c -l clip -d 'Put password in clipboard' + complete -c $PROG -f -A -n '__fish_pass_needs_command' -a "(__fish_pass_print_entries)" + complete -c $PROG -f -A -n '__fish_pass_uses_command -c' -a "(__fish_pass_print_entries)" +-complete -c $PROG -f -A -n '__fish_pass_uses_command --clip' -a "(__fish_pass_print_entries)" +- +-complete -c $PROG -f -A -n '__fish_pass_needs_command' -a git -d 'Command: execute a git command' +-complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'init' -d 'Initialize git repository' +-complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'push' -d 'Push changes to remote repo' +-complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'pull' -d 'Pull changes from remote repo' +-complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'log' -d 'View changelog' diff --git a/contrib/pass.zsh-completion b/contrib/pass.zsh-completion -index 5cf8808..f589b5e 100644 +index c6fe678..4783a60 100644 --- contrib/pass.zsh-completion +++ contrib/pass.zsh-completion -@@ -27,9 +27,6 @@ _pass () { - "generate[Generate a new password using pwgen]" \ - "edit[Edit a password with \$EDITOR]" \ - "rm[Remove the password]" \ -- "push[push the latest changes using git-push(1)]" \ -- "pull[pull the latest changes using git-pull(1)]" \ -- "git[Call git]" \ - "help[Help]" - _pass_cmd_show - fi -@@ -45,7 +42,6 @@ _pass_cmd_ls () { +@@ -39,8 +39,6 @@ _pass () { + _arguments : \ + "-n[don't include symbols in password]" \ + "--no-symbols[don't include symbols in password]" \ +- "-c[copy password to the clipboard]" \ +- "--clip[copy password to the clipboard]" + _pass_complete_entries_with_subdirs + ;; + rm) +@@ -51,18 +49,6 @@ _pass () { + "--recursive[recursively delete]" + _pass_complete_entries_with_subdirs + ;; +- git) +- local -a subcommands +- subcommands=( +- "init:Initialize git repository" +- "push:Push to remote repository" +- "pull:Pull from remote repository" +- "config:Show git config" +- "log:Show git log" +- "reflog:Show git reflog" +- ) +- _describe -t commands 'pass git' subcommands +- ;; + show|*) + _pass_cmd_show + ;; +@@ -77,7 +63,6 @@ _pass () { + "generate:Generate a new password using pwgen" + "edit:Edit a password with \$EDITOR" + "rm:Remove the password" +- "git:Call git on the password store" + "version:Output version information" + "help:Output help message" + ) +@@ -90,15 +75,12 @@ _pass () { + } _pass_cmd_show () { - _arguments : \ -- "-c[put it on the clipboard]" \ - '*::show:_get_stored_pwd' - #'::pass id:_files -W ~/.password-store -g "*.gpg(|.*)(-.)"' +- _arguments : \ +- "-c[put it on the clipboard]" \ +- "--clip[put it on the clipboard]" + _pass_complete_entries } -@@ -65,7 +61,6 @@ _pass_cmd_insert () { - _pass_cmd_generate () { - _arguments : \ - "-n[no symbols]" \ -- "-c[put password on the clipboard]" \ - '::show:_get_stored_pwd' + _pass_complete_entries_helper () { + local IFS=$'\n' + local prefix="${PASSWORD_STORE_DIR:-$HOME/.password-store}" +- _values -C 'passwords' $(find "$prefix" \( -name .git -o -name .gpg-id \) -prune -o $@ -print | sed -e "s#${prefix}.##" -e 's#\.gpg##' | sort) ++ _values -C 'passwords' $(find "$prefix" -name .gpg-id -prune -o $@ -print | sed -e "s#${prefix}.##" -e 's#\.gpg##' | sort) } -@@ -75,6 +70,6 @@ _pass_cmd_rm () { - } - - _get_stored_pwd () { -- compadd `find ~/.password-store \( -name .git -o -name .gpg-id \) -prune -o -type f -print | sed 's#.*\.password-store*.##'| sed 's#\.gpg##' | sort` -+ compadd `find ~/.password-store \( -name .gpg-id \) -prune -o -type f -print | sed 's#.*\.password-store*.##'| sed 's#\.gpg##' | sort` - - } + _pass_complete_entries_with_subdirs () { diff --git a/man/pass.1 b/man/pass.1 -index a124c32..8eeb49b 100644 +index 3ccfa67..2f16727 100644 --- man/pass.1 +++ man/pass.1 -@@ -34,13 +34,6 @@ or +@@ -33,13 +33,6 @@ or depending on the type of specifier in ARGS. Otherwise COMMAND must be one of the valid commands listed below. -Several of the commands below rely on or provide additional functionality if -the password store directory is also a git repository. If the password store -directory is a git repository, all password store modification commands will --cause a corresponding git commit. See the \fIEXAMPLES\fP section for an --extended description using \fBinit\fP and +-cause a corresponding git commit. See the \fIEXTENDED GIT EXAMPLE\fP section +-for a detailed description using \fBinit\fP and -.BR git (1). - The \fBinit\fP command must be run before other commands in order to initialize - the password store with the correct gpg key id. - -@@ -64,12 +57,8 @@ by using the + the password store with the correct gpg key id. Passwords are encrypting using + the gpg key set with \fBinit\fP. +@@ -68,12 +61,8 @@ by using the .BR tree (1) program. This command is alternatively named \fBlist\fP. .TP @@ -80,14 +169,14 @@ +\fBshow\fP \fIpass-name\fP +Decrypt and print a password named \fIpass-name\fP. .TP - \fBinsert\fP [ \fI--no-echo\fP, \fI-n\fP | \fI--multiline\fP, \fI-m\fP ] [ \fI--force\fP, \fI-f\fP ]\fIpass-name\fP + \fBinsert\fP [ \fI--no-echo\fP, \fI-n\fP | \fI--multiline\fP, \fI-m\fP ] [ \fI--force\fP, \fI-f\fP ] \fIpass-name\fP Insert a new password into the password store called \fIpass-name\fP. This will -@@ -88,33 +77,16 @@ ensure that temporary files are created in \fI/dev/shm\fP in order to avoid writ +@@ -92,15 +81,12 @@ ensure that temporary files are created in \fI/dev/shm\fP in order to avoid writ difficult-to-erase disk sectors. If \fI/dev/shm\fP is not accessible, fallback to - the ordinary \fBTMPDIR\fP location, and print a warning. + the ordinary \fITMPDIR\fP location, and print a warning. .TP --\fBgenerate\fP [ \fI--no-symbols\fP, \fI-n\fP ] [ \fI--clip\fP, \fI-c\fP ] \fIpass-name pass-length\fP -+\fBgenerate\fP [ \fI--no-symbols\fP, \fI-n\fP ] \fIpass-name pass-length\fP +-\fBgenerate\fP [ \fI--no-symbols\fP, \fI-n\fP ] [ \fI--clip\fP, \fI-c\fP ] [ \fI--force\fP, \fI-f\fP ] \fIpass-name pass-length\fP ++\fBgenerate\fP [ \fI--no-symbols\fP, \fI-n\fP ] [ \fI--force\fP, \fI-f\fP ] \fIpass-name pass-length\fP Generate a new password using .BR pwgen (1) of length \fIpass-length\fP and insert into \fIpass-name\fP. If \fI--no-symbols\fP or \fI-n\fP @@ -95,29 +184,26 @@ -If \fI--clip\fP or \fI-c\fP is specified, do not print the password but instead copy -it to the clipboard using -.BR xclip (1) --and then restore the clipboard after 45 seconds. +-and then restore the clipboard after 45 seconds. Prompt before overwriting an existing password, ++Prompt before overwriting an existing password, + unless \fI--force\fP or \fI-f\fP is specified. + .TP + \fBrm\fP [ \fI--recursive\fP, \fI-r\fP ] [ \fI--force\fP, \fI-f\fP ] \fIpass-name\fP +@@ -109,13 +95,6 @@ alternatively named \fBremove\fP or \fBdelete\fP. If \fI--recursive\fP or \fI-r\ + is specified, delete pass-name recursively if it is a directory. If \fI--force\fP + or \fI-f\fP is specified, do not interactively prompt before removal. .TP - \fBrm\fP \fIpass-name\fP - Remove the password named \fIpass-name\fP from the password store. This command is - alternatively named \fBremove\fP. - .TP --\fBpush\fP --If the password store is a git repository, push the latest changes using --.BR git-push (1). --.TP --\fBpull\fP --If the password store is a git repository, pull the latest changes using --.BR git-pull (1). --.TP -\fBgit\fP \fIgit-command-args\fP... -If the password store is a git repository, pass \fIgit-command-args\fP as arguments to -.BR git (1) --using the password store as the git repository. +-using the password store as the git repository. If \fIgit-command-args\fP is \fBinit\fP, +-in addition to initializing the git repository, add the current contents of the password +-store to the repository in an initial commit. -.TP \fBhelp\fP Show usage message. .TP -@@ -165,11 +137,6 @@ Show existing password +@@ -166,11 +145,6 @@ Show existing password .br sup3rh4x3rizmynam3 .TP @@ -129,7 +215,7 @@ Add password to store .B zx2c4@laptop ~ $ pass insert Business/cheese-whiz-factory .br -@@ -208,11 +175,6 @@ The generated password to Email/jasondonenfeld.com is: +@@ -209,10 +183,8 @@ The generated password to Email/jasondonenfeld.com is: .br YqFsMkBeO6di .TP @@ -137,41 +223,53 @@ -.B zx2c4@laptop ~ $ pass -c generate Email/jasondonenfeld.com 19 -.br -Copied Email/jasondonenfeld.com to clipboard. Will clear in 45 seconds. --.TP ++Generate new password ++.B zx2c4@laptop ~ $ pass generate Email/jasondonenfeld.com 19 + .TP Remove password from store .B zx2c4@laptop ~ $ pass remove Business/cheese-whiz-factory - .br -@@ -220,10 +182,8 @@ rm: remove regular file \[u2018]/home/zx2c4/.password-store/Business/cheese-whiz +@@ -221,99 +193,6 @@ rm: remove regular file \[u2018]/home/zx2c4/.password-store/Business/cheese-whiz .br removed \[u2018]/home/zx2c4/.password-store/Business/cheese-whiz-factory.gpg\[u2019] -.SH EXTENDED GIT EXAMPLE --Here, we initialize new password store, create a git repository, and then manipulate and sync passwords. Make note of the arguments to the first call of \fBpass push\fP; consult +-Here, we initialize new password store, create a git repository, and then manipulate and sync passwords. Make note of the arguments to the first call of \fBpass git push\fP; consult -.BR git-push (1) -for more information. -+.SH EXTENDED EXAMPLE -+Here, we initialize new password store, and then manipulate and sync passwords. - - .B zx2c4@laptop ~ $ pass init Jason@zx2c4.com - .br -@@ -231,12 +191,6 @@ mkdir: created directory \[u2018]/home/zx2c4/.password-store\[u2019] - .br - Password store initialized for Jason@zx2c4.com. - +- +-.B zx2c4@laptop ~ $ pass init Jason@zx2c4.com +-.br +-mkdir: created directory \[u2018]/home/zx2c4/.password-store\[u2019] +-.br +-Password store initialized for Jason@zx2c4.com. +- -.B zx2c4@laptop ~ $ pass git init -.br --Initialized empty Git repository in /home/zx2c4/.password-store/.git/ +-Initialized empty Git repository in /home/zx2c4/.password-store/.git/ +-.br +-[master (root-commit) 998c8fd] Added current contents of password store. +-.br +- 1 file changed, 1 insertion(+) +-.br +- create mode 100644 .gpg-id - -.B zx2c4@laptop ~ $ pass git remote add origin kexec.com:pass-store - - .B zx2c4@laptop ~ $ pass generate Amazon/amazonemail@email.com 21 - .br - mkdir: created directory \[u2018]/home/zx2c4/.password-store/Amazon\[u2019] -@@ -251,24 +205,6 @@ The generated password to Amazon/amazonemail@email.com is: - .br - <5m,_BrZY`antNDxKN<0A - --.B zx2c4@laptop ~ $ pass push -u --all +-.B zx2c4@laptop ~ $ pass generate Amazon/amazonemail@email.com 21 +-.br +-mkdir: created directory \[u2018]/home/zx2c4/.password-store/Amazon\[u2019] +-.br +-[master 30fdc1e] Added generated password for Amazon/amazonemail@email.com to store. +-.br +-1 file changed, 0 insertions(+), 0 deletions(-) +-.br +-create mode 100644 Amazon/amazonemail@email.com.gpg +-.br +-The generated password to Amazon/amazonemail@email.com is: +-.br +-<5m,_BrZY`antNDxKN<0A +- +-.B zx2c4@laptop ~ $ pass git push -u --all -.br -Counting objects: 4, done. -.br @@ -189,14 +287,31 @@ -.br -Branch master set up to track remote branch master from origin. - - .B zx2c4@laptop ~ $ pass insert Amazon/otheraccount@email.com - .br - Enter password for Amazon/otheraccount@email.com: som3r3a11yb1gp4ssw0rd!!88** -@@ -293,20 +229,6 @@ rm 'Amazon/amazonemail@email.com.gpg' - .br - delete mode 100644 Amazon/amazonemail@email.com.gpg - --.B zx2c4@laptop ~ $ pass push +-.B zx2c4@laptop ~ $ pass insert Amazon/otheraccount@email.com +-.br +-Enter password for Amazon/otheraccount@email.com: som3r3a11yb1gp4ssw0rd!!88** +-.br +-[master b9b6746] Added given password for Amazon/otheraccount@email.com to store. +-.br +-1 file changed, 0 insertions(+), 0 deletions(-) +-.br +-create mode 100644 Amazon/otheraccount@email.com.gpg +- +-.B zx2c4@laptop ~ $ pass rm Amazon/amazonemail@email.com +-.br +-rm: remove regular file \[u2018]/home/zx2c4/.password-store/Amazon/amazonemail@email.com.gpg\[u2019]? y +-.br +-removed \[u2018]/home/zx2c4/.password-store/Amazon/amazonemail@email.com.gpg\[u2019] +-.br +-rm 'Amazon/amazonemail@email.com.gpg' +-.br +-[master 288b379] Removed Amazon/amazonemail@email.com from store. +-.br +-1 file changed, 0 insertions(+), 0 deletions(-) +-.br +-delete mode 100644 Amazon/amazonemail@email.com.gpg +- +-.B zx2c4@laptop ~ $ pass git push -.br -Counting objects: 9, done. -.br @@ -213,7 +328,18 @@ .SH FILES .TP -@@ -320,8 +242,6 @@ be set using the \fBinit\fP command. +@@ -333,19 +212,12 @@ Overrides the default password storage directory. + .I PASSWORD_STORE_KEY + Overrides the default gpg key identification set by \fBinit\fP. + .TP +-.I PASSWORD_STORE_GIT +-Overrides the default root of the git repository, which is helpful if +-\fIPASSWORD_STORE_DIR\fP is temporarily set to a sub-directory of the default +-password store. +-.TP + .I EDITOR + The location of the text editor used by \fBedit\fP. + .SH SEE ALSO .BR gpg (1), .BR pwgen (1), @@ -223,31 +349,30 @@ .SH AUTHOR .B pass diff --git a/src/password-store.sh b/src/password-store.sh -index 1553e5b..103dfd1 100755 +index 503bac4..ecc4665 100755 --- src/password-store.sh +++ src/password-store.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/local/bin/bash - # (C) Copyright 2012 Jason A. Donenfeld . All Rights Reserved. - # This is released under the GPLv2+. Please see COPYING for more information. -@@ -7,11 +7,9 @@ umask 077 + # Copyright (C) 2012 Jason A. Donenfeld . All Rights Reserved. + # This file is licensed under the GPLv2+. Please see COPYING for more information. +@@ -7,12 +7,8 @@ umask 077 PREFIX="${PASSWORD_STORE_DIR:-$HOME/.password-store}" ID="$PREFIX/.gpg-id" --GIT="$PREFIX/.git" +-GIT_DIR="${PASSWORD_STORE_GIT:-$PREFIX}/.git" GPG_OPTS="--quiet --yes --batch" -- --export GIT_DIR="$GIT" --export GIT_WORK_TREE="$PREFIX" -+GETOPT=/usr/local/bin/getopt -+GPG=gpg2 +-export GIT_DIR +-export GIT_WORK_TREE="${PASSWORD_STORE_GIT:-$PREFIX}" +- version() { cat <<_EOF -@@ -34,27 +32,18 @@ Usage: - Initialize new password storage and use gpg-id for encryption. + |-----------------------| +@@ -35,24 +31,19 @@ Usage: + Optionally reencrypt existing passwords using new gpg-id. $program [ls] [subfolder] List passwords. - $program [show] [--clip,-c] pass-name @@ -261,31 +386,41 @@ before overwriting existing password unless forced. $program edit pass-name Insert a new password or edit an existing password using ${EDITOR:-vi}. -- $program generate [--no-symbols,-n] [--clip,-c] pass-name pass-length -+ $program generate [--no-symbols,-n] pass-name pass-length +- $program generate [--no-symbols,-n] [--clip,-c] [--force,-f] pass-name pass-length ++ $program generate [--no-symbols,-n] [--force,-f] pass-name pass-length Generate a new password of pass-length with optionally no symbols. - Optionally put it on the clipboard and clear board after 45 seconds. - $program rm pass-name - Remove existing password. -- $program push -- If the password store is a git repository, push the latest changes. -- $program pull -- If the password store is a git repository, pull the latest changes. + Prompt before overwriting existing password unless forced. + $program rm [--recursive,-r] [--force,-f] pass-name + Remove existing password or directory, optionally forcefully. - $program git git-command-args... - If the password store is a git repository, execute a git command - specified by git-command-args. $program help Show this text. $program version -@@ -63,32 +52,10 @@ _EOF +@@ -63,16 +54,10 @@ _EOF } - isCommand() { + is_command() { case "$1" in -- init|ls|list|show|insert|edit|generate|remove|rm|delete|push|pull|git|help|--help|version|--version) return 0 ;; +- init|ls|list|show|insert|edit|generate|remove|rm|delete|git|help|--help|version|--version) return 0 ;; + init|ls|list|show|insert|edit|generate|remove|rm|delete|help|--help|version|--version) return 0 ;; *) return 1 ;; esac } +-git_add_file() { +- [[ -d $GIT_DIR ]] || return +- git add "$1" || return +- [[ -n $(git status --porcelain "$1") ]] || return +- git commit -m "$2" +-} + yesno() { + read -p "$1 [y/N] " response + [[ $response == "y" || $response == "Y" ]] || exit 1 +@@ -80,49 +65,24 @@ yesno() { + # + # BEGIN Platform definable + # -clip() { - # This base64 business is a disgusting hack to deal with newline inconsistancies - # in shell. There must be a better way to deal with this, but because I'm a dolt, @@ -299,172 +434,165 @@ - if [[ $now != $(echo -n "$1" | base64) ]]; then - before="$now" - fi + - # It might be nice to programatically check to see if klipper exists, - # as well as checking for other common clipboard managers. But for now, -- # this works fine. Clipboard managers frequently write their history -- # out in plaintext, so we axe it here. -- qdbus org.kde.klipper /klipper org.kde.klipper.klipper.clearClipboardHistory >/dev/null 2>&1 +- # this works fine -- if qdbus isn't there or if klipper isn't running, +- # this essentially becomes a no-op. +- # +- # Clipboard managers frequently write their history out in plaintext, +- # so we axe it here: +- qdbus org.kde.klipper /klipper org.kde.klipper.klipper.clearClipboardHistory &>/dev/null +- - echo "$before" | base64 -d | xclip -selection clipboard - ) & disown - echo "Copied $2 to clipboard. Will clear in 45 seconds." -} - program="$(basename "$0")" - command="$1" - if isCommand "$command"; then -@@ -132,18 +99,10 @@ fi + tmpdir() { +- if [[ -d /dev/shm && -w /dev/shm && -x /dev/shm ]]; then +- tmp_dir="$(TMPDIR=/dev/shm mktemp -t "$template" -d)" ++ ramdisk="/var/tmp/password-store.ramdisk" ++ if [[ -d $ramdisk && -w $ramdisk && -x $ramdisk ]]; then ++ tmp_dir="$(TMPDIR=$ramdisk mktemp -t "$template" -d)" + else +- yesno "$(echo "Your system does not have /dev/shm, which means that it may" +- echo "be difficult to entirely erase the temporary non-encrypted" +- echo "password file after editing. Are you sure you would like to" +- echo -n "continue?")" ++ yesno "$(echo "A ramdisk does not exist at $ramdisk, which means that it may" ++ echo "be difficult to entirely erase the temporary non-encrypted" ++ echo "password file after editing. Are you sure you would like to" ++ echo -n "continue?")" ++ + tmp_dir="$(mktemp -t "$template" -d)" + fi +- + } +-GPG="gpg" +-GETOPT="getopt" + +-# source /path/to/platform-defined-functions ++GPG="gpg2" ++GETOPT="/usr/local/bin/getopt" ++ + # + # END Platform definable + # +@@ -156,14 +116,12 @@ case "$command" in + mkdir -v -p "$PREFIX" + echo "$gpg_id" > "$ID" + echo "Password store initialized for $gpg_id." +- git_add_file "$ID" "Set GPG id to $gpg_id." + + if [[ $reencrypt -eq 1 ]]; then + find "$PREFIX" -iname '*.gpg' | while read passfile; do + $GPG -d $GPG_OPTS "$passfile" | $GPG -e -r "$gpg_id" -o "$passfile.new" $GPG_OPTS && + mv -v "$passfile.new" "$passfile" + done +- git_add_file "$PREFIX" "Reencrypted entire store using new GPG id $gpg_id." + fi + exit 0 + ;; +@@ -192,18 +150,8 @@ fi case "$command" in show|ls|list) - clip=0 - -- opts="$(getopt -o c -l clip -n $program -- "$@")" - err=$? +- opts="$($GETOPT -o c -l clip -n "$program" -- "$@")" +- err=$? - eval set -- "$opts" - while true; do case $1 in - -c|--clip) clip=1; shift ;; - --) shift; break ;; - esac done - +- if [[ $err -ne 0 ]]; then - echo "Usage: $program $command [--clip,-c] [pass-name]" + echo "Usage: $program $command [pass-name]" exit 1 fi -@@ -161,11 +120,7 @@ case "$command" in +@@ -221,11 +169,7 @@ case "$command" in echo "$path is not in the password store." exit 1 fi -- if [ $clip -eq 0 ]; then -- exec gpg -q -d --yes --batch "$passfile" +- if [[ $clip -eq 0 ]]; then +- exec $GPG -d $GPG_OPTS "$passfile" - else -- clip "$(gpg -q -d --yes --batch "$passfile" | head -n 1)" "$path" +- clip "$($GPG -d $GPG_OPTS "$passfile" | head -n 1)" "$path" - fi -+ exec $GPG -q -d --yes --batch "$passfile" ++ exec $GPG -d $GPG_OPTS "$passfile" fi ;; insert) -@@ -173,7 +128,7 @@ case "$command" in - noecho=0 - force=0 - -- opts="$(getopt -o mnf -l multiline,no-echo,force -n $program -- "$@")" -+ opts="$($GETOPT -o mnf -l multiline,no-echo,force -n $program -- "$@")" - err=$? - eval set -- "$opts" - while true; do case $1 in -@@ -201,7 +156,7 @@ case "$command" in - if [[ $ml -eq 1 ]]; then - echo "Enter contents of $path and press Ctrl+D when finished:" - echo -- cat | gpg -e -r "$ID" -o "$passfile" $GPG_OPTS -+ cat | $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS - elif [[ $noecho -eq 1 ]]; then - while true; do - read -p "Enter password for $path: " -s password -@@ -209,7 +164,7 @@ case "$command" in - read -p "Retype password for $path: " -s password_again - echo - if [[ $password == $password_again ]]; then -- gpg -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" -+ $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" - break - else - echo "Error: the entered passwords do not match." -@@ -217,11 +172,7 @@ case "$command" in - done - else +@@ -275,7 +219,6 @@ case "$command" in read -p "Enter password for $path: " -e password -- gpg -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" -- fi -- if [[ -d $GIT ]]; then -- git add "$passfile" -- git commit -m "Added given password for $path to store." -+ $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" + $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" fi +- git_add_file "$passfile" "Added given password for $path to store." ;; edit) -@@ -252,35 +203,28 @@ case "$command" in - - action="Added" - if [[ -f $passfile ]]; then -- gpg -d -o "$tmp_file" $GPG_OPTS "$passfile" || exit 1 -+ $GPG -d -o "$tmp_file" $GPG_OPTS "$passfile" || exit 1 - action="Edited" - fi - ${EDITOR:-vi} "$tmp_file" -- while ! gpg -e -r "$ID" -o "$passfile" $GPG_OPTS "$tmp_file"; do -+ while ! $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS "$tmp_file"; do + if [[ $# -ne 1 ]]; then +@@ -303,25 +246,22 @@ case "$command" in echo "GPG encryption failed. Retrying." sleep 1 done -- -- if [[ -d $GIT ]]; then -- git add "$passfile" -- git commit -m "$action password for $path using ${EDITOR:-vi}." -- fi +- git_add_file "$passfile" "$action password for $path using ${EDITOR:-vi}." ;; generate) - clip=0 + force=0 symbols="-y" -- opts="$(getopt -o nc -l no-symbols,clip -n $program -- "$@")" -+ opts="$($GETOPT -o nc -l no-symbols -n $program -- "$@")" +- opts="$($GETOPT -o ncf -l no-symbols,clip,force -n "$program" -- "$@")" ++ opts="$($GETOPT -o ncf -l no-symbols,force -n "$program" -- "$@")" err=$? eval set -- "$opts" while true; do case $1 in -n|--no-symbols) symbols=""; shift ;; - -c|--clip) clip=1; shift ;; + -f|--force) force=1; shift ;; --) shift; break ;; esac done if [[ $err -ne 0 || $# -ne 2 ]]; then -- echo "Usage: $program $command [--no-symbols,-n] [--clip,-c] pass-name pass-length" -+ echo "Usage: $program $command [--no-symbols,-n] pass-name pass-length" +- echo "Usage: $program $command [--no-symbols,-n] [--clip,-c] [--force,-f] pass-name pass-length" ++ echo "Usage: $program $command [--no-symbols,-n] [--force,-f] pass-name pass-length" exit 1 fi path="$1" -@@ -292,18 +236,9 @@ case "$command" in - mkdir -p -v "$PREFIX/$(dirname "$path")" +@@ -338,14 +278,9 @@ case "$command" in pass="$(pwgen -s $symbols $length 1)" - passfile="$PREFIX/$path.gpg" -- gpg -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$pass" -- if [[ -d $GIT ]]; then -- git add "$passfile" -- git commit -m "Added generated password for $path to store." -- fi -- -- if [ $clip -eq 0 ]; then + [[ -n $pass ]] || exit 1 + $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$pass" +- git_add_file "$passfile" "Added generated password for $path to store." + +- if [[ $clip -eq 0 ]]; then - echo "The generated password to $path is:" - echo "$pass" - else - clip "$pass" "$path" - fi -+ $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$pass" + echo "The generated password to $path is:" + echo "$pass" ;; delete|rm|remove) - if [[ $# -ne 1 ]]; then -@@ -317,26 +252,6 @@ case "$command" in - exit 1 - fi - rm -i -v "$passfile" -- if [[ -d $GIT ]] && ! [[ -f $passfile ]]; then -- git rm -f "$passfile" + recursive="" +@@ -377,21 +312,6 @@ case "$command" in + [[ $force -eq 1 ]] || yesno "Are you sure you would like to delete $path?" + + rm $recursive -f -v "$passfile" +- if [[ -d $GIT_DIR && ! -e $passfile ]]; then +- git rm -qr "$passfile" - git commit -m "Removed $path from store." - fi - ;; -- push|pull) -- if [[ -d $GIT ]]; then -- exec git $command "$@" -- else -- echo "Error: the password store is not a git repository." -- exit 1 -- fi -- ;; - git) -- if [[ $1 == "init" ]] || [[ -d $GIT ]]; then +- if [[ $1 == "init" ]]; then +- git "$@" || exit 1 +- git_add_file "$PREFIX" "Added current contents of password store." +- elif [[ -d $GIT_DIR ]]; then - exec git "$@" - else - echo "Error: the password store is not a git repository." diff -ruN --exclude=CVS /usr/ports/sysutils/password-store/files/linuxism+git.patch ./files/linuxism+git.patch --- /usr/ports/sysutils/password-store/files/linuxism+git.patch 2012-09-16 19:37:38.000000000 -0700 +++ ./files/linuxism+git.patch 2012-09-23 21:36:37.000000000 -0700 @@ -1,106 +1,167 @@ diff --git a/README b/README -index 52e23af..273aa27 100644 +index 47ed64b..65a041e 100644 --- README +++ README -@@ -14,7 +14,6 @@ Please see the man page for documentation and examples. - - Depends on: - - gpg2 +@@ -17,8 +17,6 @@ Depends on: + http://www.gnu.org/software/bash/ + - GnuPG2 + http://www.gnupg.org/ -- git +- http://www.git-scm.com/ - xclip + http://sourceforge.net/projects/xclip/ - pwgen - - tree +diff --git a/contrib/pass.bash-completion b/contrib/pass.bash-completion +index ccffbfa..aa7e7d8 100644 +--- contrib/pass.bash-completion ++++ contrib/pass.bash-completion +@@ -48,7 +48,7 @@ _pass() + { + COMPREPLY=() + local cur="${COMP_WORDS[COMP_CWORD]}" +- local commands="init ls show insert generate edit rm git help version" ++ local commands="init ls show insert generate edit rm help version" + if [[ $COMP_CWORD -gt 1 ]]; then + case "${COMP_WORDS[1]}" in + init) +@@ -74,9 +74,6 @@ _pass() + COMPREPLY+=($(compgen -W "-r --recursive -f --force" -- ${cur})) + _pass_complete_entries + ;; +- git) +- COMPREPLY+=($(compgen -W "init push pull config log reflog" -- ${cur})) +- ;; + esac + else + COMPREPLY+=($(compgen -W "${commands}" -- ${cur})) +diff --git a/contrib/pass.fish-completion b/contrib/pass.fish-completion +index 7652d56..086e7ee 100644 +--- contrib/pass.fish-completion ++++ contrib/pass.fish-completion +@@ -96,9 +96,3 @@ complete -c $PROG -f -A -n '__fish_pass_needs_command' -s c -l clip -d 'Put pass + complete -c $PROG -f -A -n '__fish_pass_needs_command' -a "(__fish_pass_print_entries)" + complete -c $PROG -f -A -n '__fish_pass_uses_command -c' -a "(__fish_pass_print_entries)" + complete -c $PROG -f -A -n '__fish_pass_uses_command --clip' -a "(__fish_pass_print_entries)" +- +-complete -c $PROG -f -A -n '__fish_pass_needs_command' -a git -d 'Command: execute a git command' +-complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'init' -d 'Initialize git repository' +-complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'push' -d 'Push changes to remote repo' +-complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'pull' -d 'Pull changes from remote repo' +-complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'log' -d 'View changelog' diff --git a/contrib/pass.zsh-completion b/contrib/pass.zsh-completion -index 5cf8808..cab22e0 100644 +index c6fe678..9fe974d 100644 --- contrib/pass.zsh-completion +++ contrib/pass.zsh-completion -@@ -27,9 +27,6 @@ _pass () { - "generate[Generate a new password using pwgen]" \ - "edit[Edit a password with \$EDITOR]" \ - "rm[Remove the password]" \ -- "push[push the latest changes using git-push(1)]" \ -- "pull[pull the latest changes using git-pull(1)]" \ -- "git[Call git]" \ - "help[Help]" - _pass_cmd_show - fi -@@ -75,6 +72,6 @@ _pass_cmd_rm () { +@@ -51,18 +51,6 @@ _pass () { + "--recursive[recursively delete]" + _pass_complete_entries_with_subdirs + ;; +- git) +- local -a subcommands +- subcommands=( +- "init:Initialize git repository" +- "push:Push to remote repository" +- "pull:Pull from remote repository" +- "config:Show git config" +- "log:Show git log" +- "reflog:Show git reflog" +- ) +- _describe -t commands 'pass git' subcommands +- ;; + show|*) + _pass_cmd_show + ;; +@@ -77,7 +65,6 @@ _pass () { + "generate:Generate a new password using pwgen" + "edit:Edit a password with \$EDITOR" + "rm:Remove the password" +- "git:Call git on the password store" + "version:Output version information" + "help:Output help message" + ) +@@ -98,7 +85,7 @@ _pass_cmd_show () { + _pass_complete_entries_helper () { + local IFS=$'\n' + local prefix="${PASSWORD_STORE_DIR:-$HOME/.password-store}" +- _values -C 'passwords' $(find "$prefix" \( -name .git -o -name .gpg-id \) -prune -o $@ -print | sed -e "s#${prefix}.##" -e 's#\.gpg##' | sort) ++ _values -C 'passwords' $(find "$prefix" -name .gpg-id -prune -o $@ -print | sed -e "s#${prefix}.##" -e 's#\.gpg##' | sort) } - _get_stored_pwd () { -- compadd `find ~/.password-store \( -name .git -o -name .gpg-id \) -prune -o -type f -print | sed 's#.*\.password-store*.##'| sed 's#\.gpg##' | sort` -+ compadd `find ~/.password-store \( -name .gpg-id \) -prune -o -type f -print | sed 's#.*\.password-store*.##'| sed 's#\.gpg##' | sort` - - } + _pass_complete_entries_with_subdirs () { diff --git a/man/pass.1 b/man/pass.1 -index a124c32..c2ff884 100644 +index 3ccfa67..2ea765b 100644 --- man/pass.1 +++ man/pass.1 -@@ -34,13 +34,6 @@ or +@@ -33,13 +33,6 @@ or depending on the type of specifier in ARGS. Otherwise COMMAND must be one of the valid commands listed below. -Several of the commands below rely on or provide additional functionality if -the password store directory is also a git repository. If the password store -directory is a git repository, all password store modification commands will --cause a corresponding git commit. See the \fIEXAMPLES\fP section for an --extended description using \fBinit\fP and +-cause a corresponding git commit. See the \fIEXTENDED GIT EXAMPLE\fP section +-for a detailed description using \fBinit\fP and -.BR git (1). - The \fBinit\fP command must be run before other commands in order to initialize - the password store with the correct gpg key id. - -@@ -102,19 +95,6 @@ and then restore the clipboard after 45 seconds. - Remove the password named \fIpass-name\fP from the password store. This command is - alternatively named \fBremove\fP. + the password store with the correct gpg key id. Passwords are encrypting using + the gpg key set with \fBinit\fP. +@@ -109,13 +102,6 @@ alternatively named \fBremove\fP or \fBdelete\fP. If \fI--recursive\fP or \fI-r\ + is specified, delete pass-name recursively if it is a directory. If \fI--force\fP + or \fI-f\fP is specified, do not interactively prompt before removal. .TP --\fBpush\fP --If the password store is a git repository, push the latest changes using --.BR git-push (1). --.TP --\fBpull\fP --If the password store is a git repository, pull the latest changes using --.BR git-pull (1). --.TP -\fBgit\fP \fIgit-command-args\fP... -If the password store is a git repository, pass \fIgit-command-args\fP as arguments to -.BR git (1) --using the password store as the git repository. +-using the password store as the git repository. If \fIgit-command-args\fP is \fBinit\fP, +-in addition to initializing the git repository, add the current contents of the password +-store to the repository in an initial commit. -.TP \fBhelp\fP Show usage message. .TP -@@ -220,10 +200,8 @@ rm: remove regular file \[u2018]/home/zx2c4/.password-store/Business/cheese-whiz +@@ -221,99 +207,6 @@ rm: remove regular file \[u2018]/home/zx2c4/.password-store/Business/cheese-whiz .br removed \[u2018]/home/zx2c4/.password-store/Business/cheese-whiz-factory.gpg\[u2019] -.SH EXTENDED GIT EXAMPLE --Here, we initialize new password store, create a git repository, and then manipulate and sync passwords. Make note of the arguments to the first call of \fBpass push\fP; consult +-Here, we initialize new password store, create a git repository, and then manipulate and sync passwords. Make note of the arguments to the first call of \fBpass git push\fP; consult -.BR git-push (1) -for more information. -+.SH EXTENDED EXAMPLE -+Here, we initialize new password store, and then manipulate and sync passwords. - - .B zx2c4@laptop ~ $ pass init Jason@zx2c4.com - .br -@@ -231,12 +209,6 @@ mkdir: created directory \[u2018]/home/zx2c4/.password-store\[u2019] - .br - Password store initialized for Jason@zx2c4.com. - +- +-.B zx2c4@laptop ~ $ pass init Jason@zx2c4.com +-.br +-mkdir: created directory \[u2018]/home/zx2c4/.password-store\[u2019] +-.br +-Password store initialized for Jason@zx2c4.com. +- -.B zx2c4@laptop ~ $ pass git init -.br --Initialized empty Git repository in /home/zx2c4/.password-store/.git/ +-Initialized empty Git repository in /home/zx2c4/.password-store/.git/ +-.br +-[master (root-commit) 998c8fd] Added current contents of password store. +-.br +- 1 file changed, 1 insertion(+) +-.br +- create mode 100644 .gpg-id - -.B zx2c4@laptop ~ $ pass git remote add origin kexec.com:pass-store - - .B zx2c4@laptop ~ $ pass generate Amazon/amazonemail@email.com 21 - .br - mkdir: created directory \[u2018]/home/zx2c4/.password-store/Amazon\[u2019] -@@ -251,24 +223,6 @@ The generated password to Amazon/amazonemail@email.com is: - .br - <5m,_BrZY`antNDxKN<0A - --.B zx2c4@laptop ~ $ pass push -u --all +-.B zx2c4@laptop ~ $ pass generate Amazon/amazonemail@email.com 21 +-.br +-mkdir: created directory \[u2018]/home/zx2c4/.password-store/Amazon\[u2019] +-.br +-[master 30fdc1e] Added generated password for Amazon/amazonemail@email.com to store. +-.br +-1 file changed, 0 insertions(+), 0 deletions(-) +-.br +-create mode 100644 Amazon/amazonemail@email.com.gpg +-.br +-The generated password to Amazon/amazonemail@email.com is: +-.br +-<5m,_BrZY`antNDxKN<0A +- +-.B zx2c4@laptop ~ $ pass git push -u --all -.br -Counting objects: 4, done. -.br @@ -118,14 +179,31 @@ -.br -Branch master set up to track remote branch master from origin. - - .B zx2c4@laptop ~ $ pass insert Amazon/otheraccount@email.com - .br - Enter password for Amazon/otheraccount@email.com: som3r3a11yb1gp4ssw0rd!!88** -@@ -293,20 +247,6 @@ rm 'Amazon/amazonemail@email.com.gpg' - .br - delete mode 100644 Amazon/amazonemail@email.com.gpg - --.B zx2c4@laptop ~ $ pass push +-.B zx2c4@laptop ~ $ pass insert Amazon/otheraccount@email.com +-.br +-Enter password for Amazon/otheraccount@email.com: som3r3a11yb1gp4ssw0rd!!88** +-.br +-[master b9b6746] Added given password for Amazon/otheraccount@email.com to store. +-.br +-1 file changed, 0 insertions(+), 0 deletions(-) +-.br +-create mode 100644 Amazon/otheraccount@email.com.gpg +- +-.B zx2c4@laptop ~ $ pass rm Amazon/amazonemail@email.com +-.br +-rm: remove regular file \[u2018]/home/zx2c4/.password-store/Amazon/amazonemail@email.com.gpg\[u2019]? y +-.br +-removed \[u2018]/home/zx2c4/.password-store/Amazon/amazonemail@email.com.gpg\[u2019] +-.br +-rm 'Amazon/amazonemail@email.com.gpg' +-.br +-[master 288b379] Removed Amazon/amazonemail@email.com from store. +-.br +-1 file changed, 0 insertions(+), 0 deletions(-) +-.br +-delete mode 100644 Amazon/amazonemail@email.com.gpg +- +-.B zx2c4@laptop ~ $ pass git push -.br -Counting objects: 9, done. -.br @@ -142,7 +220,18 @@ .SH FILES .TP -@@ -320,7 +260,6 @@ be set using the \fBinit\fP command. +@@ -333,18 +226,12 @@ Overrides the default password storage directory. + .I PASSWORD_STORE_KEY + Overrides the default gpg key identification set by \fBinit\fP. + .TP +-.I PASSWORD_STORE_GIT +-Overrides the default root of the git repository, which is helpful if +-\fIPASSWORD_STORE_DIR\fP is temporarily set to a sub-directory of the default +-password store. +-.TP + .I EDITOR + The location of the text editor used by \fBedit\fP. + .SH SEE ALSO .BR gpg (1), .BR pwgen (1), @@ -151,203 +240,144 @@ .SH AUTHOR diff --git a/src/password-store.sh b/src/password-store.sh -index 1553e5b..6844dc4 100755 +index 503bac4..3c4ad4b 100755 --- src/password-store.sh +++ src/password-store.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/local/bin/bash - # (C) Copyright 2012 Jason A. Donenfeld . All Rights Reserved. - # This is released under the GPLv2+. Please see COPYING for more information. -@@ -7,11 +7,11 @@ umask 077 + # Copyright (C) 2012 Jason A. Donenfeld . All Rights Reserved. + # This file is licensed under the GPLv2+. Please see COPYING for more information. +@@ -7,12 +7,8 @@ umask 077 PREFIX="${PASSWORD_STORE_DIR:-$HOME/.password-store}" ID="$PREFIX/.gpg-id" --GIT="$PREFIX/.git" +-GIT_DIR="${PASSWORD_STORE_GIT:-$PREFIX}/.git" GPG_OPTS="--quiet --yes --batch" -- --export GIT_DIR="$GIT" --export GIT_WORK_TREE="$PREFIX" -+GETOPT=/usr/local/bin/getopt -+GPG=gpg2 -+XCLIP=xclip -+BASE64=base64 +-export GIT_DIR +-export GIT_WORK_TREE="${PASSWORD_STORE_GIT:-$PREFIX}" +- version() { cat <<_EOF -@@ -48,13 +48,6 @@ Usage: - Optionally put it on the clipboard and clear board after 45 seconds. - $program rm pass-name - Remove existing password. -- $program push -- If the password store is a git repository, push the latest changes. -- $program pull -- If the password store is a git repository, pull the latest changes. + |-----------------------| +@@ -50,9 +46,6 @@ Usage: + Prompt before overwriting existing password unless forced. + $program rm [--recursive,-r] [--force,-f] pass-name + Remove existing password or directory, optionally forcefully. - $program git git-command-args... - If the password store is a git repository, execute a git command - specified by git-command-args. $program help Show this text. $program version -@@ -63,7 +56,7 @@ _EOF +@@ -63,16 +56,10 @@ _EOF } - isCommand() { + is_command() { case "$1" in -- init|ls|list|show|insert|edit|generate|remove|rm|delete|push|pull|git|help|--help|version|--version) return 0 ;; +- init|ls|list|show|insert|edit|generate|remove|rm|delete|git|help|--help|version|--version) return 0 ;; + init|ls|list|show|insert|edit|generate|remove|rm|delete|help|--help|version|--version) return 0 ;; *) return 1 ;; esac } -@@ -72,12 +65,12 @@ clip() { - # in shell. There must be a better way to deal with this, but because I'm a dolt, - # we're going with this for now. - -- before="$(xclip -o -selection clipboard | base64)" -- echo -n "$1" | xclip -selection clipboard -+ before="$($XCLIP -o -selection clipboard | $BASE64)" -+ echo -n "$1" | $XCLIP -selection clipboard - ( - sleep 45 -- now="$(xclip -o -selection clipboard | base64)" -- if [[ $now != $(echo -n "$1" | base64) ]]; then -+ now="$($XCLIP -o -selection clipboard | $BASE64)" -+ if [[ $now != $(echo -n "$1" | $BASE64) ]]; then - before="$now" - fi - # It might be nice to programatically check to see if klipper exists, -@@ -85,7 +78,7 @@ clip() { - # this works fine. Clipboard managers frequently write their history - # out in plaintext, so we axe it here. - qdbus org.kde.klipper /klipper org.kde.klipper.klipper.clearClipboardHistory >/dev/null 2>&1 -- echo "$before" | base64 -d | xclip -selection clipboard -+ echo "$before" | $BASE64 -d | $XCLIP -selection clipboard +-git_add_file() { +- [[ -d $GIT_DIR ]] || return +- git add "$1" || return +- [[ -n $(git status --porcelain "$1") ]] || return +- git commit -m "$2" +-} + yesno() { + read -p "$1 [y/N] " response + [[ $response == "y" || $response == "Y" ]] || exit 1 +@@ -107,22 +94,24 @@ clip() { ) & disown echo "Copied $2 to clipboard. Will clear in 45 seconds." } -@@ -134,7 +127,7 @@ case "$command" in - show|ls|list) - clip=0 ++ + tmpdir() { +- if [[ -d /dev/shm && -w /dev/shm && -x /dev/shm ]]; then +- tmp_dir="$(TMPDIR=/dev/shm mktemp -t "$template" -d)" ++ ramdisk="/var/tmp/password-store.ramdisk" ++ if [[ -d $ramdisk && -w $ramdisk && -x $ramdisk ]]; then ++ tmp_dir="$(TMPDIR=$ramdisk mktemp -t "$template" -d)" + else +- yesno "$(echo "Your system does not have /dev/shm, which means that it may" +- echo "be difficult to entirely erase the temporary non-encrypted" +- echo "password file after editing. Are you sure you would like to" +- echo -n "continue?")" ++ yesno "$(echo "A ramdisk does not exist at $ramdisk, which means that it may" ++ echo "be difficult to entirely erase the temporary non-encrypted" ++ echo "password file after editing. Are you sure you would like to" ++ echo -n "continue?")" ++ + tmp_dir="$(mktemp -t "$template" -d)" + fi +- + } +-GPG="gpg" +-GETOPT="getopt" -- opts="$(getopt -o c -l clip -n $program -- "$@")" -+ opts="$($GETOPT -o c -l clip -n $program -- "$@")" - err=$? - eval set -- "$opts" - while true; do case $1 in -@@ -162,9 +155,9 @@ case "$command" in - exit 1 - fi - if [ $clip -eq 0 ]; then -- exec gpg -q -d --yes --batch "$passfile" -+ exec $GPG -q -d --yes --batch "$passfile" - else -- clip "$(gpg -q -d --yes --batch "$passfile" | head -n 1)" "$path" -+ clip "$($GPG -q -d --yes --batch "$passfile" | head -n 1)" "$path" - fi +-# source /path/to/platform-defined-functions ++GPG="gpg2" ++GETOPT="/usr/local/bin/getopt" ++ + # + # END Platform definable + # +@@ -156,14 +145,12 @@ case "$command" in + mkdir -v -p "$PREFIX" + echo "$gpg_id" > "$ID" + echo "Password store initialized for $gpg_id." +- git_add_file "$ID" "Set GPG id to $gpg_id." + + if [[ $reencrypt -eq 1 ]]; then + find "$PREFIX" -iname '*.gpg' | while read passfile; do + $GPG -d $GPG_OPTS "$passfile" | $GPG -e -r "$gpg_id" -o "$passfile.new" $GPG_OPTS && + mv -v "$passfile.new" "$passfile" + done +- git_add_file "$PREFIX" "Reencrypted entire store using new GPG id $gpg_id." fi + exit 0 ;; -@@ -173,7 +166,7 @@ case "$command" in - noecho=0 - force=0 - -- opts="$(getopt -o mnf -l multiline,no-echo,force -n $program -- "$@")" -+ opts="$($GETOPT -o mnf -l multiline,no-echo,force -n $program -- "$@")" - err=$? - eval set -- "$opts" - while true; do case $1 in -@@ -201,7 +194,7 @@ case "$command" in - if [[ $ml -eq 1 ]]; then - echo "Enter contents of $path and press Ctrl+D when finished:" - echo -- cat | gpg -e -r "$ID" -o "$passfile" $GPG_OPTS -+ cat | $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS - elif [[ $noecho -eq 1 ]]; then - while true; do - read -p "Enter password for $path: " -s password -@@ -209,7 +202,7 @@ case "$command" in - read -p "Retype password for $path: " -s password_again - echo - if [[ $password == $password_again ]]; then -- gpg -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" -+ $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" - break - else - echo "Error: the entered passwords do not match." -@@ -217,11 +210,7 @@ case "$command" in - done - else +@@ -275,7 +262,6 @@ case "$command" in read -p "Enter password for $path: " -e password -- gpg -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" -- fi -- if [[ -d $GIT ]]; then -- git add "$passfile" -- git commit -m "Added given password for $path to store." -+ $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" + $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" fi +- git_add_file "$passfile" "Added given password for $path to store." ;; edit) -@@ -252,25 +241,20 @@ case "$command" in - - action="Added" - if [[ -f $passfile ]]; then -- gpg -d -o "$tmp_file" $GPG_OPTS "$passfile" || exit 1 -+ $GPG -d -o "$tmp_file" $GPG_OPTS "$passfile" || exit 1 - action="Edited" - fi - ${EDITOR:-vi} "$tmp_file" -- while ! gpg -e -r "$ID" -o "$passfile" $GPG_OPTS "$tmp_file"; do -+ while ! $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS "$tmp_file"; do + if [[ $# -ne 1 ]]; then +@@ -303,7 +289,6 @@ case "$command" in echo "GPG encryption failed. Retrying." sleep 1 done -- -- if [[ -d $GIT ]]; then -- git add "$passfile" -- git commit -m "$action password for $path using ${EDITOR:-vi}." -- fi +- git_add_file "$passfile" "$action password for $path using ${EDITOR:-vi}." ;; generate) clip=0 - symbols="-y" - -- opts="$(getopt -o nc -l no-symbols,clip -n $program -- "$@")" -+ opts="$($GETOPT -o nc -l no-symbols,clip -n $program -- "$@")" - err=$? - eval set -- "$opts" - while true; do case $1 in -@@ -292,12 +276,7 @@ case "$command" in - mkdir -p -v "$PREFIX/$(dirname "$path")" +@@ -338,7 +323,6 @@ case "$command" in pass="$(pwgen -s $symbols $length 1)" - passfile="$PREFIX/$path.gpg" -- gpg -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$pass" -- if [[ -d $GIT ]]; then -- git add "$passfile" -- git commit -m "Added generated password for $path to store." -- fi -- -+ $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$pass" - if [ $clip -eq 0 ]; then + [[ -n $pass ]] || exit 1 + $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$pass" +- git_add_file "$passfile" "Added generated password for $path to store." + + if [[ $clip -eq 0 ]]; then echo "The generated password to $path is:" - echo "$pass" -@@ -317,26 +296,6 @@ case "$command" in - exit 1 - fi - rm -i -v "$passfile" -- if [[ -d $GIT ]] && ! [[ -f $passfile ]]; then -- git rm -f "$passfile" +@@ -377,21 +361,6 @@ case "$command" in + [[ $force -eq 1 ]] || yesno "Are you sure you would like to delete $path?" + + rm $recursive -f -v "$passfile" +- if [[ -d $GIT_DIR && ! -e $passfile ]]; then +- git rm -qr "$passfile" - git commit -m "Removed $path from store." - fi - ;; -- push|pull) -- if [[ -d $GIT ]]; then -- exec git $command "$@" -- else -- echo "Error: the password store is not a git repository." -- exit 1 -- fi -- ;; - git) -- if [[ $1 == "init" ]] || [[ -d $GIT ]]; then +- if [[ $1 == "init" ]]; then +- git "$@" || exit 1 +- git_add_file "$PREFIX" "Added current contents of password store." +- elif [[ -d $GIT_DIR ]]; then - exec git "$@" - else - echo "Error: the password store is not a git repository." diff -ruN --exclude=CVS /usr/ports/sysutils/password-store/files/linuxism+xclip.patch ./files/linuxism+xclip.patch --- /usr/ports/sysutils/password-store/files/linuxism+xclip.patch 2012-09-16 19:37:38.000000000 -0700 +++ ./files/linuxism+xclip.patch 2012-09-23 21:46:05.000000000 -0700 @@ -1,40 +1,91 @@ diff --git a/README b/README -index 52e23af..ce7c745 100644 +index 47ed64b..496c37f 100644 --- README +++ README -@@ -15,7 +15,6 @@ Please see the man page for documentation and examples. - Depends on: - - gpg2 +@@ -19,8 +19,6 @@ Depends on: + http://www.gnupg.org/ - git + http://www.git-scm.com/ -- xclip +- http://sourceforge.net/projects/xclip/ - pwgen + http://sourceforge.net/projects/pwgen/ - tree - - GNU getopt +diff --git a/contrib/pass.bash-completion b/contrib/pass.bash-completion +index ccffbfa..2c2afc0 100644 +--- contrib/pass.bash-completion ++++ contrib/pass.bash-completion +@@ -59,7 +59,6 @@ _pass() + _pass_complete_entries + ;; + show|-*) +- COMPREPLY+=($(compgen -W "-c --clip" -- ${cur})) + _pass_complete_entries 1 + ;; + insert) +@@ -67,7 +66,7 @@ _pass() + _pass_complete_entries + ;; + generate) +- COMPREPLY+=($(compgen -W "-n --no-symbols -c --clip -f --force" -- ${cur})) ++ COMPREPLY+=($(compgen -W "-n --no-symbols -f --force" -- ${cur})) + _pass_complete_entries + ;; + rm|remove|delete) +diff --git a/contrib/pass.fish-completion b/contrib/pass.fish-completion +index 7652d56..5c180e2 100644 +--- contrib/pass.fish-completion ++++ contrib/pass.fish-completion +@@ -76,7 +76,6 @@ complete -c $PROG -f -A -n '__fish_pass_uses_command insert' -a "(__fish_pass_pr + + complete -c $PROG -f -A -n '__fish_pass_needs_command' -a generate -d 'Command: generate new password' + complete -c $PROG -f -A -n '__fish_pass_uses_command generate' -s n -l no-symbols -d 'Do not use special symbols' +-complete -c $PROG -f -A -n '__fish_pass_uses_command generate' -s c -l clip -d 'Put the password in clipboard' + complete -c $PROG -f -A -n '__fish_pass_uses_command generate' -s f -l force -d 'Do not prompt before overwritting' + complete -c $PROG -f -A -n '__fish_pass_uses_command generate' -a "(__fish_pass_print_entry_dirs)" + +@@ -89,13 +88,10 @@ complete -c $PROG -f -A -n '__fish_pass_needs_command' -a edit -d 'Command: edit + complete -c $PROG -f -A -n '__fish_pass_uses_command edit' -a "(__fish_pass_print_entries)" + + complete -c $PROG -f -A -n '__fish_pass_needs_command' -a show -d 'Command: show existing password' +-complete -c $PROG -f -A -n '__fish_pass_uses_command show' -s c -l clip -d 'Put password in clipboard' + complete -c $PROG -f -A -n '__fish_pass_uses_command show' -a "(__fish_pass_print_entries)" + # When no command is given, `show` is defaulted. +-complete -c $PROG -f -A -n '__fish_pass_needs_command' -s c -l clip -d 'Put password in clipboard' + complete -c $PROG -f -A -n '__fish_pass_needs_command' -a "(__fish_pass_print_entries)" + complete -c $PROG -f -A -n '__fish_pass_uses_command -c' -a "(__fish_pass_print_entries)" +-complete -c $PROG -f -A -n '__fish_pass_uses_command --clip' -a "(__fish_pass_print_entries)" + + complete -c $PROG -f -A -n '__fish_pass_needs_command' -a git -d 'Command: execute a git command' + complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'init' -d 'Initialize git repository' diff --git a/contrib/pass.zsh-completion b/contrib/pass.zsh-completion -index 5cf8808..5e1c3ac 100644 +index c6fe678..a01bb2b 100644 --- contrib/pass.zsh-completion +++ contrib/pass.zsh-completion -@@ -45,7 +45,6 @@ _pass_cmd_ls () { +@@ -39,8 +39,6 @@ _pass () { + _arguments : \ + "-n[don't include symbols in password]" \ + "--no-symbols[don't include symbols in password]" \ +- "-c[copy password to the clipboard]" \ +- "--clip[copy password to the clipboard]" + _pass_complete_entries_with_subdirs + ;; + rm) +@@ -90,9 +88,6 @@ _pass () { + } _pass_cmd_show () { - _arguments : \ -- "-c[put it on the clipboard]" \ - '*::show:_get_stored_pwd' - #'::pass id:_files -W ~/.password-store -g "*.gpg(|.*)(-.)"' - } -@@ -65,7 +64,6 @@ _pass_cmd_insert () { - _pass_cmd_generate () { - _arguments : \ - "-n[no symbols]" \ -- "-c[put password on the clipboard]" \ - '::show:_get_stored_pwd' +- _arguments : \ +- "-c[put it on the clipboard]" \ +- "--clip[put it on the clipboard]" + _pass_complete_entries } - + _pass_complete_entries_helper () { diff --git a/man/pass.1 b/man/pass.1 -index a124c32..7df6551 100644 +index 3ccfa67..c0aa018 100644 --- man/pass.1 +++ man/pass.1 -@@ -64,12 +64,8 @@ by using the +@@ -68,12 +68,8 @@ by using the .BR tree (1) program. This command is alternatively named \fBlist\fP. .TP @@ -47,14 +98,14 @@ +\fBshow\fP \fIpass-name\fP +Decrypt and print a password named \fIpass-name\fP. .TP - \fBinsert\fP [ \fI--no-echo\fP, \fI-n\fP | \fI--multiline\fP, \fI-m\fP ] [ \fI--force\fP, \fI-f\fP ]\fIpass-name\fP + \fBinsert\fP [ \fI--no-echo\fP, \fI-n\fP | \fI--multiline\fP, \fI-m\fP ] [ \fI--force\fP, \fI-f\fP ] \fIpass-name\fP Insert a new password into the password store called \fIpass-name\fP. This will -@@ -88,15 +84,11 @@ ensure that temporary files are created in \fI/dev/shm\fP in order to avoid writ +@@ -92,15 +88,12 @@ ensure that temporary files are created in \fI/dev/shm\fP in order to avoid writ difficult-to-erase disk sectors. If \fI/dev/shm\fP is not accessible, fallback to - the ordinary \fBTMPDIR\fP location, and print a warning. + the ordinary \fITMPDIR\fP location, and print a warning. .TP --\fBgenerate\fP [ \fI--no-symbols\fP, \fI-n\fP ] [ \fI--clip\fP, \fI-c\fP ] \fIpass-name pass-length\fP -+\fBgenerate\fP [ \fI--no-symbols\fP, \fI-n\fP ] \fIpass-name pass-length\fP +-\fBgenerate\fP [ \fI--no-symbols\fP, \fI-n\fP ] [ \fI--clip\fP, \fI-c\fP ] [ \fI--force\fP, \fI-f\fP ] \fIpass-name pass-length\fP ++\fBgenerate\fP [ \fI--no-symbols\fP, \fI-n\fP ] [ \fI--force\fP, \fI-f\fP ] \fIpass-name pass-length\fP Generate a new password using .BR pwgen (1) of length \fIpass-length\fP and insert into \fIpass-name\fP. If \fI--no-symbols\fP or \fI-n\fP @@ -62,11 +113,12 @@ -If \fI--clip\fP or \fI-c\fP is specified, do not print the password but instead copy -it to the clipboard using -.BR xclip (1) --and then restore the clipboard after 45 seconds. +-and then restore the clipboard after 45 seconds. Prompt before overwriting an existing password, ++Prompt before overwriting an existing password, + unless \fI--force\fP or \fI-f\fP is specified. .TP - \fBrm\fP \fIpass-name\fP - Remove the password named \fIpass-name\fP from the password store. This command is -@@ -165,11 +157,6 @@ Show existing password + \fBrm\fP [ \fI--recursive\fP, \fI-r\fP ] [ \fI--force\fP, \fI-f\fP ] \fIpass-name\fP +@@ -166,11 +159,6 @@ Show existing password .br sup3rh4x3rizmynam3 .TP @@ -78,7 +130,7 @@ Add password to store .B zx2c4@laptop ~ $ pass insert Business/cheese-whiz-factory .br -@@ -208,11 +195,6 @@ The generated password to Email/jasondonenfeld.com is: +@@ -209,10 +197,8 @@ The generated password to Email/jasondonenfeld.com is: .br YqFsMkBeO6di .TP @@ -86,11 +138,12 @@ -.B zx2c4@laptop ~ $ pass -c generate Email/jasondonenfeld.com 19 -.br -Copied Email/jasondonenfeld.com to clipboard. Will clear in 45 seconds. --.TP ++Generate new password ++.B zx2c4@laptop ~ $ pass generate Email/jasondonenfeld.com 19 + .TP Remove password from store .B zx2c4@laptop ~ $ pass remove Business/cheese-whiz-factory - .br -@@ -321,7 +303,6 @@ be set using the \fBinit\fP command. +@@ -345,7 +331,6 @@ The location of the text editor used by \fBedit\fP. .BR gpg (1), .BR pwgen (1), .BR git (1), @@ -99,33 +152,17 @@ .SH AUTHOR .B pass diff --git a/src/password-store.sh b/src/password-store.sh -index 1553e5b..43e095e 100755 +index 503bac4..5264fb4 100755 --- src/password-store.sh +++ src/password-store.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/local/bin/bash - # (C) Copyright 2012 Jason A. Donenfeld . All Rights Reserved. - # This is released under the GPLv2+. Please see COPYING for more information. -@@ -7,10 +7,13 @@ umask 077 - - PREFIX="${PASSWORD_STORE_DIR:-$HOME/.password-store}" - ID="$PREFIX/.gpg-id" --GIT="$PREFIX/.git" -+GITDIR="$PREFIX/.git" - GPG_OPTS="--quiet --yes --batch" -+GETOPT=/usr/local/bin/getopt -+GPG=gpg2 -+GIT=git - --export GIT_DIR="$GIT" -+export GIT_DIR="$GITDIR" - export GIT_WORK_TREE="$PREFIX" - - version() { -@@ -34,18 +37,16 @@ Usage: - Initialize new password storage and use gpg-id for encryption. + # Copyright (C) 2012 Jason A. Donenfeld . All Rights Reserved. + # This file is licensed under the GPLv2+. Please see COPYING for more information. +@@ -35,18 +35,16 @@ Usage: + Optionally reencrypt existing passwords using new gpg-id. $program [ls] [subfolder] List passwords. - $program [show] [--clip,-c] pass-name @@ -139,17 +176,17 @@ before overwriting existing password unless forced. $program edit pass-name Insert a new password or edit an existing password using ${EDITOR:-vi}. -- $program generate [--no-symbols,-n] [--clip,-c] pass-name pass-length -+ $program generate [--no-symbols,-n] pass-name pass-length +- $program generate [--no-symbols,-n] [--clip,-c] [--force,-f] pass-name pass-length ++ $program generate [--no-symbols,-n] [--force,-f] pass-name pass-length Generate a new password of pass-length with optionally no symbols. - Optionally put it on the clipboard and clear board after 45 seconds. - $program rm pass-name - Remove existing password. - $program push -@@ -67,28 +68,6 @@ isCommand() { - *) return 1 ;; - esac - } + Prompt before overwriting existing password unless forced. + $program rm [--recursive,-r] [--force,-f] pass-name + Remove existing password or directory, optionally forcefully. +@@ -80,49 +78,24 @@ yesno() { + # + # BEGIN Platform definable + # -clip() { - # This base64 business is a disgusting hack to deal with newline inconsistancies - # in shell. There must be a better way to deal with this, but because I'm a dolt, @@ -163,212 +200,120 @@ - if [[ $now != $(echo -n "$1" | base64) ]]; then - before="$now" - fi + - # It might be nice to programatically check to see if klipper exists, - # as well as checking for other common clipboard managers. But for now, -- # this works fine. Clipboard managers frequently write their history -- # out in plaintext, so we axe it here. -- qdbus org.kde.klipper /klipper org.kde.klipper.klipper.clearClipboardHistory >/dev/null 2>&1 +- # this works fine -- if qdbus isn't there or if klipper isn't running, +- # this essentially becomes a no-op. +- # +- # Clipboard managers frequently write their history out in plaintext, +- # so we axe it here: +- qdbus org.kde.klipper /klipper org.kde.klipper.klipper.clearClipboardHistory &>/dev/null +- - echo "$before" | base64 -d | xclip -selection clipboard - ) & disown - echo "Copied $2 to clipboard. Will clear in 45 seconds." -} - program="$(basename "$0")" - command="$1" - if isCommand "$command"; then -@@ -132,18 +111,10 @@ fi + tmpdir() { +- if [[ -d /dev/shm && -w /dev/shm && -x /dev/shm ]]; then +- tmp_dir="$(TMPDIR=/dev/shm mktemp -t "$template" -d)" ++ ramdisk="/var/tmp/password-store.ramdisk" ++ if [[ -d $ramdisk && -w $ramdisk && -x $ramdisk ]]; then ++ tmp_dir="$(TMPDIR=$ramdisk mktemp -t "$template" -d)" + else +- yesno "$(echo "Your system does not have /dev/shm, which means that it may" +- echo "be difficult to entirely erase the temporary non-encrypted" +- echo "password file after editing. Are you sure you would like to" +- echo -n "continue?")" ++ yesno "$(echo "A ramdisk does not exist at $ramdisk, which means that it may" ++ echo "be difficult to entirely erase the temporary non-encrypted" ++ echo "password file after editing. Are you sure you would like to" ++ echo -n "continue?")" ++ + tmp_dir="$(mktemp -t "$template" -d)" + fi +- + } +-GPG="gpg" +-GETOPT="getopt" + +-# source /path/to/platform-defined-functions ++GPG="gpg2" ++GETOPT="/usr/local/bin/getopt" ++ + # + # END Platform definable + # +@@ -192,18 +165,8 @@ fi case "$command" in show|ls|list) - clip=0 - -- opts="$(getopt -o c -l clip -n $program -- "$@")" - err=$? +- opts="$($GETOPT -o c -l clip -n "$program" -- "$@")" +- err=$? - eval set -- "$opts" - while true; do case $1 in - -c|--clip) clip=1; shift ;; - --) shift; break ;; - esac done - +- if [[ $err -ne 0 ]]; then - echo "Usage: $program $command [--clip,-c] [pass-name]" + echo "Usage: $program $command [pass-name]" exit 1 fi -@@ -161,11 +132,7 @@ case "$command" in +@@ -221,11 +184,7 @@ case "$command" in echo "$path is not in the password store." exit 1 fi -- if [ $clip -eq 0 ]; then -- exec gpg -q -d --yes --batch "$passfile" +- if [[ $clip -eq 0 ]]; then +- exec $GPG -d $GPG_OPTS "$passfile" - else -- clip "$(gpg -q -d --yes --batch "$passfile" | head -n 1)" "$path" +- clip "$($GPG -d $GPG_OPTS "$passfile" | head -n 1)" "$path" - fi -+ exec $GPG -q -d --yes --batch "$passfile" ++ exec $GPG -d $GPG_OPTS "$passfile" fi ;; insert) -@@ -173,7 +140,7 @@ case "$command" in - noecho=0 - force=0 - -- opts="$(getopt -o mnf -l multiline,no-echo,force -n $program -- "$@")" -+ opts="$($GETOPT -o mnf -l multiline,no-echo,force -n $program -- "$@")" - err=$? - eval set -- "$opts" - while true; do case $1 in -@@ -201,7 +168,7 @@ case "$command" in - if [[ $ml -eq 1 ]]; then - echo "Enter contents of $path and press Ctrl+D when finished:" - echo -- cat | gpg -e -r "$ID" -o "$passfile" $GPG_OPTS -+ cat | $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS - elif [[ $noecho -eq 1 ]]; then - while true; do - read -p "Enter password for $path: " -s password -@@ -209,7 +176,7 @@ case "$command" in - read -p "Retype password for $path: " -s password_again - echo - if [[ $password == $password_again ]]; then -- gpg -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" -+ $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" - break - else - echo "Error: the entered passwords do not match." -@@ -217,11 +184,11 @@ case "$command" in - done - else - read -p "Enter password for $path: " -e password -- gpg -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" -+ $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" - fi -- if [[ -d $GIT ]]; then -- git add "$passfile" -- git commit -m "Added given password for $path to store." -+ if [[ -d $GITDIR ]]; then -+ $GIT add "$passfile" -+ $GIT commit -m "Added given password for $path to store." - fi - ;; - edit) -@@ -252,35 +219,33 @@ case "$command" in - - action="Added" - if [[ -f $passfile ]]; then -- gpg -d -o "$tmp_file" $GPG_OPTS "$passfile" || exit 1 -+ $GPG -d -o "$tmp_file" $GPG_OPTS "$passfile" || exit 1 - action="Edited" - fi - ${EDITOR:-vi} "$tmp_file" -- while ! gpg -e -r "$ID" -o "$passfile" $GPG_OPTS "$tmp_file"; do -+ while ! $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS "$tmp_file"; do - echo "GPG encryption failed. Retrying." - sleep 1 - done - -- if [[ -d $GIT ]]; then -- git add "$passfile" -- git commit -m "$action password for $path using ${EDITOR:-vi}." -+ if [[ -d $GITDIR ]]; then -+ $GIT add "$passfile" -+ $GIT commit -m "$action password for $path using ${EDITOR:-vi}." - fi +@@ -306,22 +265,20 @@ case "$command" in + git_add_file "$passfile" "$action password for $path using ${EDITOR:-vi}." ;; generate) - clip=0 + force=0 symbols="-y" -- opts="$(getopt -o nc -l no-symbols,clip -n $program -- "$@")" -+ opts="$($GETOPT -o nc -l no-symbols -n $program -- "$@")" +- opts="$($GETOPT -o ncf -l no-symbols,clip,force -n "$program" -- "$@")" ++ opts="$($GETOPT -o ncf -l no-symbols,force -n "$program" -- "$@")" err=$? eval set -- "$opts" while true; do case $1 in -n|--no-symbols) symbols=""; shift ;; - -c|--clip) clip=1; shift ;; + -f|--force) force=1; shift ;; --) shift; break ;; esac done if [[ $err -ne 0 || $# -ne 2 ]]; then -- echo "Usage: $program $command [--no-symbols,-n] [--clip,-c] pass-name pass-length" -+ echo "Usage: $program $command [--no-symbols,-n] pass-name pass-length" +- echo "Usage: $program $command [--no-symbols,-n] [--clip,-c] [--force,-f] pass-name pass-length" ++ echo "Usage: $program $command [--no-symbols,-n] [--force,-f] pass-name pass-length" exit 1 fi path="$1" -@@ -292,18 +257,13 @@ case "$command" in - mkdir -p -v "$PREFIX/$(dirname "$path")" - pass="$(pwgen -s $symbols $length 1)" - passfile="$PREFIX/$path.gpg" -- gpg -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$pass" -- if [[ -d $GIT ]]; then -- git add "$passfile" -- git commit -m "Added generated password for $path to store." -- fi -- -- if [ $clip -eq 0 ]; then +@@ -340,12 +297,8 @@ case "$command" in + $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$pass" + git_add_file "$passfile" "Added generated password for $path to store." + +- if [[ $clip -eq 0 ]]; then - echo "The generated password to $path is:" - echo "$pass" - else - clip "$pass" "$path" -+ $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$pass" -+ if [[ -d $GITDIR ]]; then -+ $GIT add "$passfile" -+ $GIT commit -m "Added generated password for $path to store." - fi +- fi + echo "The generated password to $path is:" + echo "$pass" ;; delete|rm|remove) - if [[ $# -ne 1 ]]; then -@@ -317,22 +277,45 @@ case "$command" in - exit 1 - fi - rm -i -v "$passfile" -- if [[ -d $GIT ]] && ! [[ -f $passfile ]]; then -- git rm -f "$passfile" -- git commit -m "Removed $path from store." -+ if [[ -d $GITDIR ]] && ! [[ -f $passfile ]]; then -+ $GIT rm -f "$passfile" -+ $GIT commit -m "Removed $path from store." - fi - ;; - push|pull) -- if [[ -d $GIT ]]; then -- exec git $command "$@" -+ if [[ -d $GITDIR ]]; then -+ exec $GIT $command "$@" - else - echo "Error: the password store is not a git repository." - exit 1 - fi - ;; - git) -- if [[ $1 == "init" ]] || [[ -d $GIT ]]; then -- exec git "$@" -+ if [[ $1 == "init" ]]; then -+ username=$2 -+ useremail=$3 -+ -+ $GIT init -+ -+ if [ -z "$username" ]; then -+ current=$($GIT config user.name) -+ prompt="Set your git user.name: " -+ read -e -i "$current" -p "$prompt" username -+ username="${username:-$username}" -+ fi -+ if [ -z "$useremail" ]; then -+ current=$($GIT config user.email) -+ prompt="Set your git user.email: " -+ read -e -i "$current" -p "$prompt" useremail -+ useremail="${useremail:-$useremail}" -+ fi -+ $GIT config user.name "$username" -+ $GIT config user.email "$useremail" -+ echo .gpg-id > $PREFIX/.gitignore -+ $GIT add . -+ $GIT commit -m "Adding existing passwords to the store." -+ elif [[ -d $GITDIR ]]; then -+ exec $GIT "$@" - else - echo "Error: the password store is not a git repository." - exit 1 + recursive="" diff -ruN --exclude=CVS /usr/ports/sysutils/password-store/files/linuxism.patch ./files/linuxism.patch --- /usr/ports/sysutils/password-store/files/linuxism.patch 2012-09-16 19:37:38.000000000 -0700 +++ ./files/linuxism.patch 2012-09-23 21:35:55.000000000 -0700 @@ -1,218 +1,45 @@ diff --git a/src/password-store.sh b/src/password-store.sh -index 1553e5b..78c45b8 100755 +index 503bac4..6fcf2cc 100755 --- src/password-store.sh +++ src/password-store.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/local/bin/bash - # (C) Copyright 2012 Jason A. Donenfeld . All Rights Reserved. - # This is released under the GPLv2+. Please see COPYING for more information. -@@ -7,10 +7,15 @@ umask 077 - - PREFIX="${PASSWORD_STORE_DIR:-$HOME/.password-store}" - ID="$PREFIX/.gpg-id" --GIT="$PREFIX/.git" -+GITDIR="$PREFIX/.git" - GPG_OPTS="--quiet --yes --batch" -+GETOPT=/usr/local/bin/getopt -+GPG=gpg2 -+GIT=git -+XCLIP=xclip -+BASE64=base64 - --export GIT_DIR="$GIT" -+export GIT_DIR="$GITDIR" - export GIT_WORK_TREE="$PREFIX" - - version() { -@@ -72,12 +77,12 @@ clip() { - # in shell. There must be a better way to deal with this, but because I'm a dolt, - # we're going with this for now. - -- before="$(xclip -o -selection clipboard | base64)" -- echo -n "$1" | xclip -selection clipboard -+ before="$($XCLIP -o -selection clipboard | $BASE64)" -+ echo -n "$1" | $XCLIP -selection clipboard - ( - sleep 45 -- now="$(xclip -o -selection clipboard | base64)" -- if [[ $now != $(echo -n "$1" | base64) ]]; then -+ now="$($XCLIP -o -selection clipboard | $BASE64)" -+ if [[ $now != $(echo -n "$1" | $BASE64) ]]; then - before="$now" - fi - # It might be nice to programatically check to see if klipper exists, -@@ -85,7 +90,7 @@ clip() { - # this works fine. Clipboard managers frequently write their history - # out in plaintext, so we axe it here. - qdbus org.kde.klipper /klipper org.kde.klipper.klipper.clearClipboardHistory >/dev/null 2>&1 -- echo "$before" | base64 -d | xclip -selection clipboard -+ echo "$before" | $BASE64 -d | $XCLIP -selection clipboard + # Copyright (C) 2012 Jason A. Donenfeld . All Rights Reserved. + # This file is licensed under the GPLv2+. Please see COPYING for more information. +@@ -107,22 +107,24 @@ clip() { ) & disown echo "Copied $2 to clipboard. Will clear in 45 seconds." } -@@ -134,7 +139,7 @@ case "$command" in - show|ls|list) - clip=0 - -- opts="$(getopt -o c -l clip -n $program -- "$@")" -+ opts="$($GETOPT -o c -l clip -n $program -- "$@")" - err=$? - eval set -- "$opts" - while true; do case $1 in -@@ -162,9 +167,9 @@ case "$command" in - exit 1 - fi - if [ $clip -eq 0 ]; then -- exec gpg -q -d --yes --batch "$passfile" -+ exec $GPG -q -d --yes --batch "$passfile" - else -- clip "$(gpg -q -d --yes --batch "$passfile" | head -n 1)" "$path" -+ clip "$($GPG -q -d --yes --batch "$passfile" | head -n 1)" "$path" - fi - fi - ;; -@@ -173,7 +178,7 @@ case "$command" in - noecho=0 - force=0 - -- opts="$(getopt -o mnf -l multiline,no-echo,force -n $program -- "$@")" -+ opts="$($GETOPT -o mnf -l multiline,no-echo,force -n $program -- "$@")" - err=$? - eval set -- "$opts" - while true; do case $1 in -@@ -201,7 +206,7 @@ case "$command" in - if [[ $ml -eq 1 ]]; then - echo "Enter contents of $path and press Ctrl+D when finished:" - echo -- cat | gpg -e -r "$ID" -o "$passfile" $GPG_OPTS -+ cat | $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS - elif [[ $noecho -eq 1 ]]; then - while true; do - read -p "Enter password for $path: " -s password -@@ -209,7 +214,7 @@ case "$command" in - read -p "Retype password for $path: " -s password_again - echo - if [[ $password == $password_again ]]; then -- gpg -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" -+ $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" - break - else - echo "Error: the entered passwords do not match." -@@ -217,11 +222,11 @@ case "$command" in - done - else - read -p "Enter password for $path: " -e password -- gpg -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" -+ $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$password" - fi -- if [[ -d $GIT ]]; then -- git add "$passfile" -- git commit -m "Added given password for $path to store." -+ if [[ -d $GITDIR ]]; then -+ $GIT add "$passfile" -+ $GIT commit -m "Added given password for $path to store." - fi - ;; - edit) -@@ -252,25 +257,25 @@ case "$command" in - - action="Added" - if [[ -f $passfile ]]; then -- gpg -d -o "$tmp_file" $GPG_OPTS "$passfile" || exit 1 -+ $GPG -d -o "$tmp_file" $GPG_OPTS "$passfile" || exit 1 - action="Edited" - fi - ${EDITOR:-vi} "$tmp_file" -- while ! gpg -e -r "$ID" -o "$passfile" $GPG_OPTS "$tmp_file"; do -+ while ! $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS "$tmp_file"; do - echo "GPG encryption failed. Retrying." - sleep 1 - done - -- if [[ -d $GIT ]]; then -- git add "$passfile" -- git commit -m "$action password for $path using ${EDITOR:-vi}." -+ if [[ -d $GITDIR ]]; then -+ $GIT add "$passfile" -+ $GIT commit -m "$action password for $path using ${EDITOR:-vi}." - fi - ;; - generate) - clip=0 - symbols="-y" - -- opts="$(getopt -o nc -l no-symbols,clip -n $program -- "$@")" -+ opts="$($GETOPT -o nc -l no-symbols,clip -n $program -- "$@")" - err=$? - eval set -- "$opts" - while true; do case $1 in -@@ -292,10 +297,10 @@ case "$command" in - mkdir -p -v "$PREFIX/$(dirname "$path")" - pass="$(pwgen -s $symbols $length 1)" - passfile="$PREFIX/$path.gpg" -- gpg -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$pass" -- if [[ -d $GIT ]]; then -- git add "$passfile" -- git commit -m "Added generated password for $path to store." -+ $GPG -e -r "$ID" -o "$passfile" $GPG_OPTS <<<"$pass" -+ if [[ -d $GITDIR ]]; then -+ $GIT add "$passfile" -+ $GIT commit -m "Added generated password for $path to store." - fi - - if [ $clip -eq 0 ]; then -@@ -317,22 +322,45 @@ case "$command" in - exit 1 - fi - rm -i -v "$passfile" -- if [[ -d $GIT ]] && ! [[ -f $passfile ]]; then -- git rm -f "$passfile" -- git commit -m "Removed $path from store." -+ if [[ -d $GITDIR ]] && ! [[ -f $passfile ]]; then -+ $GIT rm -f "$passfile" -+ $GIT commit -m "Removed $path from store." - fi - ;; - push|pull) -- if [[ -d $GIT ]]; then -- exec git $command "$@" -+ if [[ -d $GITDIR ]]; then -+ exec $GIT $command "$@" - else - echo "Error: the password store is not a git repository." - exit 1 - fi - ;; - git) -- if [[ $1 == "init" ]] || [[ -d $GIT ]]; then -- exec git "$@" -+ if [[ $1 == "init" ]]; then -+ username=$2 -+ useremail=$3 + -+ $GIT init + tmpdir() { +- if [[ -d /dev/shm && -w /dev/shm && -x /dev/shm ]]; then +- tmp_dir="$(TMPDIR=/dev/shm mktemp -t "$template" -d)" ++ ramdisk="/var/tmp/password-store.ramdisk" ++ if [[ -d $ramdisk && -w $ramdisk && -x $ramdisk ]]; then ++ tmp_dir="$(TMPDIR=$ramdisk mktemp -t "$template" -d)" + else +- yesno "$(echo "Your system does not have /dev/shm, which means that it may" +- echo "be difficult to entirely erase the temporary non-encrypted" +- echo "password file after editing. Are you sure you would like to" +- echo -n "continue?")" ++ yesno "$(echo "A ramdisk does not exist at $ramdisk, which means that it may" ++ echo "be difficult to entirely erase the temporary non-encrypted" ++ echo "password file after editing. Are you sure you would like to" ++ echo -n "continue?")" ++ + tmp_dir="$(mktemp -t "$template" -d)" + fi +- + } +-GPG="gpg" +-GETOPT="getopt" + +-# source /path/to/platform-defined-functions ++GPG="gpg2" ++GETOPT="/usr/local/bin/getopt" + -+ if [ -z "$username" ]; then -+ current=$($GIT config user.name) -+ prompt="Set your git user.name: " -+ read -e -i "$current" -p "$prompt" username -+ username="${username:-$username}" -+ fi -+ if [ -z "$useremail" ]; then -+ current=$($GIT config user.email) -+ prompt="Set your git user.email: " -+ read -e -i "$current" -p "$prompt" useremail -+ useremail="${useremail:-$useremail}" -+ fi -+ $GIT config user.name "$username" -+ $GIT config user.email "$useremail" -+ echo .gpg-id > $PREFIX/.gitignore -+ $GIT add . -+ $GIT commit -m "Adding existing passwords to the store." -+ elif [[ -d $GITDIR ]]; then -+ exec $GIT "$@" - else - echo "Error: the password store is not a git repository." - exit 1 + # + # END Platform definable + # --- password-store-1.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 05:50:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F291106566B; Mon, 24 Sep 2012 05:50:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 12F608FC0C; Mon, 24 Sep 2012 05:50:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O5oLLK082714; Mon, 24 Sep 2012 05:50:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O5oLcX082699; Mon, 24 Sep 2012 05:50:21 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 05:50:21 GMT Message-Id: <201209240550.q8O5oLcX082699@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171905: [MAINTAINER] sysutils/password-store: update to 1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 05:50:22 -0000 Synopsis: [MAINTAINER] sysutils/password-store: update to 1.4 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 24 05:50:21 UTC 2012 Responsible-Changed-Why: swills@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171905 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 07:40:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DE90106564A for ; Mon, 24 Sep 2012 07:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 60F168FC18 for ; Mon, 24 Sep 2012 07:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O7e9g4088100 for ; Mon, 24 Sep 2012 07:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O7e9Qq088099; Mon, 24 Sep 2012 07:40:09 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 07:40:09 GMT Resent-Message-Id: <201209240740.q8O7e9Qq088099@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gasol Wu Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B790106566B for ; Mon, 24 Sep 2012 07:35:52 +0000 (UTC) (envelope-from gasolwu@kkbox.com) Received: from kkbox.com (mail-out-1.kkbox.com [203.69.67.210]) by mx1.freebsd.org (Postfix) with ESMTP id E01938FC0A for ; Mon, 24 Sep 2012 07:35:51 +0000 (UTC) Received: by goingmarry.kkbox.com (Postfix, from userid 1033) id 7E8FE74F937; Mon, 24 Sep 2012 15:35:43 +0800 (CST) Message-Id: <20120924073543.7E8FE74F937@goingmarry.kkbox.com> Date: Mon, 24 Sep 2012 15:35:43 +0800 (CST) From: Gasol Wu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/171908: [PATCH] devel/pear-File_Iterator: update to 1.3.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 07:40:09 -0000 >Number: 171908 >Category: ports >Synopsis: [PATCH] devel/pear-File_Iterator: update to 1.3.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 07:40:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Gasol Wu >Release: FreeBSD 9.1-RC1 amd64 >Organization: >Environment: System: FreeBSD goingmarry 9.1-RC1 FreeBSD 9.1-RC1 #0: Tue Aug 14 04:25:06 UTC 2012 >Description: - Update to 1.3.2 Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- pear-File_Iterator-1.3.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/pear-File_Iterator/Makefile ./Makefile --- /usr/ports/devel/pear-File_Iterator/Makefile 2012-08-16 16:51:39.000000000 +0800 +++ ./Makefile 2012-09-24 15:35:04.678772000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= File_Iterator -PORTVERSION= 1.3.1 +PORTVERSION= 1.3.2 CATEGORIES= devel www pear MASTER_SITES= http://pear.phpunit.de/get/ PKGNAMEPREFIX= pear- @@ -16,7 +16,6 @@ BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear \ ${PEARDIR}/.channels/pear.phpunit.de.reg:${PORTSDIR}/devel/pear-channel-phpunit - RUN_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear \ ${PEARDIR}/.channels/pear.phpunit.de.reg:${PORTSDIR}/devel/pear-channel-phpunit diff -ruN --exclude=CVS /usr/ports/devel/pear-File_Iterator/distinfo ./distinfo --- /usr/ports/devel/pear-File_Iterator/distinfo 2012-01-25 16:58:00.000000000 +0800 +++ ./distinfo 2012-09-24 15:31:47.044603000 +0800 @@ -1,2 +1,2 @@ -SHA256 (PEAR/File_Iterator-1.3.1.tgz) = 9a35bf5247c19988bb3033e10bbc2db0e25b174d231082c48f9639b3acb6aca1 -SIZE (PEAR/File_Iterator-1.3.1.tgz) = 5157 +SHA256 (PEAR/File_Iterator-1.3.2.tgz) = 4e511bb75ebc70821cfee218c182c671023c413d405e37dbd67034cab76505fa +SIZE (PEAR/File_Iterator-1.3.2.tgz) = 5181 --- pear-File_Iterator-1.3.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 07:40:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29B0F1065672 for ; Mon, 24 Sep 2012 07:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E244F8FC0A for ; Mon, 24 Sep 2012 07:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O7e9Ab088128 for ; Mon, 24 Sep 2012 07:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O7e96a088119; Mon, 24 Sep 2012 07:40:09 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 07:40:09 GMT Resent-Message-Id: <201209240740.q8O7e96a088119@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gasol Wu Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1E030106564A for ; Mon, 24 Sep 2012 07:39:37 +0000 (UTC) (envelope-from gasolwu@kkbox.com) Received: from kkbox.com (mail-out-1.kkbox.com [203.69.67.210]) by mx1.freebsd.org (Postfix) with ESMTP id E253A8FC18 for ; Mon, 24 Sep 2012 07:39:36 +0000 (UTC) Received: by goingmarry.kkbox.com (Postfix, from userid 1033) id 5C8A07471BA; Mon, 24 Sep 2012 15:39:36 +0800 (CST) Message-Id: <20120924073936.5C8A07471BA@goingmarry.kkbox.com> Date: Mon, 24 Sep 2012 15:39:36 +0800 (CST) From: Gasol Wu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/171909: [PATCH] textproc/pear-Text_Template: update to 1.1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 07:40:10 -0000 >Number: 171909 >Category: ports >Synopsis: [PATCH] textproc/pear-Text_Template: update to 1.1.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 07:40:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Gasol Wu >Release: FreeBSD 9.1-RC1 amd64 >Organization: >Environment: System: FreeBSD goingmarry 9.1-RC1 FreeBSD 9.1-RC1 #0: Tue Aug 14 04:25:06 UTC 2012 >Description: - Update to 1.1.2 Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- pear-Text_Template-1.1.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/textproc/pear-Text_Template/Makefile ./Makefile --- /usr/ports/textproc/pear-Text_Template/Makefile 2012-08-16 16:51:39.000000000 +0800 +++ ./Makefile 2012-09-24 15:39:26.685501000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= Text_Template -PORTVERSION= 1.1.1 +PORTVERSION= 1.1.2 CATEGORIES= textproc www pear MASTER_SITES= http://pear.phpunit.de/get/ PKGNAMEPREFIX= pear- @@ -16,7 +16,6 @@ BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear \ ${PEARDIR}/.channels/pear.phpunit.de.reg:${PORTSDIR}/devel/pear-channel-phpunit - RUN_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear \ ${PEARDIR}/.channels/pear.phpunit.de.reg:${PORTSDIR}/devel/pear-channel-phpunit diff -ruN --exclude=CVS /usr/ports/textproc/pear-Text_Template/distinfo ./distinfo --- /usr/ports/textproc/pear-Text_Template/distinfo 2011-11-02 05:20:13.000000000 +0800 +++ ./distinfo 2012-09-24 15:38:07.376891000 +0800 @@ -1,2 +1,2 @@ -SHA256 (PEAR/Text_Template-1.1.1.tgz) = 1d21e556407441cbe81bbb32e34a78c3eaacb98def3e1d7ea3fa8a2b584ff207 -SIZE (PEAR/Text_Template-1.1.1.tgz) = 3444 +SHA256 (PEAR/Text_Template-1.1.2.tgz) = f7dda7f47790a200235395df643032a46ad796ebee8087eaf9f0304af23488f7 +SIZE (PEAR/Text_Template-1.1.2.tgz) = 3633 --- pear-Text_Template-1.1.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 07:41:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E48A106566B; Mon, 24 Sep 2012 07:41:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 112648FC0A; Mon, 24 Sep 2012 07:41:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O7fQSa096383; Mon, 24 Sep 2012 07:41:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O7fQYD096379; Mon, 24 Sep 2012 07:41:26 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 07:41:26 GMT Message-Id: <201209240741.q8O7fQYD096379@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171908: [PATCH] devel/pear-File_Iterator: update to 1.3.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 07:41:27 -0000 Synopsis: [PATCH] devel/pear-File_Iterator: update to 1.3.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 24 07:41:26 UTC 2012 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171908 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 07:41:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A10AD106564A; Mon, 24 Sep 2012 07:41:32 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 74D778FC12; Mon, 24 Sep 2012 07:41:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O7fWCl096482; Mon, 24 Sep 2012 07:41:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O7fWUx096478; Mon, 24 Sep 2012 07:41:32 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 07:41:32 GMT Message-Id: <201209240741.q8O7fWUx096478@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171909: [PATCH] textproc/pear-Text_Template: update to 1.1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 07:41:32 -0000 Synopsis: [PATCH] textproc/pear-Text_Template: update to 1.1.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 24 07:41:32 UTC 2012 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171909 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 08:20:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52B3C1065674 for ; Mon, 24 Sep 2012 08:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2A81A8FC20 for ; Mon, 24 Sep 2012 08:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O8K9LE027541 for ; Mon, 24 Sep 2012 08:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O8K82r027540; Mon, 24 Sep 2012 08:20:08 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 08:20:08 GMT Resent-Message-Id: <201209240820.q8O8K82r027540@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ruslan Mahmatkhanov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 396971065672 for ; Mon, 24 Sep 2012 08:13:29 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 225548FC12 for ; Mon, 24 Sep 2012 08:13:29 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O8DSrs070220 for ; Mon, 24 Sep 2012 08:13:28 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8O8DSw4070219; Mon, 24 Sep 2012 08:13:28 GMT (envelope-from nobody) Message-Id: <201209240813.q8O8DSw4070219@red.freebsd.org> Date: Mon, 24 Sep 2012 08:13:28 GMT From: Ruslan Mahmatkhanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171911: audio/exaile: update to 3.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 08:20:09 -0000 >Number: 171911 >Category: ports >Synopsis: audio/exaile: update to 3.3.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 08:20:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Ruslan Mahmatkhanov >Release: 10.0-CURRENT >Organization: >Environment: 10.0-CURRENT amd64 >Description: - update to 3.3.0 - convert Makefile header into two-line format - use PORTVERSION and common launchpad download url, as other launchpad ports do to remove complexity - update COMMENT (indefinite article removed) - remove LICENSE_FILE for common license (GPLv2) - convert py-* to ${PYTHON_PKGNAMEPREFIX} in dependencies - limit python version to 2.x only - remove conflicts with unexisting exaile-devel - convert to optionsng - remove deprecated attribution from pkg-descr - sort pkg-plist changelog: - see first news article on www.exaile.org buildlog: http://people.freebsd.org/~rm/exaile-3.3.0.log >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 304771) +++ Makefile (working copy) @@ -1,79 +1,58 @@ -# New ports collection makefile for: exaile -# Date created: 19 December 2006 -# Whom: Andrew Pantyukhin -# +# Created by: Andrew Pantyukhin # $FreeBSD$ -# PORTNAME= exaile -PORTVERSION= ${PORTVERSION_MAJOR}.${PORTVERSION_MINOR} # See below -PORTREVISION= 1 +PORTVERSION= 3.3.0 CATEGORIES= audio -MASTER_SITES= http://launchpad.net/${LP_DIR}/ \ +MASTER_SITES= https://launchpadlibrarian.net/116926188/ \ http://wickedmachine.net/mirror/ MAINTAINER= jsa@FreeBSD.org -COMMENT= A full featured python-based music player for GTK+ +COMMENT= Full featured python-based music player for GTK+ LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= py*-mutagen>=1.11:${PORTSDIR}/audio/py-mutagen +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mutagen>=1.11:${PORTSDIR}/audio/py-mutagen FETCH_ARGS= -pRr +MAKE_ENV+= PYTHON2_CMD=${PYTHON_CMD} XDGCONFDIR=${PREFIX}/etc/xdg USE_GNOME= pygtk2 librsvg2 USE_GSTREAMER= python good faad -USE_PYTHON= 2.5+ +USE_PYTHON= -2.7 -CONFLICTS= exaile-devel-[0-9]* - # The reality with these options is that they all will be autodetected and used # if already installed. These just force Exaile to bring them in as well. -OPTIONS= BAD "Install bad GStreamer plugins" On \ - BDB "Install Python Berkley DB module" On \ - CDDB "Lookup CD information within Exaile" On \ - DBUS "Rely on Python D-Bus bindings" On \ - HAL "Force depend on HAL" On \ - NOTIFY "Enable desktop event notification" On \ - NLS "Native Language Support" On \ - SEXY "UI enhancements" On +OPTIONS_DEFINE= BAD BDB CDDB DBUS HAL NOTIFY NLS SEXY +OPTIONS_DEFAULT=BAD BDB CDDB DBUS HAL NOTIFY NLS SEXY +BAD_DESC= Install bad GStreamer plugins +SEXY_DESC= UI enhancements -PORTVERSION_MAJOR= 0.3.2 -PORTREVISION= 1 -PORTVERSION_MINOR= 2 -PORTREVISION= 1 -LP_DIR= ${PORTNAME}/${PORTVERSION_MAJOR}/${PORTVERSION}/+download - MANCOMPRESSED= yes MAN1= exaile.1 -.include +.include -.if !defined(WITHOUT_BAD) +.if ${PORT_OPTIONS:MBAD} USE_GSTREAMER+= bad .endif -.if !defined(WITHOUT_BDB) -RUN_DEPENDS+= py*-bsddb>=2.5:${PORTSDIR}/databases/py-bsddb +.if ${PORT_OPTIONS:MCDDB} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}cddb>=1.4:${PORTSDIR}/audio/py-cddb .endif -.if !defined(WITHOUT_CDDB) -RUN_DEPENDS+= py*-cddb>=1.4:${PORTSDIR}/audio/py-cddb +.if ${PORT_OPTIONS:MDBUS} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dbus>=0.82.1:${PORTSDIR}/devel/py-dbus .endif -.if !defined(WITHOUT_DBUS) -RUN_DEPENDS+= py*-dbus>=0.82.1:${PORTSDIR}/devel/py-dbus -.endif - -.if !defined(WITHOUT_HAL) +.if ${PORT_OPTIONS:MHAL} LIB_DEPENDS+= hal.1:${PORTSDIR}/sysutils/hal .endif -.if !defined(WITHOUT_NOTIFY) -RUN_DEPENDS+= py*-notify>=0.1.1:${PORTSDIR}/devel/py-notify +.if ${PORT_OPTIONS:MNOTIFY} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}notify>=0.1.1:${PORTSDIR}/devel/py-notify .endif -.if !defined(WITHOUT_NLS) +.if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes PLIST_SUB+= NLS="" .else @@ -81,12 +60,12 @@ INSTALL_TARGET= install_no_locale .endif -.if !defined(WITHOUT_SEXY) -RUN_DEPENDS+= py*-sexy>=0.1.9:${PORTSDIR}/x11-toolkits/py-sexy +.if ${PORT_OPTIONS:MSEXY} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}sexy>=0.1.9:${PORTSDIR}/x11-toolkits/py-sexy .endif post-patch: @${REINPLACE_CMD} -e 's|$$(XDG|$$(PREFIX)$$(XDG|g' \ -e 's|share\/man|man|g' ${WRKSRC}/Makefile -.include +.include Index: pkg-descr =================================================================== --- pkg-descr (revision 304771) +++ pkg-descr (working copy) @@ -4,5 +4,4 @@ media players including iPods, internet radio such as shoutcast, and tabbed playlists. -Author: Adam Olsen WWW: http://www.exaile.org/ Index: distinfo =================================================================== --- distinfo (revision 304771) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (exaile-0.3.2.2.tar.gz) = e01a6b8c866187d3a29278226f883c59988291c27dcec1a1db3e03c9f14e1cfe -SIZE (exaile-0.3.2.2.tar.gz) = 2072973 +SHA256 (exaile-3.3.0.tar.gz) = 556c65c4bb71a12e239387386a8aef2600afc0ed290b13e17f676bc13abede31 +SIZE (exaile-3.3.0.tar.gz) = 3118961 Index: pkg-plist =================================================================== --- pkg-plist (revision 304771) +++ pkg-plist (working copy) @@ -1,43 +1,376 @@ +bin/exaile +etc/xdg/exaile/settings.ini +lib/exaile/exaile.py +lib/exaile/xl/__init__.py +lib/exaile/xl/__init__.pyc +lib/exaile/xl/__init__.pyo +lib/exaile/xl/collection.py +lib/exaile/xl/collection.pyc +lib/exaile/xl/collection.pyo +lib/exaile/xl/common.py +lib/exaile/xl/common.pyc +lib/exaile/xl/common.pyo +lib/exaile/xl/covers.py +lib/exaile/xl/covers.pyc +lib/exaile/xl/covers.pyo +lib/exaile/xl/devices.py +lib/exaile/xl/devices.pyc +lib/exaile/xl/devices.pyo +lib/exaile/xl/dynamic.py +lib/exaile/xl/dynamic.pyc +lib/exaile/xl/dynamic.pyo +lib/exaile/xl/event.py +lib/exaile/xl/event.pyc +lib/exaile/xl/event.pyo +lib/exaile/xl/formatter.py +lib/exaile/xl/formatter.pyc +lib/exaile/xl/formatter.pyo +lib/exaile/xl/hal.py +lib/exaile/xl/hal.pyc +lib/exaile/xl/hal.pyo +lib/exaile/xl/lyrics.py +lib/exaile/xl/lyrics.pyc +lib/exaile/xl/lyrics.pyo +lib/exaile/xl/main.py +lib/exaile/xl/main.pyc +lib/exaile/xl/main.pyo +lib/exaile/xl/metadata/__init__.py +lib/exaile/xl/metadata/__init__.pyc +lib/exaile/xl/metadata/__init__.pyo +lib/exaile/xl/metadata/_apev2.py +lib/exaile/xl/metadata/_apev2.pyc +lib/exaile/xl/metadata/_apev2.pyo +lib/exaile/xl/metadata/_base.py +lib/exaile/xl/metadata/_base.pyc +lib/exaile/xl/metadata/_base.pyo +lib/exaile/xl/metadata/_id3.py +lib/exaile/xl/metadata/_id3.pyc +lib/exaile/xl/metadata/_id3.pyo +lib/exaile/xl/metadata/_matroska.py +lib/exaile/xl/metadata/_matroska.pyc +lib/exaile/xl/metadata/_matroska.pyo +lib/exaile/xl/metadata/ape.py +lib/exaile/xl/metadata/ape.pyc +lib/exaile/xl/metadata/ape.pyo +lib/exaile/xl/metadata/asf.py +lib/exaile/xl/metadata/asf.pyc +lib/exaile/xl/metadata/asf.pyo +lib/exaile/xl/metadata/flac.py +lib/exaile/xl/metadata/flac.pyc +lib/exaile/xl/metadata/flac.pyo +lib/exaile/xl/metadata/mka.py +lib/exaile/xl/metadata/mka.pyc +lib/exaile/xl/metadata/mka.pyo +lib/exaile/xl/metadata/mod.py +lib/exaile/xl/metadata/mod.pyc +lib/exaile/xl/metadata/mod.pyo +lib/exaile/xl/metadata/mp3.py +lib/exaile/xl/metadata/mp3.pyc +lib/exaile/xl/metadata/mp3.pyo +lib/exaile/xl/metadata/mp4.py +lib/exaile/xl/metadata/mp4.pyc +lib/exaile/xl/metadata/mp4.pyo +lib/exaile/xl/metadata/mpc.py +lib/exaile/xl/metadata/mpc.pyc +lib/exaile/xl/metadata/mpc.pyo +lib/exaile/xl/metadata/ogg.py +lib/exaile/xl/metadata/ogg.pyc +lib/exaile/xl/metadata/ogg.pyo +lib/exaile/xl/metadata/sid.py +lib/exaile/xl/metadata/sid.pyc +lib/exaile/xl/metadata/sid.pyo +lib/exaile/xl/metadata/speex.py +lib/exaile/xl/metadata/speex.pyc +lib/exaile/xl/metadata/speex.pyo +lib/exaile/xl/metadata/tta.py +lib/exaile/xl/metadata/tta.pyc +lib/exaile/xl/metadata/tta.pyo +lib/exaile/xl/metadata/wav.py +lib/exaile/xl/metadata/wav.pyc +lib/exaile/xl/metadata/wav.pyo +lib/exaile/xl/metadata/wv.py +lib/exaile/xl/metadata/wv.pyc +lib/exaile/xl/metadata/wv.pyo +lib/exaile/xl/migrations/__init__.py +lib/exaile/xl/migrations/__init__.pyc +lib/exaile/xl/migrations/__init__.pyo +lib/exaile/xl/migrations/database/__init__.py +lib/exaile/xl/migrations/database/__init__.pyc +lib/exaile/xl/migrations/database/__init__.pyo +lib/exaile/xl/migrations/database/from1to2.py +lib/exaile/xl/migrations/database/from1to2.pyc +lib/exaile/xl/migrations/database/from1to2.pyo +lib/exaile/xl/migrations/settings/__init__.py +lib/exaile/xl/migrations/settings/__init__.pyc +lib/exaile/xl/migrations/settings/__init__.pyo +lib/exaile/xl/migrations/settings/osd.py +lib/exaile/xl/migrations/settings/osd.pyc +lib/exaile/xl/migrations/settings/osd.pyo +lib/exaile/xl/migrations/settings/rating.py +lib/exaile/xl/migrations/settings/rating.pyc +lib/exaile/xl/migrations/settings/rating.pyo +lib/exaile/xl/nls.py +lib/exaile/xl/nls.pyc +lib/exaile/xl/nls.pyo +lib/exaile/xl/player/__init__.py +lib/exaile/xl/player/__init__.pyc +lib/exaile/xl/player/__init__.pyo +lib/exaile/xl/player/_base.py +lib/exaile/xl/player/_base.pyc +lib/exaile/xl/player/_base.pyo +lib/exaile/xl/player/adapters.py +lib/exaile/xl/player/adapters.pyc +lib/exaile/xl/player/adapters.pyo +lib/exaile/xl/player/engine_normal.py +lib/exaile/xl/player/engine_normal.pyc +lib/exaile/xl/player/engine_normal.pyo +lib/exaile/xl/player/engine_unified.py +lib/exaile/xl/player/engine_unified.pyc +lib/exaile/xl/player/engine_unified.pyo +lib/exaile/xl/player/pipe.py +lib/exaile/xl/player/pipe.pyc +lib/exaile/xl/player/pipe.pyo +lib/exaile/xl/player/queue.py +lib/exaile/xl/player/queue.pyc +lib/exaile/xl/player/queue.pyo +lib/exaile/xl/playlist.py +lib/exaile/xl/playlist.pyc +lib/exaile/xl/playlist.pyo +lib/exaile/xl/plugins.py +lib/exaile/xl/plugins.pyc +lib/exaile/xl/plugins.pyo +lib/exaile/xl/providers.py +lib/exaile/xl/providers.pyc +lib/exaile/xl/providers.pyo +lib/exaile/xl/radio.py +lib/exaile/xl/radio.pyc +lib/exaile/xl/radio.pyo +lib/exaile/xl/settings.py +lib/exaile/xl/settings.pyc +lib/exaile/xl/settings.pyo +lib/exaile/xl/transcoder.py +lib/exaile/xl/transcoder.pyc +lib/exaile/xl/transcoder.pyo +lib/exaile/xl/trax/__init__.py +lib/exaile/xl/trax/__init__.pyc +lib/exaile/xl/trax/__init__.pyo +lib/exaile/xl/trax/search.py +lib/exaile/xl/trax/search.pyc +lib/exaile/xl/trax/search.pyo +lib/exaile/xl/trax/track.py +lib/exaile/xl/trax/track.pyc +lib/exaile/xl/trax/track.pyo +lib/exaile/xl/trax/trackdb.py +lib/exaile/xl/trax/trackdb.pyc +lib/exaile/xl/trax/trackdb.pyo +lib/exaile/xl/trax/util.py +lib/exaile/xl/trax/util.pyc +lib/exaile/xl/trax/util.pyo +lib/exaile/xl/version.py +lib/exaile/xl/version.pyc +lib/exaile/xl/version.pyo +lib/exaile/xl/xdg.py +lib/exaile/xl/xdg.pyc +lib/exaile/xl/xdg.pyo +lib/exaile/xl/xldbus.py +lib/exaile/xl/xldbus.pyc +lib/exaile/xl/xldbus.pyo +lib/exaile/xlgui/__init__.py +lib/exaile/xlgui/__init__.pyc +lib/exaile/xlgui/__init__.pyo +lib/exaile/xlgui/accelerators.py +lib/exaile/xlgui/accelerators.pyc +lib/exaile/xlgui/accelerators.pyo +lib/exaile/xlgui/collection.py +lib/exaile/xlgui/collection.pyc +lib/exaile/xlgui/collection.pyo +lib/exaile/xlgui/cover.py +lib/exaile/xlgui/cover.pyc +lib/exaile/xlgui/cover.pyo +lib/exaile/xlgui/devices.py +lib/exaile/xlgui/devices.pyc +lib/exaile/xlgui/devices.pyo +lib/exaile/xlgui/guiutil.py +lib/exaile/xlgui/guiutil.pyc +lib/exaile/xlgui/guiutil.pyo +lib/exaile/xlgui/icons.py +lib/exaile/xlgui/icons.pyc +lib/exaile/xlgui/icons.pyo +lib/exaile/xlgui/main.py +lib/exaile/xlgui/main.pyc +lib/exaile/xlgui/main.pyo +lib/exaile/xlgui/menu.py +lib/exaile/xlgui/menu.pyc +lib/exaile/xlgui/menu.pyo +lib/exaile/xlgui/oldmenu.py +lib/exaile/xlgui/oldmenu.pyc +lib/exaile/xlgui/oldmenu.pyo +lib/exaile/xlgui/panel/__init__.py +lib/exaile/xlgui/panel/__init__.pyc +lib/exaile/xlgui/panel/__init__.pyo +lib/exaile/xlgui/panel/collection.py +lib/exaile/xlgui/panel/collection.pyc +lib/exaile/xlgui/panel/collection.pyo +lib/exaile/xlgui/panel/device.py +lib/exaile/xlgui/panel/device.pyc +lib/exaile/xlgui/panel/device.pyo +lib/exaile/xlgui/panel/files.py +lib/exaile/xlgui/panel/files.pyc +lib/exaile/xlgui/panel/files.pyo +lib/exaile/xlgui/panel/flatplaylist.py +lib/exaile/xlgui/panel/flatplaylist.pyc +lib/exaile/xlgui/panel/flatplaylist.pyo +lib/exaile/xlgui/panel/playlists.py +lib/exaile/xlgui/panel/playlists.pyc +lib/exaile/xlgui/panel/playlists.pyo +lib/exaile/xlgui/panel/radio.py +lib/exaile/xlgui/panel/radio.pyc +lib/exaile/xlgui/panel/radio.pyo +lib/exaile/xlgui/playlist.py +lib/exaile/xlgui/playlist.pyc +lib/exaile/xlgui/playlist.pyo +lib/exaile/xlgui/preferences/__init__.py +lib/exaile/xlgui/preferences/__init__.pyc +lib/exaile/xlgui/preferences/__init__.pyo +lib/exaile/xlgui/preferences/appearance.py +lib/exaile/xlgui/preferences/appearance.pyc +lib/exaile/xlgui/preferences/appearance.pyo +lib/exaile/xlgui/preferences/collection.py +lib/exaile/xlgui/preferences/collection.pyc +lib/exaile/xlgui/preferences/collection.pyo +lib/exaile/xlgui/preferences/cover.py +lib/exaile/xlgui/preferences/cover.pyc +lib/exaile/xlgui/preferences/cover.pyo +lib/exaile/xlgui/preferences/playback.py +lib/exaile/xlgui/preferences/playback.pyc +lib/exaile/xlgui/preferences/playback.pyo +lib/exaile/xlgui/preferences/playlists.py +lib/exaile/xlgui/preferences/playlists.pyc +lib/exaile/xlgui/preferences/playlists.pyo +lib/exaile/xlgui/preferences/plugin.py +lib/exaile/xlgui/preferences/plugin.pyc +lib/exaile/xlgui/preferences/plugin.pyo +lib/exaile/xlgui/preferences/widgets.py +lib/exaile/xlgui/preferences/widgets.pyc +lib/exaile/xlgui/preferences/widgets.pyo +lib/exaile/xlgui/progress.py +lib/exaile/xlgui/progress.pyc +lib/exaile/xlgui/progress.pyo +lib/exaile/xlgui/properties.py +lib/exaile/xlgui/properties.pyc +lib/exaile/xlgui/properties.pyo +lib/exaile/xlgui/tray.py +lib/exaile/xlgui/tray.pyc +lib/exaile/xlgui/tray.pyo +lib/exaile/xlgui/widgets/__init__.py +lib/exaile/xlgui/widgets/__init__.pyc +lib/exaile/xlgui/widgets/__init__.pyo +lib/exaile/xlgui/widgets/common.py +lib/exaile/xlgui/widgets/common.pyc +lib/exaile/xlgui/widgets/common.pyo +lib/exaile/xlgui/widgets/dialogs.py +lib/exaile/xlgui/widgets/dialogs.pyc +lib/exaile/xlgui/widgets/dialogs.pyo +lib/exaile/xlgui/widgets/filter.py +lib/exaile/xlgui/widgets/filter.pyc +lib/exaile/xlgui/widgets/filter.pyo +lib/exaile/xlgui/widgets/info.py +lib/exaile/xlgui/widgets/info.pyc +lib/exaile/xlgui/widgets/info.pyo +lib/exaile/xlgui/widgets/menu.py +lib/exaile/xlgui/widgets/menu.pyc +lib/exaile/xlgui/widgets/menu.pyo +lib/exaile/xlgui/widgets/menuitems.py +lib/exaile/xlgui/widgets/menuitems.pyc +lib/exaile/xlgui/widgets/menuitems.pyo +lib/exaile/xlgui/widgets/notebook.py +lib/exaile/xlgui/widgets/notebook.pyc +lib/exaile/xlgui/widgets/notebook.pyo +lib/exaile/xlgui/widgets/playback.py +lib/exaile/xlgui/widgets/playback.pyc +lib/exaile/xlgui/widgets/playback.pyo +lib/exaile/xlgui/widgets/playlist.py +lib/exaile/xlgui/widgets/playlist.pyc +lib/exaile/xlgui/widgets/playlist.pyo +lib/exaile/xlgui/widgets/playlist_columns.py +lib/exaile/xlgui/widgets/playlist_columns.pyc +lib/exaile/xlgui/widgets/playlist_columns.pyo +lib/exaile/xlgui/widgets/queue.py +lib/exaile/xlgui/widgets/queue.pyc +lib/exaile/xlgui/widgets/queue.pyo +lib/exaile/xlgui/widgets/rating.py +lib/exaile/xlgui/widgets/rating.pyc +lib/exaile/xlgui/widgets/rating.pyo +share/applications/exaile.desktop +share/dbus-1/services/org.exaile.Exaile.service +%%DATADIR%%/data/images/16x16/artist.png +%%DATADIR%%/data/images/16x16/audio-x-generic.png %%DATADIR%%/data/images/16x16/exaile-pause.png %%DATADIR%%/data/images/16x16/exaile-play.png %%DATADIR%%/data/images/16x16/exaile.png +%%DATADIR%%/data/images/16x16/extension.png +%%DATADIR%%/data/images/16x16/folder-music.png +%%DATADIR%%/data/images/16x16/genre.png %%DATADIR%%/data/images/16x16/media-playlist-dynamic.png %%DATADIR%%/data/images/16x16/media-playlist-repeat.png %%DATADIR%%/data/images/16x16/media-playlist-shuffle.png +%%DATADIR%%/data/images/16x16/music-library.png +%%DATADIR%%/data/images/16x16/office-calendar.png +%%DATADIR%%/data/images/22x22/artist.png %%DATADIR%%/data/images/22x22/exaile-pause.png %%DATADIR%%/data/images/22x22/exaile-play.png +%%DATADIR%%/data/images/22x22/exaile.png +%%DATADIR%%/data/images/22x22/extension.png +%%DATADIR%%/data/images/22x22/folder-music.png +%%DATADIR%%/data/images/22x22/genre.png %%DATADIR%%/data/images/22x22/media-playlist-dynamic.png %%DATADIR%%/data/images/22x22/media-playlist-repeat.png %%DATADIR%%/data/images/22x22/media-playlist-shuffle.png -%%DATADIR%%/data/images/22x22/exaile.png +%%DATADIR%%/data/images/22x22/music-library.png +%%DATADIR%%/data/images/22x22/office-calendar.png +%%DATADIR%%/data/images/24x24/artist.png %%DATADIR%%/data/images/24x24/exaile-pause.png %%DATADIR%%/data/images/24x24/exaile-play.png %%DATADIR%%/data/images/24x24/exaile.png +%%DATADIR%%/data/images/24x24/extension.png +%%DATADIR%%/data/images/24x24/folder-music.png +%%DATADIR%%/data/images/24x24/genre.png %%DATADIR%%/data/images/24x24/media-playlist-dynamic.png %%DATADIR%%/data/images/24x24/media-playlist-repeat.png %%DATADIR%%/data/images/24x24/media-playlist-shuffle.png +%%DATADIR%%/data/images/24x24/music-library.png +%%DATADIR%%/data/images/24x24/office-calendar.png +%%DATADIR%%/data/images/32x32/artist.png %%DATADIR%%/data/images/32x32/exaile-pause.png %%DATADIR%%/data/images/32x32/exaile-play.png %%DATADIR%%/data/images/32x32/exaile.png +%%DATADIR%%/data/images/32x32/extension.png +%%DATADIR%%/data/images/32x32/folder-music.png +%%DATADIR%%/data/images/32x32/genre.png %%DATADIR%%/data/images/32x32/media-playlist-dynamic.png %%DATADIR%%/data/images/32x32/media-playlist-repeat.png %%DATADIR%%/data/images/32x32/media-playlist-shuffle.png +%%DATADIR%%/data/images/32x32/office-calendar.png +%%DATADIR%%/data/images/48x48/artist.png %%DATADIR%%/data/images/48x48/exaile-pause.png %%DATADIR%%/data/images/48x48/exaile-play.png %%DATADIR%%/data/images/48x48/exaile.png -%%DATADIR%%/data/images/artist.png +%%DATADIR%%/data/images/48x48/extension.png +%%DATADIR%%/data/images/48x48/folder-music.png +%%DATADIR%%/data/images/48x48/genre.png +%%DATADIR%%/data/images/48x48/office-calendar.png %%DATADIR%%/data/images/emptystar.png %%DATADIR%%/data/images/exailelogo.png -%%DATADIR%%/data/images/genre.png %%DATADIR%%/data/images/nocover.png -%%DATADIR%%/data/images/playlist.png +%%DATADIR%%/data/images/scalable/artist.svg %%DATADIR%%/data/images/scalable/exaile-pause.svg %%DATADIR%%/data/images/scalable/exaile-play.svg %%DATADIR%%/data/images/scalable/exaile.svg +%%DATADIR%%/data/images/scalable/extension.svg +%%DATADIR%%/data/images/scalable/genre.svg +%%DATADIR%%/data/images/scalable/office-calendar.svg %%DATADIR%%/data/images/splash.png %%DATADIR%%/data/images/star.png -%%DATADIR%%/data/images/track.png -%%DATADIR%%/data/images/year.png %%DATADIR%%/data/migrations/__init__.py %%DATADIR%%/data/migrations/migration_200907100931/__init__.py %%DATADIR%%/data/migrations/migration_200907100931/olddb.py @@ -46,33 +379,37 @@ %%DATADIR%%/data/migrations/migration_200907100931/xlmisc.py %%DATADIR%%/data/ui/about_dialog.ui %%DATADIR%%/data/ui/collection_manager.ui -%%DATADIR%%/data/ui/collection_panel.ui %%DATADIR%%/data/ui/coverchooser.ui %%DATADIR%%/data/ui/covermanager.ui %%DATADIR%%/data/ui/coverwindow.ui %%DATADIR%%/data/ui/device_manager.ui -%%DATADIR%%/data/ui/device_panel.ui -%%DATADIR%%/data/ui/files_panel.ui -%%DATADIR%%/data/ui/flatplaylist_panel.ui %%DATADIR%%/data/ui/main.ui -%%DATADIR%%/data/ui/osd_window.ui -%%DATADIR%%/data/ui/playlists_panel.ui +%%DATADIR%%/data/ui/panel/collection.ui +%%DATADIR%%/data/ui/panel/device.ui +%%DATADIR%%/data/ui/panel/files.ui +%%DATADIR%%/data/ui/panel/flatplaylist.ui +%%DATADIR%%/data/ui/panel/playlists.ui +%%DATADIR%%/data/ui/panel/radio.ui +%%DATADIR%%/data/ui/playlist.ui %%DATADIR%%/data/ui/preferences/appearance.ui %%DATADIR%%/data/ui/preferences/collection.ui %%DATADIR%%/data/ui/preferences/cover.ui %%DATADIR%%/data/ui/preferences/general.ui -%%DATADIR%%/data/ui/preferences/osd.ui %%DATADIR%%/data/ui/preferences/playback.ui %%DATADIR%%/data/ui/preferences/playlists.ui %%DATADIR%%/data/ui/preferences/plugin.ui %%DATADIR%%/data/ui/preferences/preferences_dialog.ui %%DATADIR%%/data/ui/queue_dialog.ui -%%DATADIR%%/data/ui/radio_panel.ui %%DATADIR%%/data/ui/splash.ui %%DATADIR%%/data/ui/trackproperties_dialog.ui +%%DATADIR%%/data/ui/trackproperties_dialog_cover_row.ui %%DATADIR%%/data/ui/widgets/track_info.ui %%DATADIR%%/data/ui/widgets/tracklist_info.ui %%DATADIR%%/data/ui/widgets/volume_control.ui +%%DATADIR%%/plugins/abrepeat/PLUGININFO +%%DATADIR%%/plugins/abrepeat/__init__.py +%%DATADIR%%/plugins/abrepeat/__init__.pyc +%%DATADIR%%/plugins/abrepeat/__init__.pyo %%DATADIR%%/plugins/alarmclock/PLUGININFO %%DATADIR%%/plugins/alarmclock/__init__.py %%DATADIR%%/plugins/alarmclock/__init__.pyc @@ -103,6 +440,8 @@ %%DATADIR%%/plugins/audioscrobbler/asprefs.pyc %%DATADIR%%/plugins/audioscrobbler/asprefs.pyo %%DATADIR%%/plugins/audioscrobbler/asprefs_pane.ui +%%DATADIR%%/plugins/audioscrobbler/icons/16x16/audioscrobbler.png +%%DATADIR%%/plugins/audioscrobbler/icons/22x22/audioscrobbler.png %%DATADIR%%/plugins/awn/PLUGININFO %%DATADIR%%/plugins/awn/__init__.py %%DATADIR%%/plugins/awn/__init__.pyc @@ -119,6 +458,11 @@ %%DATADIR%%/plugins/bookmarks/bookmarksprefs.py %%DATADIR%%/plugins/bookmarks/bookmarksprefs.pyc %%DATADIR%%/plugins/bookmarks/bookmarksprefs.pyo +%%DATADIR%%/plugins/bpm/PLUGININFO +%%DATADIR%%/plugins/bpm/__init__.py +%%DATADIR%%/plugins/bpm/__init__.pyc +%%DATADIR%%/plugins/bpm/__init__.pyo +%%DATADIR%%/plugins/bpm/bpm.glade %%DATADIR%%/plugins/cd/PLUGININFO %%DATADIR%%/plugins/cd/__init__.py %%DATADIR%%/plugins/cd/__init__.pyc @@ -187,6 +531,10 @@ %%DATADIR%%/plugins/daapclient/daap_data.py %%DATADIR%%/plugins/daapclient/daap_data.pyc %%DATADIR%%/plugins/daapclient/daap_data.pyo +%%DATADIR%%/plugins/daapclient/daapclient_prefs.ui +%%DATADIR%%/plugins/daapclient/daapclientprefs.py +%%DATADIR%%/plugins/daapclient/daapclientprefs.pyc +%%DATADIR%%/plugins/daapclient/daapclientprefs.pyo %%DATADIR%%/plugins/daapserver/COPYING %%DATADIR%%/plugins/daapserver/PLUGININFO %%DATADIR%%/plugins/daapserver/README @@ -284,13 +632,32 @@ %%DATADIR%%/plugins/gnomemmkeys/__init__.py %%DATADIR%%/plugins/gnomemmkeys/__init__.pyc %%DATADIR%%/plugins/gnomemmkeys/__init__.pyo -%%DATADIR%%/plugins/helloworld/PLUGININFO -%%DATADIR%%/plugins/helloworld/__init__.py -%%DATADIR%%/plugins/helloworld/__init__.pyc -%%DATADIR%%/plugins/helloworld/__init__.pyo -%%DATADIR%%/plugins/helloworld/testlib.py -%%DATADIR%%/plugins/helloworld/testlib.pyc -%%DATADIR%%/plugins/helloworld/testlib.pyo +%%DATADIR%%/plugins/grouptagger/PLUGININFO +%%DATADIR%%/plugins/grouptagger/__init__.py +%%DATADIR%%/plugins/grouptagger/__init__.pyc +%%DATADIR%%/plugins/grouptagger/__init__.pyo +%%DATADIR%%/plugins/grouptagger/gt_common.py +%%DATADIR%%/plugins/grouptagger/gt_common.pyc +%%DATADIR%%/plugins/grouptagger/gt_common.pyo +%%DATADIR%%/plugins/grouptagger/gt_prefs.py +%%DATADIR%%/plugins/grouptagger/gt_prefs.pyc +%%DATADIR%%/plugins/grouptagger/gt_prefs.pyo +%%DATADIR%%/plugins/grouptagger/gt_prefs.ui +%%DATADIR%%/plugins/grouptagger/gt_widgets.py +%%DATADIR%%/plugins/grouptagger/gt_widgets.pyc +%%DATADIR%%/plugins/grouptagger/gt_widgets.pyo +%%DATADIR%%/plugins/history/PLUGININFO +%%DATADIR%%/plugins/history/__init__.py +%%DATADIR%%/plugins/history/__init__.pyc +%%DATADIR%%/plugins/history/__init__.pyo +%%DATADIR%%/plugins/history/history_preferences.py +%%DATADIR%%/plugins/history/history_preferences.pyc +%%DATADIR%%/plugins/history/history_preferences.pyo +%%DATADIR%%/plugins/history/history_preferences.ui +%%DATADIR%%/plugins/inhibitsuspend/PLUGININFO +%%DATADIR%%/plugins/inhibitsuspend/__init__.py +%%DATADIR%%/plugins/inhibitsuspend/__init__.pyc +%%DATADIR%%/plugins/inhibitsuspend/__init__.pyo %%DATADIR%%/plugins/ipconsole/PLUGININFO %%DATADIR%%/plugins/ipconsole/__init__.py %%DATADIR%%/plugins/ipconsole/__init__.pyc @@ -299,9 +666,18 @@ %%DATADIR%%/plugins/ipconsole/ipconsoleprefs.py %%DATADIR%%/plugins/ipconsole/ipconsoleprefs.pyc %%DATADIR%%/plugins/ipconsole/ipconsoleprefs.pyo -%%DATADIR%%/plugins/ipconsole/ipython_view.py -%%DATADIR%%/plugins/ipconsole/ipython_view.pyc -%%DATADIR%%/plugins/ipconsole/ipython_view.pyo +%%DATADIR%%/plugins/ipconsole/ipython_view/__init__.py +%%DATADIR%%/plugins/ipconsole/ipython_view/__init__.pyc +%%DATADIR%%/plugins/ipconsole/ipython_view/__init__.pyo +%%DATADIR%%/plugins/ipconsole/ipython_view/ipython_view.py +%%DATADIR%%/plugins/ipconsole/ipython_view/ipython_view.pyc +%%DATADIR%%/plugins/ipconsole/ipython_view/ipython_view.pyo +%%DATADIR%%/plugins/ipconsole/ipython_view/ipython_view2.py +%%DATADIR%%/plugins/ipconsole/ipython_view/ipython_view2.pyc +%%DATADIR%%/plugins/ipconsole/ipython_view/ipython_view2.pyo +%%DATADIR%%/plugins/ipconsole/ipython_view/ipython_view2gi.py +%%DATADIR%%/plugins/ipconsole/ipython_view/ipython_view2gi.pyc +%%DATADIR%%/plugins/ipconsole/ipython_view/ipython_view2gi.pyo %%DATADIR%%/plugins/ipod/PLUGININFO %%DATADIR%%/plugins/ipod/__init__.py %%DATADIR%%/plugins/ipod/__init__.pyc @@ -395,6 +771,30 @@ %%DATADIR%%/plugins/lastfmdynamic/__init__.py %%DATADIR%%/plugins/lastfmdynamic/__init__.pyc %%DATADIR%%/plugins/lastfmdynamic/__init__.pyo +%%DATADIR%%/plugins/lastfmlove/PLUGININFO +%%DATADIR%%/plugins/lastfmlove/__init__.py +%%DATADIR%%/plugins/lastfmlove/__init__.pyc +%%DATADIR%%/plugins/lastfmlove/__init__.pyo +%%DATADIR%%/plugins/lastfmlove/cellrenderertoggleimage.py +%%DATADIR%%/plugins/lastfmlove/cellrenderertoggleimage.pyc +%%DATADIR%%/plugins/lastfmlove/cellrenderertoggleimage.pyo +%%DATADIR%%/plugins/lastfmlove/icons/16x16/lastfm.png +%%DATADIR%%/plugins/lastfmlove/icons/16x16/love.png +%%DATADIR%%/plugins/lastfmlove/icons/16x16/send-receive.png +%%DATADIR%%/plugins/lastfmlove/icons/22x22/lastfm.png +%%DATADIR%%/plugins/lastfmlove/icons/22x22/love.png +%%DATADIR%%/plugins/lastfmlove/icons/22x22/send-receive.png +%%DATADIR%%/plugins/lastfmlove/icons/32x32/love.png +%%DATADIR%%/plugins/lastfmlove/icons/32x32/send-receive.png +%%DATADIR%%/plugins/lastfmlove/icons/48x48/love.png +%%DATADIR%%/plugins/lastfmlove/icons/48x48/send-receive.png +%%DATADIR%%/plugins/lastfmlove/lastfmlove_preferences.py +%%DATADIR%%/plugins/lastfmlove/lastfmlove_preferences.pyc +%%DATADIR%%/plugins/lastfmlove/lastfmlove_preferences.pyo +%%DATADIR%%/plugins/lastfmlove/lastfmlove_preferences.ui +%%DATADIR%%/plugins/lastfmlove/pylast.py +%%DATADIR%%/plugins/lastfmlove/pylast.pyc +%%DATADIR%%/plugins/lastfmlove/pylast.pyo %%DATADIR%%/plugins/librivox/PLUGININFO %%DATADIR%%/plugins/librivox/__init__.py %%DATADIR%%/plugins/librivox/__init__.pyc @@ -418,10 +818,18 @@ %%DATADIR%%/plugins/lyricsviewer/__init__.pyo %%DATADIR%%/plugins/lyricsviewer/images/loading.gif %%DATADIR%%/plugins/lyricsviewer/lyricsviewer.ui +%%DATADIR%%/plugins/lyricsviewer/lyricsviewer_prefs.ui +%%DATADIR%%/plugins/lyricsviewer/lyricsviewerprefs.py +%%DATADIR%%/plugins/lyricsviewer/lyricsviewerprefs.pyc +%%DATADIR%%/plugins/lyricsviewer/lyricsviewerprefs.pyo %%DATADIR%%/plugins/lyricwiki/PLUGININFO %%DATADIR%%/plugins/lyricwiki/__init__.py %%DATADIR%%/plugins/lyricwiki/__init__.pyc %%DATADIR%%/plugins/lyricwiki/__init__.pyo +%%DATADIR%%/plugins/mainmenubutton/PLUGININFO +%%DATADIR%%/plugins/mainmenubutton/__init__.py +%%DATADIR%%/plugins/mainmenubutton/__init__.pyc +%%DATADIR%%/plugins/mainmenubutton/__init__.pyo %%DATADIR%%/plugins/massstorage/PLUGININFO %%DATADIR%%/plugins/massstorage/__init__.py %%DATADIR%%/plugins/massstorage/__init__.pyc @@ -430,6 +838,9 @@ %%DATADIR%%/plugins/minimode/__init__.py %%DATADIR%%/plugins/minimode/__init__.pyc %%DATADIR%%/plugins/minimode/__init__.pyo +%%DATADIR%%/plugins/minimode/controls.py +%%DATADIR%%/plugins/minimode/controls.pyc +%%DATADIR%%/plugins/minimode/controls.pyo %%DATADIR%%/plugins/minimode/icons/exaile-minimode16.png %%DATADIR%%/plugins/minimode/icons/exaile-minimode22.png %%DATADIR%%/plugins/minimode/icons/exaile-minimode24.png @@ -438,9 +849,6 @@ %%DATADIR%%/plugins/minimode/minimode_preferences.pyc %%DATADIR%%/plugins/minimode/minimode_preferences.pyo %%DATADIR%%/plugins/minimode/minimode_preferences.ui -%%DATADIR%%/plugins/minimode/mmwidgets.py -%%DATADIR%%/plugins/minimode/mmwidgets.pyc -%%DATADIR%%/plugins/minimode/mmwidgets.pyo %%DATADIR%%/plugins/moodbar/PLUGININFO %%DATADIR%%/plugins/moodbar/__init__.py %%DATADIR%%/plugins/moodbar/__init__.pyc @@ -472,15 +880,40 @@ %%DATADIR%%/plugins/multialarmclock/__init__.py %%DATADIR%%/plugins/multialarmclock/__init__.pyc %%DATADIR%%/plugins/multialarmclock/__init__.pyo -%%DATADIR%%/plugins/multialarmclock/alarmclk.ui -%%DATADIR%%/plugins/multialarmclock/clock32.png +%%DATADIR%%/plugins/multialarmclock/cellrenderers.py +%%DATADIR%%/plugins/multialarmclock/cellrenderers.pyc +%%DATADIR%%/plugins/multialarmclock/cellrenderers.pyo +%%DATADIR%%/plugins/multialarmclock/icons/clock32.png +%%DATADIR%%/plugins/multialarmclock/macprefs.py +%%DATADIR%%/plugins/multialarmclock/macprefs.pyc +%%DATADIR%%/plugins/multialarmclock/macprefs.pyo +%%DATADIR%%/plugins/multialarmclock/malrmclk.ui +%%DATADIR%%/plugins/musicbrainzcovers/CHANGES +%%DATADIR%%/plugins/musicbrainzcovers/COPYING +%%DATADIR%%/plugins/musicbrainzcovers/PLUGININFO +%%DATADIR%%/plugins/musicbrainzcovers/README.md +%%DATADIR%%/plugins/musicbrainzcovers/__init__.py +%%DATADIR%%/plugins/musicbrainzcovers/__init__.pyc +%%DATADIR%%/plugins/musicbrainzcovers/__init__.pyo +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/__init__.py +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/__init__.pyc +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/__init__.pyo +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/compat.py +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/compat.pyc +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/compat.pyo +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/mbxml.py +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/mbxml.pyc +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/mbxml.pyo +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/musicbrainz.py +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/musicbrainz.pyc +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/musicbrainz.pyo +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/util.py +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/util.pyc +%%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs/util.pyo %%DATADIR%%/plugins/notify/PLUGININFO %%DATADIR%%/plugins/notify/__init__.py %%DATADIR%%/plugins/notify/__init__.pyc %%DATADIR%%/plugins/notify/__init__.pyo -%%DATADIR%%/plugins/notify/notify_cover.py -%%DATADIR%%/plugins/notify/notify_cover.pyc -%%DATADIR%%/plugins/notify/notify_cover.pyo %%DATADIR%%/plugins/notify/notifyprefs.py %%DATADIR%%/plugins/notify/notifyprefs.pyc %%DATADIR%%/plugins/notify/notifyprefs.pyo @@ -489,13 +922,24 @@ %%DATADIR%%/plugins/notifyosd/__init__.py %%DATADIR%%/plugins/notifyosd/__init__.pyc %%DATADIR%%/plugins/notifyosd/__init__.pyo -%%DATADIR%%/plugins/notifyosd/notifyosd_cover.py -%%DATADIR%%/plugins/notifyosd/notifyosd_cover.pyc -%%DATADIR%%/plugins/notifyosd/notifyosd_cover.pyo %%DATADIR%%/plugins/notifyosd/notifyosdprefs.py %%DATADIR%%/plugins/notifyosd/notifyosdprefs.pyc %%DATADIR%%/plugins/notifyosd/notifyosdprefs.pyo %%DATADIR%%/plugins/notifyosd/notifyosdprefs_pane.ui +%%DATADIR%%/plugins/osd/PLUGININFO +%%DATADIR%%/plugins/osd/__init__.py +%%DATADIR%%/plugins/osd/__init__.pyc +%%DATADIR%%/plugins/osd/__init__.pyo +%%DATADIR%%/plugins/osd/alphacolor.py +%%DATADIR%%/plugins/osd/alphacolor.pyc +%%DATADIR%%/plugins/osd/alphacolor.pyo +%%DATADIR%%/plugins/osd/migration.py +%%DATADIR%%/plugins/osd/migration.pyc +%%DATADIR%%/plugins/osd/migration.pyo +%%DATADIR%%/plugins/osd/osd_preferences.py +%%DATADIR%%/plugins/osd/osd_preferences.pyc +%%DATADIR%%/plugins/osd/osd_preferences.pyo +%%DATADIR%%/plugins/osd/osd_preferences.ui %%DATADIR%%/plugins/podcasts/PLUGININFO %%DATADIR%%/plugins/podcasts/__init__.py %%DATADIR%%/plugins/podcasts/__init__.pyc @@ -504,6 +948,14 @@ %%DATADIR%%/plugins/podcasts/_feedparser.pyc %%DATADIR%%/plugins/podcasts/_feedparser.pyo %%DATADIR%%/plugins/podcasts/podcasts.ui +%%DATADIR%%/plugins/previewdevice/PLUGININFO +%%DATADIR%%/plugins/previewdevice/__init__.py +%%DATADIR%%/plugins/previewdevice/__init__.pyc +%%DATADIR%%/plugins/previewdevice/__init__.pyo +%%DATADIR%%/plugins/previewdevice/previewprefs.py +%%DATADIR%%/plugins/previewdevice/previewprefs.pyc +%%DATADIR%%/plugins/previewdevice/previewprefs.pyo +%%DATADIR%%/plugins/previewdevice/previewprefs.ui %%DATADIR%%/plugins/replaygain/PLUGININFO %%DATADIR%%/plugins/replaygain/__init__.py %%DATADIR%%/plugins/replaygain/__init__.pyc @@ -516,6 +968,10 @@ %%DATADIR%%/plugins/screensaverpause/__init__.py %%DATADIR%%/plugins/screensaverpause/__init__.pyc %%DATADIR%%/plugins/screensaverpause/__init__.pyo +%%DATADIR%%/plugins/screensaverpause/prefs.py +%%DATADIR%%/plugins/screensaverpause/prefs.pyc +%%DATADIR%%/plugins/screensaverpause/prefs.pyo +%%DATADIR%%/plugins/screensaverpause/prefs.ui %%DATADIR%%/plugins/shutdown/PLUGININFO %%DATADIR%%/plugins/shutdown/__init__.py %%DATADIR%%/plugins/shutdown/__init__.pyc @@ -528,10 +984,33 @@ %%DATADIR%%/plugins/streamripper/srprefs.pyc %%DATADIR%%/plugins/streamripper/srprefs.pyo %%DATADIR%%/plugins/streamripper/streamripper.ui +%%DATADIR%%/plugins/wikipedia/PLUGININFO +%%DATADIR%%/plugins/wikipedia/__init__.py +%%DATADIR%%/plugins/wikipedia/__init__.pyc +%%DATADIR%%/plugins/wikipedia/__init__.pyo +%%DATADIR%%/plugins/wikipedia/config.py +%%DATADIR%%/plugins/wikipedia/config.pyc +%%DATADIR%%/plugins/wikipedia/config.pyo +%%DATADIR%%/plugins/wikipedia/data/preferences.ui +%%DATADIR%%/plugins/wikipedia/data/wikipanel.ui +%%DATADIR%%/plugins/wikipedia/plugin.py +%%DATADIR%%/plugins/wikipedia/plugin.pyc +%%DATADIR%%/plugins/wikipedia/plugin.pyo +%%DATADIR%%/plugins/wikipedia/preferences.py +%%DATADIR%%/plugins/wikipedia/preferences.pyc +%%DATADIR%%/plugins/wikipedia/preferences.pyo +%%DATADIR%%/plugins/wikipedia/sentencesplitter.py +%%DATADIR%%/plugins/wikipedia/sentencesplitter.pyc +%%DATADIR%%/plugins/wikipedia/sentencesplitter.pyo +%%DATADIR%%/plugins/winmmkeys/PLUGININFO +%%DATADIR%%/plugins/winmmkeys/__init__.py +%%DATADIR%%/plugins/winmmkeys/__init__.pyc +%%DATADIR%%/plugins/winmmkeys/__init__.pyo %%DATADIR%%/plugins/xkeys/PLUGININFO %%DATADIR%%/plugins/xkeys/__init__.py %%DATADIR%%/plugins/xkeys/__init__.pyc %%DATADIR%%/plugins/xkeys/__init__.pyo +%%NLS%%share/locale/af/LC_MESSAGES/exaile.mo %%NLS%%share/locale/ar/LC_MESSAGES/exaile.mo %%NLS%%share/locale/ast/LC_MESSAGES/exaile.mo %%NLS%%share/locale/be/LC_MESSAGES/exaile.mo @@ -545,6 +1024,8 @@ %%NLS%%share/locale/da/LC_MESSAGES/exaile.mo %%NLS%%share/locale/de/LC_MESSAGES/exaile.mo %%NLS%%share/locale/el/LC_MESSAGES/exaile.mo +%%NLS%%share/locale/en/LC_MESSAGES/exaile.mo +%%NLS%%share/locale/en_AU/LC_MESSAGES/exaile.mo %%NLS%%share/locale/en_CA/LC_MESSAGES/exaile.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/exaile.mo %%NLS%%share/locale/eo/LC_MESSAGES/exaile.mo @@ -553,8 +1034,10 @@ %%NLS%%share/locale/eu/LC_MESSAGES/exaile.mo %%NLS%%share/locale/fa/LC_MESSAGES/exaile.mo %%NLS%%share/locale/fi/LC_MESSAGES/exaile.mo +%%NLS%%share/locale/fo/LC_MESSAGES/exaile.mo %%NLS%%share/locale/fr/LC_MESSAGES/exaile.mo %%NLS%%share/locale/frp/LC_MESSAGES/exaile.mo +%%NLS%%share/locale/fy/LC_MESSAGES/exaile.mo %%NLS%%share/locale/gl/LC_MESSAGES/exaile.mo %%NLS%%share/locale/gu/LC_MESSAGES/exaile.mo %%NLS%%share/locale/he/LC_MESSAGES/exaile.mo @@ -575,11 +1058,13 @@ %%NLS%%share/locale/nb/LC_MESSAGES/exaile.mo %%NLS%%share/locale/nl/LC_MESSAGES/exaile.mo %%NLS%%share/locale/oc/LC_MESSAGES/exaile.mo +%%NLS%%share/locale/os/LC_MESSAGES/exaile.mo %%NLS%%share/locale/pl/LC_MESSAGES/exaile.mo %%NLS%%share/locale/pt/LC_MESSAGES/exaile.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/exaile.mo %%NLS%%share/locale/ro/LC_MESSAGES/exaile.mo %%NLS%%share/locale/ru/LC_MESSAGES/exaile.mo +%%NLS%%share/locale/si/LC_MESSAGES/exaile.mo %%NLS%%share/locale/sk/LC_MESSAGES/exaile.mo %%NLS%%share/locale/sl/LC_MESSAGES/exaile.mo %%NLS%%share/locale/sq/LC_MESSAGES/exaile.mo @@ -588,346 +1073,79 @@ %%NLS%%share/locale/sw/LC_MESSAGES/exaile.mo %%NLS%%share/locale/ta/LC_MESSAGES/exaile.mo %%NLS%%share/locale/te/LC_MESSAGES/exaile.mo +%%NLS%%share/locale/th/LC_MESSAGES/exaile.mo %%NLS%%share/locale/tl/LC_MESSAGES/exaile.mo %%NLS%%share/locale/tr/LC_MESSAGES/exaile.mo +%%NLS%%share/locale/ts/LC_MESSAGES/exaile.mo %%NLS%%share/locale/uk/LC_MESSAGES/exaile.mo +%%NLS%%share/locale/ur/LC_MESSAGES/exaile.mo %%NLS%%share/locale/vi/LC_MESSAGES/exaile.mo %%NLS%%share/locale/zh/LC_MESSAGES/exaile.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/exaile.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/exaile.mo -bin/exaile -etc/xdg/exaile/settings.ini -lib/exaile/exaile.py -lib/exaile/xl/__init__.py -lib/exaile/xl/__init__.pyc -lib/exaile/xl/__init__.pyo -lib/exaile/xl/collection.py -lib/exaile/xl/collection.pyc -lib/exaile/xl/collection.pyo -lib/exaile/xl/common.py -lib/exaile/xl/common.pyc -lib/exaile/xl/common.pyo -lib/exaile/xl/covers.py -lib/exaile/xl/covers.pyc -lib/exaile/xl/covers.pyo -lib/exaile/xl/devices.py -lib/exaile/xl/devices.pyc -lib/exaile/xl/devices.pyo -lib/exaile/xl/dynamic.py -lib/exaile/xl/dynamic.pyc -lib/exaile/xl/dynamic.pyo -lib/exaile/xl/event.py -lib/exaile/xl/event.pyc -lib/exaile/xl/event.pyo -lib/exaile/xl/formatter.py -lib/exaile/xl/formatter.pyc -lib/exaile/xl/formatter.pyo -lib/exaile/xl/hal.py -lib/exaile/xl/hal.pyc -lib/exaile/xl/hal.pyo -lib/exaile/xl/lyrics.py -lib/exaile/xl/lyrics.pyc -lib/exaile/xl/lyrics.pyo -lib/exaile/xl/main.py -lib/exaile/xl/main.pyc -lib/exaile/xl/main.pyo -lib/exaile/xl/metadata/__init__.py -lib/exaile/xl/metadata/__init__.pyc -lib/exaile/xl/metadata/__init__.pyo -lib/exaile/xl/metadata/_apev2.py -lib/exaile/xl/metadata/_apev2.pyc -lib/exaile/xl/metadata/_apev2.pyo -lib/exaile/xl/metadata/_base.py -lib/exaile/xl/metadata/_base.pyc -lib/exaile/xl/metadata/_base.pyo -lib/exaile/xl/metadata/_id3.py -lib/exaile/xl/metadata/_id3.pyc -lib/exaile/xl/metadata/_id3.pyo -lib/exaile/xl/metadata/_matroska.py -lib/exaile/xl/metadata/_matroska.pyc -lib/exaile/xl/metadata/_matroska.pyo -lib/exaile/xl/metadata/ape.py -lib/exaile/xl/metadata/ape.pyc -lib/exaile/xl/metadata/ape.pyo -lib/exaile/xl/metadata/asf.py -lib/exaile/xl/metadata/asf.pyc -lib/exaile/xl/metadata/asf.pyo -lib/exaile/xl/metadata/flac.py -lib/exaile/xl/metadata/flac.pyc -lib/exaile/xl/metadata/flac.pyo -lib/exaile/xl/metadata/mka.py -lib/exaile/xl/metadata/mka.pyc -lib/exaile/xl/metadata/mka.pyo -lib/exaile/xl/metadata/mod.py -lib/exaile/xl/metadata/mod.pyc -lib/exaile/xl/metadata/mod.pyo -lib/exaile/xl/metadata/mp3.py -lib/exaile/xl/metadata/mp3.pyc -lib/exaile/xl/metadata/mp3.pyo -lib/exaile/xl/metadata/mp4.py -lib/exaile/xl/metadata/mp4.pyc -lib/exaile/xl/metadata/mp4.pyo -lib/exaile/xl/metadata/mpc.py -lib/exaile/xl/metadata/mpc.pyc -lib/exaile/xl/metadata/mpc.pyo -lib/exaile/xl/metadata/ogg.py -lib/exaile/xl/metadata/ogg.pyc -lib/exaile/xl/metadata/ogg.pyo -lib/exaile/xl/metadata/sid.py -lib/exaile/xl/metadata/sid.pyc -lib/exaile/xl/metadata/sid.pyo -lib/exaile/xl/metadata/speex.py -lib/exaile/xl/metadata/speex.pyc -lib/exaile/xl/metadata/speex.pyo -lib/exaile/xl/metadata/tta.py -lib/exaile/xl/metadata/tta.pyc -lib/exaile/xl/metadata/tta.pyo -lib/exaile/xl/metadata/wav.py -lib/exaile/xl/metadata/wav.pyc -lib/exaile/xl/metadata/wav.pyo -lib/exaile/xl/metadata/wv.py -lib/exaile/xl/metadata/wv.pyc -lib/exaile/xl/metadata/wv.pyo -lib/exaile/xl/migrations/__init__.py -lib/exaile/xl/migrations/__init__.pyc -lib/exaile/xl/migrations/__init__.pyo -lib/exaile/xl/migrations/database/__init__.py -lib/exaile/xl/migrations/database/__init__.pyc -lib/exaile/xl/migrations/database/__init__.pyo -lib/exaile/xl/migrations/database/from1to2.py -lib/exaile/xl/migrations/database/from1to2.pyc -lib/exaile/xl/migrations/database/from1to2.pyo -lib/exaile/xl/migrations/settings/__init__.py -lib/exaile/xl/migrations/settings/__init__.pyc -lib/exaile/xl/migrations/settings/__init__.pyo -lib/exaile/xl/migrations/settings/rating.py -lib/exaile/xl/migrations/settings/rating.pyc -lib/exaile/xl/migrations/settings/rating.pyo -lib/exaile/xl/nls.py -lib/exaile/xl/nls.pyc -lib/exaile/xl/nls.pyo -lib/exaile/xl/player/__init__.py -lib/exaile/xl/player/__init__.pyc -lib/exaile/xl/player/__init__.pyo -lib/exaile/xl/player/_base.py -lib/exaile/xl/player/_base.pyc -lib/exaile/xl/player/_base.pyo -lib/exaile/xl/player/engine_normal.py -lib/exaile/xl/player/engine_normal.pyc -lib/exaile/xl/player/engine_normal.pyo -lib/exaile/xl/player/engine_unified.py -lib/exaile/xl/player/engine_unified.pyc -lib/exaile/xl/player/engine_unified.pyo -lib/exaile/xl/player/pipe.py -lib/exaile/xl/player/pipe.pyc -lib/exaile/xl/player/pipe.pyo -lib/exaile/xl/player/queue.py -lib/exaile/xl/player/queue.pyc -lib/exaile/xl/player/queue.pyo -lib/exaile/xl/playlist.py -lib/exaile/xl/playlist.pyc -lib/exaile/xl/playlist.pyo -lib/exaile/xl/plugins.py -lib/exaile/xl/plugins.pyc -lib/exaile/xl/plugins.pyo -lib/exaile/xl/providers.py -lib/exaile/xl/providers.pyc -lib/exaile/xl/providers.pyo -lib/exaile/xl/radio.py -lib/exaile/xl/radio.pyc -lib/exaile/xl/radio.pyo -lib/exaile/xl/settings.py -lib/exaile/xl/settings.pyc -lib/exaile/xl/settings.pyo -lib/exaile/xl/transcoder.py -lib/exaile/xl/transcoder.pyc -lib/exaile/xl/transcoder.pyo -lib/exaile/xl/trax/__init__.py -lib/exaile/xl/trax/__init__.pyc -lib/exaile/xl/trax/__init__.pyo -lib/exaile/xl/trax/search.py -lib/exaile/xl/trax/search.pyc -lib/exaile/xl/trax/search.pyo -lib/exaile/xl/trax/track.py -lib/exaile/xl/trax/track.pyc -lib/exaile/xl/trax/track.pyo -lib/exaile/xl/trax/trackdb.py -lib/exaile/xl/trax/trackdb.pyc -lib/exaile/xl/trax/trackdb.pyo -lib/exaile/xl/trax/util.py -lib/exaile/xl/trax/util.pyc -lib/exaile/xl/trax/util.pyo -lib/exaile/xl/version.py -lib/exaile/xl/version.pyc -lib/exaile/xl/version.pyo -lib/exaile/xl/xdg.py -lib/exaile/xl/xdg.pyc -lib/exaile/xl/xdg.pyo -lib/exaile/xl/xldbus.py -lib/exaile/xl/xldbus.pyc -lib/exaile/xl/xldbus.pyo -lib/exaile/xlgui/__init__.py -lib/exaile/xlgui/__init__.pyc -lib/exaile/xlgui/__init__.pyo -lib/exaile/xlgui/collection.py -lib/exaile/xlgui/collection.pyc -lib/exaile/xlgui/collection.pyo -lib/exaile/xlgui/cover.py -lib/exaile/xlgui/cover.pyc -lib/exaile/xlgui/cover.pyo -lib/exaile/xlgui/devices.py -lib/exaile/xlgui/devices.pyc -lib/exaile/xlgui/devices.pyo -lib/exaile/xlgui/guiutil.py -lib/exaile/xlgui/guiutil.pyc -lib/exaile/xlgui/guiutil.pyo -lib/exaile/xlgui/icons.py -lib/exaile/xlgui/icons.pyc -lib/exaile/xlgui/icons.pyo -lib/exaile/xlgui/main.py -lib/exaile/xlgui/main.pyc -lib/exaile/xlgui/main.pyo -lib/exaile/xlgui/menu.py -lib/exaile/xlgui/menu.pyc -lib/exaile/xlgui/menu.pyo -lib/exaile/xlgui/osd.py -lib/exaile/xlgui/osd.pyc -lib/exaile/xlgui/osd.pyo -lib/exaile/xlgui/panel/__init__.py -lib/exaile/xlgui/panel/__init__.pyc -lib/exaile/xlgui/panel/__init__.pyo -lib/exaile/xlgui/panel/collection.py -lib/exaile/xlgui/panel/collection.pyc -lib/exaile/xlgui/panel/collection.pyo -lib/exaile/xlgui/panel/device.py -lib/exaile/xlgui/panel/device.pyc -lib/exaile/xlgui/panel/device.pyo -lib/exaile/xlgui/panel/files.py -lib/exaile/xlgui/panel/files.pyc -lib/exaile/xlgui/panel/files.pyo -lib/exaile/xlgui/panel/flatplaylist.py -lib/exaile/xlgui/panel/flatplaylist.pyc -lib/exaile/xlgui/panel/flatplaylist.pyo -lib/exaile/xlgui/panel/playlists.py -lib/exaile/xlgui/panel/playlists.pyc -lib/exaile/xlgui/panel/playlists.pyo -lib/exaile/xlgui/panel/radio.py -lib/exaile/xlgui/panel/radio.pyc -lib/exaile/xlgui/panel/radio.pyo -lib/exaile/xlgui/playlist.py -lib/exaile/xlgui/playlist.pyc -lib/exaile/xlgui/playlist.pyo -lib/exaile/xlgui/plcolumns.py -lib/exaile/xlgui/plcolumns.pyc -lib/exaile/xlgui/plcolumns.pyo -lib/exaile/xlgui/preferences/__init__.py -lib/exaile/xlgui/preferences/__init__.pyc -lib/exaile/xlgui/preferences/__init__.pyo -lib/exaile/xlgui/preferences/appearance.py -lib/exaile/xlgui/preferences/appearance.pyc -lib/exaile/xlgui/preferences/appearance.pyo -lib/exaile/xlgui/preferences/collection.py -lib/exaile/xlgui/preferences/collection.pyc -lib/exaile/xlgui/preferences/collection.pyo -lib/exaile/xlgui/preferences/cover.py -lib/exaile/xlgui/preferences/cover.pyc -lib/exaile/xlgui/preferences/cover.pyo -lib/exaile/xlgui/preferences/osd.py -lib/exaile/xlgui/preferences/osd.pyc -lib/exaile/xlgui/preferences/osd.pyo -lib/exaile/xlgui/preferences/playback.py -lib/exaile/xlgui/preferences/playback.pyc -lib/exaile/xlgui/preferences/playback.pyo -lib/exaile/xlgui/preferences/playlists.py -lib/exaile/xlgui/preferences/playlists.pyc -lib/exaile/xlgui/preferences/playlists.pyo -lib/exaile/xlgui/preferences/plugin.py -lib/exaile/xlgui/preferences/plugin.pyc -lib/exaile/xlgui/preferences/plugin.pyo -lib/exaile/xlgui/preferences/widgets.py -lib/exaile/xlgui/preferences/widgets.pyc -lib/exaile/xlgui/preferences/widgets.pyo -lib/exaile/xlgui/progress.py -lib/exaile/xlgui/progress.pyc -lib/exaile/xlgui/progress.pyo -lib/exaile/xlgui/properties.py -lib/exaile/xlgui/properties.pyc -lib/exaile/xlgui/properties.pyo -lib/exaile/xlgui/queue.py -lib/exaile/xlgui/queue.pyc -lib/exaile/xlgui/queue.pyo -lib/exaile/xlgui/tray.py -lib/exaile/xlgui/tray.pyc -lib/exaile/xlgui/tray.pyo -lib/exaile/xlgui/widgets/__init__.py -lib/exaile/xlgui/widgets/__init__.pyc -lib/exaile/xlgui/widgets/__init__.pyo -lib/exaile/xlgui/widgets/dialogs.py -lib/exaile/xlgui/widgets/dialogs.pyc -lib/exaile/xlgui/widgets/dialogs.pyo -lib/exaile/xlgui/widgets/filter.py -lib/exaile/xlgui/widgets/filter.pyc -lib/exaile/xlgui/widgets/filter.pyo -lib/exaile/xlgui/widgets/info.py -lib/exaile/xlgui/widgets/info.pyc -lib/exaile/xlgui/widgets/info.pyo -lib/exaile/xlgui/widgets/rating.py -lib/exaile/xlgui/widgets/rating.pyc -lib/exaile/xlgui/widgets/rating.pyo -share/applications/exaile.desktop share/pixmaps/exaile.png -@dirrmtry share/applications -@dirrm etc/xdg/exaile -@dirrmtry etc/xdg -@dirrm lib/exaile/xlgui/widgets -@dirrm lib/exaile/xlgui/preferences -@dirrm lib/exaile/xlgui/panel -@dirrm lib/exaile/xlgui -@dirrm lib/exaile/xl/trax -@dirrm lib/exaile/xl/player -@dirrm lib/exaile/xl/migrations/settings -@dirrm lib/exaile/xl/migrations/database -@dirrm lib/exaile/xl/migrations -@dirrm lib/exaile/xl/metadata -@dirrm lib/exaile/xl -@dirrm lib/exaile +%%NLS%%@dirrmtry share/locale/ur/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ur +%%NLS%%@dirrmtry share/locale/ts/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ts %%NLS%%@dirrmtry share/locale/tl/LC_MESSAGES %%NLS%%@dirrmtry share/locale/tl %%NLS%%@dirrmtry share/locale/te/LC_MESSAGES %%NLS%%@dirrmtry share/locale/te %%NLS%%@dirrmtry share/locale/sw/LC_MESSAGES %%NLS%%@dirrmtry share/locale/sw +%%NLS%%@dirrmtry share/locale/si/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/si +%%NLS%%@dirrmtry share/locale/os/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/os %%NLS%%@dirrmtry share/locale/oc/LC_MESSAGES %%NLS%%@dirrmtry share/locale/oc %%NLS%%@dirrmtry share/locale/kk/LC_MESSAGES %%NLS%%@dirrmtry share/locale/kk +%%NLS%%@dirrmtry share/locale/fy/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/fy %%NLS%%@dirrmtry share/locale/frp/LC_MESSAGES %%NLS%%@dirrmtry share/locale/frp +%%NLS%%@dirrmtry share/locale/fo/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/fo %%NLS%%@dirrmtry share/locale/csb/LC_MESSAGES %%NLS%%@dirrmtry share/locale/csb %%NLS%%@dirrmtry share/locale/ast/LC_MESSAGES %%NLS%%@dirrmtry share/locale/ast -%%NLS%%@dirrmtry share/locale/an/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/an @dirrm %%DATADIR%%/plugins/xkeys +@dirrm %%DATADIR%%/plugins/winmmkeys +@dirrm %%DATADIR%%/plugins/wikipedia/data +@dirrm %%DATADIR%%/plugins/wikipedia @dirrm %%DATADIR%%/plugins/streamripper @dirrm %%DATADIR%%/plugins/shutdown @dirrm %%DATADIR%%/plugins/screensaverpause @dirrm %%DATADIR%%/plugins/replaygain +@dirrm %%DATADIR%%/plugins/previewdevice @dirrm %%DATADIR%%/plugins/podcasts +@dirrm %%DATADIR%%/plugins/osd @dirrm %%DATADIR%%/plugins/notifyosd @dirrm %%DATADIR%%/plugins/notify +@dirrm %%DATADIR%%/plugins/musicbrainzcovers/musicbrainzngs +@dirrm %%DATADIR%%/plugins/musicbrainzcovers +@dirrm %%DATADIR%%/plugins/multialarmclock/icons @dirrm %%DATADIR%%/plugins/multialarmclock @dirrm %%DATADIR%%/plugins/mpris @dirrm %%DATADIR%%/plugins/moodbar @dirrm %%DATADIR%%/plugins/minimode/icons @dirrm %%DATADIR%%/plugins/minimode @dirrm %%DATADIR%%/plugins/massstorage +@dirrm %%DATADIR%%/plugins/mainmenubutton @dirrm %%DATADIR%%/plugins/lyricwiki @dirrm %%DATADIR%%/plugins/lyricsviewer/images @dirrm %%DATADIR%%/plugins/lyricsviewer @dirrm %%DATADIR%%/plugins/lyricsfly @dirrm %%DATADIR%%/plugins/librivox +@dirrm %%DATADIR%%/plugins/lastfmlove/icons/48x48 +@dirrm %%DATADIR%%/plugins/lastfmlove/icons/32x32 +@dirrm %%DATADIR%%/plugins/lastfmlove/icons/22x22 +@dirrm %%DATADIR%%/plugins/lastfmlove/icons/16x16 +@dirrm %%DATADIR%%/plugins/lastfmlove/icons +@dirrm %%DATADIR%%/plugins/lastfmlove @dirrm %%DATADIR%%/plugins/lastfmdynamic @dirrm %%DATADIR%%/plugins/lastfmcovers @dirrm %%DATADIR%%/plugins/karaoke @@ -936,8 +1154,11 @@ @dirrm %%DATADIR%%/plugins/jamendo/simplejson @dirrm %%DATADIR%%/plugins/jamendo @dirrm %%DATADIR%%/plugins/ipod +@dirrm %%DATADIR%%/plugins/ipconsole/ipython_view @dirrm %%DATADIR%%/plugins/ipconsole -@dirrm %%DATADIR%%/plugins/helloworld +@dirrm %%DATADIR%%/plugins/inhibitsuspend +@dirrm %%DATADIR%%/plugins/history +@dirrm %%DATADIR%%/plugins/grouptagger @dirrm %%DATADIR%%/plugins/gnomemmkeys @dirrm %%DATADIR%%/plugins/exfalso @dirrm %%DATADIR%%/plugins/equalizer @@ -956,14 +1177,20 @@ @dirrm %%DATADIR%%/plugins/contextinfo/classic @dirrm %%DATADIR%%/plugins/contextinfo @dirrm %%DATADIR%%/plugins/cd +@dirrm %%DATADIR%%/plugins/bpm @dirrm %%DATADIR%%/plugins/bookmarks @dirrm %%DATADIR%%/plugins/awn +@dirrm %%DATADIR%%/plugins/audioscrobbler/icons/22x22 +@dirrm %%DATADIR%%/plugins/audioscrobbler/icons/16x16 +@dirrm %%DATADIR%%/plugins/audioscrobbler/icons @dirrm %%DATADIR%%/plugins/audioscrobbler @dirrm %%DATADIR%%/plugins/amazoncovers @dirrm %%DATADIR%%/plugins/alarmclock +@dirrm %%DATADIR%%/plugins/abrepeat @dirrm %%DATADIR%%/plugins @dirrm %%DATADIR%%/data/ui/widgets @dirrm %%DATADIR%%/data/ui/preferences +@dirrm %%DATADIR%%/data/ui/panel @dirrm %%DATADIR%%/data/ui @dirrm %%DATADIR%%/data/migrations/migration_200907100931 @dirrm %%DATADIR%%/data/migrations @@ -976,3 +1203,20 @@ @dirrm %%DATADIR%%/data/images @dirrm %%DATADIR%%/data @dirrm %%DATADIR%% +@dirrm etc/xdg/exaile +@dirrmtry etc/xdg +@dirrmtry share/applications +@dirrmtry share/man/man1 +@dirrmtry share/man +@dirrm lib/exaile/xlgui/widgets +@dirrm lib/exaile/xlgui/preferences +@dirrm lib/exaile/xlgui/panel +@dirrm lib/exaile/xlgui +@dirrm lib/exaile/xl/trax +@dirrm lib/exaile/xl/player +@dirrm lib/exaile/xl/migrations/settings +@dirrm lib/exaile/xl/migrations/database +@dirrm lib/exaile/xl/migrations +@dirrm lib/exaile/xl/metadata +@dirrm lib/exaile/xl +@dirrm lib/exaile >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 08:20:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BB0421065675 for ; Mon, 24 Sep 2012 08:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 978B38FC22 for ; Mon, 24 Sep 2012 08:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O8K9PG027559 for ; Mon, 24 Sep 2012 08:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O8K9IX027558; Mon, 24 Sep 2012 08:20:09 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 08:20:09 GMT Resent-Message-Id: <201209240820.q8O8K9IX027558@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gasol Wu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B90C106566B for ; Mon, 24 Sep 2012 08:20:00 +0000 (UTC) (envelope-from gasolwu@kkbox.com) Received: from kkbox.com (mail-out-2.kkbox.com [203.69.67.211]) by mx1.freebsd.org (Postfix) with ESMTP id EC7818FC18 for ; Mon, 24 Sep 2012 08:19:59 +0000 (UTC) Received: by goingmarry.kkbox.com (Postfix, from userid 1033) id 7CDF17471CF; Mon, 24 Sep 2012 16:19:52 +0800 (CST) Message-Id: <20120924081952.7CDF17471CF@goingmarry.kkbox.com> Date: Mon, 24 Sep 2012 16:19:52 +0800 (CST) From: Gasol Wu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/171912: [NEW PORT] devel/pear-channel-phpdoc: PEAR channel pear.phpdoc.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 08:20:09 -0000 >Number: 171912 >Category: ports >Synopsis: [NEW PORT] devel/pear-channel-phpdoc: PEAR channel pear.phpdoc.org >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 08:20:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Gasol Wu >Release: FreeBSD 9.1-RC1 amd64 >Organization: >Environment: System: FreeBSD goingmarry 9.1-RC1 FreeBSD 9.1-RC1 #0: Tue Aug 14 04:25:06 UTC 2012 >Description: PEAR channel for the phpDocumentor project WWW: http://pear.phpdoc.org/ Generated with FreeBSD Port Tools 0.99_6 (mode: new) >How-To-Repeat: >Fix: begin 644 .shar M(R!4:&ES(&ES(&$@2!Y;W4@86YD"B,@:&%V92!D969A=6QT('!E M'-D(CM]2([W,Z-SHB8F%S975R;"([83HT.GMI.C`[83HR.GMS.C7!E(CMS.CW,Z-SHB871T7!E(CMS.C6"\O)R`^<&5AU!%05)?0TA!3DY%3%](3U-4?0I8"EA0 M14%27T-(04Y.14Q?2$]35#T)<&5A"`M('!E87(M8VAA;FYE;"UP:'!D;V,O+DUA:V5F:6QE+G-W<`IS M960@)W,O7E@O+R<@/G!E87(M8VAA;FYE;"UP:'!D;V,O+DUA:V5F:6QE+G-W M<"`\/"`G-3AA9C=A-64T,F)C,C@S-SEB9#9E96$T-S9A.#,U,30G"EAB,%9) M32`W+C,`````$```CA1@4!6=.@`2&P$`9V%S;VQW=0`````````````````` M`````````````````````````&=O:6YG;6%RU!/4E131$E2?2]D979E;"]P96%R+V)S9"YP96%R M+F-H86YN96PN;6LB`"YI;F-L=61E(#QBRelease-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 08:21:56 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68521106566C; Mon, 24 Sep 2012 08:21:56 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 382828FC0C; Mon, 24 Sep 2012 08:21:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O8Lux4036006; Mon, 24 Sep 2012 08:21:56 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O8LuL6036002; Mon, 24 Sep 2012 08:21:56 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 08:21:56 GMT Message-Id: <201209240821.q8O8LuL6036002@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jsa@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171911: audio/exaile: update to 3.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 08:21:56 -0000 Synopsis: audio/exaile: update to 3.3.0 Responsible-Changed-From-To: freebsd-ports-bugs->jsa Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 24 08:21:55 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171911 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 08:22:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 59D9C1065676; Mon, 24 Sep 2012 08:22:05 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2D2628FC0C; Mon, 24 Sep 2012 08:22:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O8M5wC036142; Mon, 24 Sep 2012 08:22:05 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O8M5Xn036137; Mon, 24 Sep 2012 08:22:05 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 08:22:05 GMT Message-Id: <201209240822.q8O8M5Xn036137@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171912: [NEW PORT] devel/pear-channel-phpdoc: PEAR channel pear.phpdoc.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 08:22:05 -0000 Synopsis: [NEW PORT] devel/pear-channel-phpdoc: PEAR channel pear.phpdoc.org Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 24 08:22:04 UTC 2012 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171912 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 08:30:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 91C331065670 for ; Mon, 24 Sep 2012 08:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 713D08FC14 for ; Mon, 24 Sep 2012 08:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O8UBah037516 for ; Mon, 24 Sep 2012 08:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O8UBkB037508; Mon, 24 Sep 2012 08:30:11 GMT (envelope-from gnats) Date: Mon, 24 Sep 2012 08:30:11 GMT Message-Id: <201209240830.q8O8UBkB037508@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dierk Sacher Cc: Subject: Re: ports/171901: [MAINTAINER REPLACE AND PORT UPDATE] multimedia/ffmpegthumbnailer: Update to 2.0.8 add gnome scheme support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dierk Sacher List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 08:30:11 -0000 The following reply was made to PR ports/171901; it has been noted by GNATS. From: Dierk Sacher To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/171901: [MAINTAINER REPLACE AND PORT UPDATE] multimedia/ffmpegthumbnailer: Update to 2.0.8 add gnome scheme support Date: Mon, 24 Sep 2012 10:18:27 +0200 Approved. Thank you for taking over! Zitiere Edwin Groothuis vom Mon, Sep 24, 2012 at 12:20:18AM +0000: > Maintainer of multimedia/ffmpegthumbnailer, > > Please note that PR ports/171901 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171901 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 08:40:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1798106564A for ; Mon, 24 Sep 2012 08:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 726FF8FC0C for ; Mon, 24 Sep 2012 08:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8O8e8LP048306 for ; Mon, 24 Sep 2012 08:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8O8e8ZC048305; Mon, 24 Sep 2012 08:40:08 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 08:40:08 GMT Resent-Message-Id: <201209240840.q8O8e8ZC048305@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexander Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18BD31065672 for ; Mon, 24 Sep 2012 08:30:21 +0000 (UTC) (envelope-from alexander.4mail@gmail.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id 815788FC0A for ; Mon, 24 Sep 2012 08:30:19 +0000 (UTC) Received: by lbbgg13 with SMTP id gg13so7761599lbb.13 for ; Mon, 24 Sep 2012 01:30:19 -0700 (PDT) Received: by 10.152.129.104 with SMTP id nv8mr9922733lab.32.1348475418961; Mon, 24 Sep 2012 01:30:18 -0700 (PDT) Received: from try2getme ([46.229.143.102]) by mx.google.com with ESMTPS id k10sm2351245lbz.6.2012.09.24.01.30.17 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 24 Sep 2012 01:30:18 -0700 (PDT) Received: from sancho (uid 1001) (envelope-from sancho@try2getme) id 49 by try2getme (DragonFly Mail Agent v0.7); Mon, 24 Sep 2012 12:29:41 +0400 Message-Id: <20120924082940.GA2949@try2getme> Date: Mon, 24 Sep 2012 12:29:40 +0400 From: Alexander To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171913: [maintainer update] graphics/zathura-djvi 0.2.0 -> 0.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 08:40:08 -0000 >Number: 171913 >Category: ports >Synopsis: [maintainer update] graphics/zathura-djvu 0.2.0 -> 0.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 08:40:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Alexander Y. Grigoryev >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: none >Environment: System: FreeBSD hostname 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #18 r240302M: Tue Sep 11 00:15:04 MSK 2012 root@hostname:/usr/obj/usr/src/sys/LEN_T420i amd64 >Description: Minor update with some bugfixes >How-To-Repeat: >Fix: --tKW2IUtsqtDRztdT Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="zathura-djvu.diff" Index: Makefile =================================================================== --- Makefile (revision 304771) +++ Makefile (working copy) @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= zathura-djvu -PORTVERSION= 0.2.0 +PORTVERSION= 0.2.1 CATEGORIES= graphics MASTER_SITES= http://pwmt.org/projects/zathura/plugins/download/ Index: distinfo =================================================================== --- distinfo (revision 304771) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (zathura-djvu-0.2.0.tar.gz) = c276cdb3901fbb8c76f070d69a590181992eea2cb48f09589e4fda9e67e1f813 -SIZE (zathura-djvu-0.2.0.tar.gz) = 10034 +SHA256 (zathura-djvu-0.2.1.tar.gz) = d8bb3c9e30244a0733e49740ee2dd099ce39fa16f2c320af27a0c09d9a25bcc3 +SIZE (zathura-djvu-0.2.1.tar.gz) = 10412 --tKW2IUtsqtDRztdT-- >Release-Note: >Audit-Trail: >Unformatted: --tKW2IUtsqtDRztdT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 10:10:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 486971065670 for ; Mon, 24 Sep 2012 10:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1A2C78FC14 for ; Mon, 24 Sep 2012 10:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OAA6U3029443 for ; Mon, 24 Sep 2012 10:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OAA69Y029442; Mon, 24 Sep 2012 10:10:06 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 10:10:06 GMT Resent-Message-Id: <201209241010.q8OAA69Y029442@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Hartmann Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5DFDC106566B for ; Mon, 24 Sep 2012 10:05:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 3E7418FC14 for ; Mon, 24 Sep 2012 10:05:49 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OA5nJw069117 for ; Mon, 24 Sep 2012 10:05:49 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8OA5np9069101; Mon, 24 Sep 2012 10:05:49 GMT (envelope-from nobody) Message-Id: <201209241005.q8OA5np9069101@red.freebsd.org> Date: Mon, 24 Sep 2012 10:05:49 GMT From: Oliver Hartmann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171914: New port: devel/pocl: Portable open source OpenCL 1.2 implementation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 10:10:07 -0000 >Number: 171914 >Category: ports >Synopsis: New port: devel/pocl: Portable open source OpenCL 1.2 implementation >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 10:10:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Hartmann >Release: FreeBSD 10.0-CURRENT/amd64 CLANG & FreeBSD 9.1-PRE/amd64 CLANG >Organization: FU Berlin >Environment: >Description: FreeBSD lacks in prefessional OpenCL/GPGPU support. Apart from the lack of suitable driver support from the GPU vendors, OpenCL also provides support for tha CPU as a "native" target. To provide even FreeBSD users, develeopers and scientists to develop software for OpenCL 1.2, it is necessary to have a working library to start with. The project "POCL", Portable OpenCL, provides via LLVM backend such a library for at least the "native" CPU target, as their website states: "Portable OpenCL is an open source implementation of the OpenCL standard which can be easily adapted for new targets. One of the goals of the project is improving performance portability of OpenCL programs, avoiding the need for target-dependent manual optimizations. A "native" target is included, which allows running OpenCL kernels on the host (CPU)." Source: https://launchpad.net/pocl >How-To-Repeat: This port has been successfully compiled on a most recent FreeBSD 10.0-CURRENT/amd64 system which has been completely compiled with CLANG 3.2 and LLVM 3.2 installed from ports devel/llvm-devel. The port also has been successfully compiled and installed on FreeBSD 9.1-PRE/amd64, also completely compiled with the CLANG (v 3.1) aboard and LLVM 3.1 installed from the port devel/llvm. The usefulness hasn't been approved, nor did I do benchmarks for the "native" CPU target. I hope this [roject, due to its LLVM backend, could gain more assistance and more attention. >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # pocl # pocl/pkg-plist # pocl/Makefile # pocl/pkg-descr # pocl/pkg-message # pocl/distinfo # pocl/files # pocl/files/patch-lib-llvmopencl-Workgroup.cc # pocl/files/patch-lib-llvmopencl-WorkitemReplication.cc # pocl/files/patch-lib-llvmopencl-ParallelRegion.cc # pocl/files/patch-lib-llvmopencl-BarrierTailReplication.cc # echo c - pocl mkdir -p pocl > /dev/null 2>&1 echo x - pocl/pkg-plist sed 's/^X//' >pocl/pkg-plist << '65441bb25370d2620f90060889f3703b' Xbin/pocl-build Xbin/pocl-kernel Xbin/pocl-standalone Xbin/pocl-workgroup Xetc/OpenCL/vendors/pocl.icd Xinclude/CL/cl.h Xinclude/CL/cl.hpp Xinclude/CL/cl_ext.h Xinclude/CL/cl_gl.h Xinclude/CL/cl_gl_ext.h Xinclude/CL/cl_platform.h Xinclude/CL/opencl.h Xinclude/OpenCL/cl.h Xinclude/OpenCL/cl.hpp Xinclude/OpenCL/cl_ext.h Xinclude/OpenCL/cl_gl.h Xinclude/OpenCL/cl_gl_ext.h Xinclude/OpenCL/cl_platform.h Xinclude/OpenCL/opencl.h Xinclude/pocl/_kernel.h Xinclude/pocl/amd64-portbld-freebsd10.0/types.h Xinclude/pocl/arm/types.h Xinclude/pocl/bufalloc.h Xinclude/pocl/pocl.h Xinclude/pocl/pocl_device.h Xinclude/pocl/poclu.h Xinclude/pocl/tce/types.h Xinclude/pocl/utlist.h Xinclude/pocl/x86_64/types.h Xinclude/poclu.h Xlib/libOpenCL.so Xlib/libpocl-icd.a Xlib/libpocl-icd.la Xlib/libpocl-icd.so Xlib/libpocl-icd.so.0 Xlib/libpocl.a Xlib/libpocl.la Xlib/libpocl.so Xlib/libpocl.so.0 Xlib/libpoclu.a Xlib/libpoclu.la Xlib/libpoclu.so Xlib/libpoclu.so.0 Xlib/pkgconfig/pocl.pc Xlib/pocl/amd64-portbld-freebsd10.0/libkernel.a Xlib/pocl/arm/libkernel.a Xlib/pocl/llvmopencl.a Xlib/pocl/llvmopencl.la Xlib/pocl/llvmopencl.so Xlib/pocl/llvmopencl.so.0 Xlib/pocl/tce/libkernel.a Xlib/pocl/x86_64/libkernel.a X@dirrm lib/pocl/x86_64 X@dirrm lib/pocl/tce X@dirrm lib/pocl/arm X@dirrm lib/pocl/amd64-portbld-freebsd10.0 X@dirrm lib/pocl X@dirrm lib/pkgconfig X@dirrm include/pocl/x86_64 X@dirrm include/pocl/tce X@dirrm include/pocl/arm X@dirrm include/pocl/amd64-portbld-freebsd10.0 X@dirrm include/pocl X@dirrm include/OpenCL X@dirrm include/CL X@dirrm etc/OpenCL/vendors X@dirrm etc/OpenCL 65441bb25370d2620f90060889f3703b echo x - pocl/Makefile sed 's/^X//' >pocl/Makefile << '8e78b7c9a055a3d4bfba7a854d434ffe' XPORTNAME= pocl XPORTVERSION= 0.6.0 XCATEGORIES= devel X XMAINTAINER= ohartman@zedat.fu-berlin.de XCOMMENT= Portable OpenCL - an efficient open source (MIT-licensed) implementation of the OpenCL 1.2 standard. X XMASTER_SITES= https://launchpad.net/pocl/${PORTVERSION:C/\.[0-9]$//}/${PORTVERSION}/+download/ XDISTNAME= ${PORTNAME}-${PORTVERSION:C/\.[0-9]$//} X XCONFLICTS= opencl* freeocl X XCLANG_DEVEL_DEC= Use developmnet port (i.e. devel/llvm-devel) XOPTIONS_SINGLE= LANG XOPTIONS_SINGLE_LANG= COMP_CLANG COMP_GCC XOPTIONS_DEFAULT= COMP_CLANG X XCOMP_CLANG_DESC= Use LLVM/CLANG compiler XCOMP_GCC_DESC= Use GNU GCC compiler X X.include X X.if ${PORT_OPTIONS:MCOMP_GCC} XUSE_GCC= 4.6+ X.endif X X.if ${PORT_OPTIONS:MCOMP_CLANG} XCPPFLAGS+= -I${LOCALBASE}/include XLDFLAGS+= -L${LOCALBASE}/lib X.endif X XBUILD_DEPENDS= ${LOCALBASE}/bin/llvm-config:${PORTSDIR}/devel/llvm X XUSE_GMAKE= yes XUSE_GL= yes XUSE_LDCONFIG= yes XUSE_AUTOTOOLS= libltdl XGNU_CONFIGURE= yes X X.include 8e78b7c9a055a3d4bfba7a854d434ffe echo x - pocl/pkg-descr sed 's/^X//' >pocl/pkg-descr << '0187823860a03d7e58b96da67fc37bba' XPortable OpenCL - an efficient open source (MIT-licensed) implementation of the OpenCL 1.2 standard. 0187823860a03d7e58b96da67fc37bba echo x - pocl/pkg-message sed 's/^X//' >pocl/pkg-message << 'ba52724629db76913ff2181e048060d1' XPortable OpenCL (pocl) X---------------------- X XPortable OpenCL aims to be an efficient open source (MIT-licensed) Ximplementation of the OpenCL 1.2 standard. X XIn addition to producing an easily portable open source OpenCL Ximplementation, another major goal of the project is improving Xperformance portability of OpenCL programs with compiler Xoptimizations, reducing the need for target-dependent manual Xoptimizations. At the core of pocl is a set of LLVM passes Xused to statically parallelize multiple work-items with the kernel Xcompiler, even in the presence of work-group barriers. This enables Xparallelization of the fine-grained static concurrency in the work Xgroups in multiple ways (SIMD, VLIW, superscalar,...). X XThe code base is modularized to allow easy adding of new "device drivers" Xin the host-device layer. A generic multithreaded "target driver" is Xincluded. It allows running OpenCL applications on a host that supports Xthe pthread library with multithreading at the work group granularity. X XAn optimized kernel library is provided for x86_64. The generic Xunoptimized (no instruction set extensions used) version has been Xsuccessfully tested with an ARMv7 CPU under MeeGo, and with several Xapplication-specific TTA processors designed using the TCE toolset. X XOther feature highlights include (experimental) work group Xautovectorization (create vector instructions out of multiple Xwork-items) and a customized kernel buffer allocator. X XEven though the OpenCL 1.2 standard is not yet implemented fully and Xit contains known bugs, we now consider pocl ready for wider scale testing. Xpocl 0.6 compiles and runs successfully most of the Rodinia benchmark, Xall of ViennaCL test cases, and most of the OpenCL Programming Guide Xsamples. X XLinks X----- XDownload: https://launchpad.net/pocl/+milestone/0.6.0 XHome page/wiki: http://pocl.sourceforge.net/ XIRC: #pocl @ irc.oftc.net X ba52724629db76913ff2181e048060d1 echo x - pocl/distinfo sed 's/^X//' >pocl/distinfo << '609904714841652d308359205a13b397' XSHA256 (pocl-0.6.tar.gz) = 53836a257e1a6aaf3c552d14dfe47b78c7347c002fe0eecbc980c0eec6993202 XSIZE (pocl-0.6.tar.gz) = 791283 609904714841652d308359205a13b397 echo c - pocl/files mkdir -p pocl/files > /dev/null 2>&1 echo x - pocl/files/patch-lib-llvmopencl-Workgroup.cc sed 's/^X//' >pocl/files/patch-lib-llvmopencl-Workgroup.cc << '0202eb3ee1cafbb4cbc3a9fffd6a1728' X--- lib/llvmopencl/Workgroup.cc.orig 2012-05-31 10:32:04.000000000 +0200 X+++ lib/llvmopencl/Workgroup.cc 2012-09-23 14:46:49.000000000 +0200 X@@ -34,8 +34,14 @@ X #include "llvm/Module.h" X #include "llvm/Pass.h" X #include "llvm/Support/CommandLine.h" X+#include "config.h" X+#ifdef LLVM_3_1 X #include "llvm/Support/IRBuilder.h" X #include "llvm/Support/TypeBuilder.h" X+#else X+#include "llvm/IRBuilder.h" X+#include "llvm/TypeBuilder.h" X+#endif X #include "llvm/Support/raw_ostream.h" X #include "llvm/Transforms/Utils/Cloning.h" X #include "llvm/Transforms/Utils/Local.h" 0202eb3ee1cafbb4cbc3a9fffd6a1728 echo x - pocl/files/patch-lib-llvmopencl-WorkitemReplication.cc sed 's/^X//' >pocl/files/patch-lib-llvmopencl-WorkitemReplication.cc << '76b7b6fad331835ef09c36146f3f52b0' X--- lib/llvmopencl/WorkitemReplication.cc.orig 2012-09-23 14:26:51.000000000 +0200 X+++ lib/llvmopencl/WorkitemReplication.cc 2012-09-23 14:27:45.000000000 +0200 X@@ -32,7 +32,12 @@ X #include "llvm/Instructions.h" X #include "llvm/Module.h" X #include "llvm/Support/CommandLine.h" X+#include "config.h" X+#ifdef LLVM_3_1 X #include "llvm/Support/IRBuilder.h" X+#else X+#include "llvm/IRBuilder.h" X+#endif X #include "llvm/Target/TargetData.h" X #include "llvm/Transforms/Utils/BasicBlockUtils.h" X #include "llvm/ValueSymbolTable.h" 76b7b6fad331835ef09c36146f3f52b0 echo x - pocl/files/patch-lib-llvmopencl-ParallelRegion.cc sed 's/^X//' >pocl/files/patch-lib-llvmopencl-ParallelRegion.cc << 'dada9dd98761a55b653b8eae63ffa300' X--- ./lib/llvmopencl/ParallelRegion.cc.orig 2012-08-08 10:09:49.000000000 +0200 X+++ ./lib/llvmopencl/ParallelRegion.cc 2012-09-23 14:49:57.000000000 +0200 X@@ -24,7 +24,12 @@ X X #include "ParallelRegion.h" X #include "Barrier.h" X+#include "config.h" X+#ifdef LLVM_3_1 X #include "llvm/Support/IRBuilder.h" X+#else X+#include "llvm/IRBuilder.h" X+#endif X #include "llvm/Transforms/Utils/BasicBlockUtils.h" X #include "llvm/Transforms/Utils/Cloning.h" X #include "llvm/ValueSymbolTable.h" dada9dd98761a55b653b8eae63ffa300 echo x - pocl/files/patch-lib-llvmopencl-BarrierTailReplication.cc sed 's/^X//' >pocl/files/patch-lib-llvmopencl-BarrierTailReplication.cc << '3f67e4644ea50c471a6071de4e047dac' X--- lib/llvmopencl/BarrierTailReplication.cc.orig 2012-09-23 14:20:57.000000000 +0200 X+++ lib/llvmopencl/BarrierTailReplication.cc 2012-09-23 14:21:14.000000000 +0200 X@@ -21,6 +21,7 @@ X // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN X // THE SOFTWARE. X X+#include "config.h" X #include "BarrierTailReplication.h" X #include "Barrier.h" X #include "Workgroup.h" X@@ -198,7 +199,13 @@ X // We have modified the function. Possibly created new loops. X // Update analysis passes. X DT->runOnFunction(*f); X+ #ifdef LLVM_3_1 X LI->getBase().Calculate(DT->getBase()); X+ #else X+ // The algorithm has changed - Calculate is removed, Analyze used in stead. X+ // See LLVM commit c9b1e25493b393013b28e5d457f2fb2845a4dd9f X+ LI->getBase().Analyze(DT->getBase()); X+ #endif X } X } X processed_bbs.insert(subgraph_entry); 3f67e4644ea50c471a6071de4e047dac exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 11:20:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F84B106567B for ; Mon, 24 Sep 2012 11:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1D8068FC1D for ; Mon, 24 Sep 2012 11:20:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OBK5YE098894 for ; Mon, 24 Sep 2012 11:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OBK5kN098893; Mon, 24 Sep 2012 11:20:05 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 11:20:05 GMT Resent-Message-Id: <201209241120.q8OBK5kN098893@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gasol Wu Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E669F106566B for ; Mon, 24 Sep 2012 11:12:53 +0000 (UTC) (envelope-from gasolwu@kkbox.com) Received: from kkbox.com (mail-out-2.kkbox.com [203.69.67.211]) by mx1.freebsd.org (Postfix) with ESMTP id 0776E8FC18 for ; Mon, 24 Sep 2012 11:12:50 +0000 (UTC) Received: by goingmarry.kkbox.com (Postfix, from userid 1033) id 142E574FA5B; Mon, 24 Sep 2012 19:12:49 +0800 (CST) Message-Id: <20120924111249.142E574FA5B@goingmarry.kkbox.com> Date: Mon, 24 Sep 2012 19:12:49 +0800 (CST) From: Gasol Wu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/171916: [PATCH] devel/pear-PhpDocumentor: update to 1.4.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 11:20:06 -0000 >Number: 171916 >Category: ports >Synopsis: [PATCH] devel/pear-PhpDocumentor: update to 1.4.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 11:20:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Gasol Wu >Release: FreeBSD 9.1-RC1 amd64 >Organization: >Environment: System: FreeBSD goingmarry 9.1-RC1 FreeBSD 9.1-RC1 #0: Tue Aug 14 04:25:06 UTC 2012 >Description: - Update to 1.4.4 - use PEAR_AUTOINSTALL to simply Makefile - new options framework - make pkg-descr shorter Removed file(s): - files/patch-pear-phpdoc Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- pear-PhpDocumentor-1.4.4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/pear-PhpDocumentor/Makefile ./Makefile --- /usr/ports/devel/pear-PhpDocumentor/Makefile 2012-07-12 02:12:26.000000000 +0800 +++ ./Makefile 2012-09-24 18:59:55.254890000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= PhpDocumentor -PORTVERSION= 1.4.3 +PORTVERSION= 1.4.4 CATEGORIES= devel www pear MAINTAINER= ports@FreeBSD.org @@ -18,1254 +18,16 @@ CONFLICTS= pear-PHPDoc-[0-9]* LATEST_LINK= pear-${PORTNAME} -OPTIONS= XML_BEAUTIFIER "XML_Beautifier support" off +OPTIONS_DEFINE= XML_BEAUTIFIER +XML_BEAUTIFIER_DESC= XML_Beautifier support -CATEGORY= PhpDocumentor -FILES= HTML_TreeMenu-1.1.2/TreeMenu.php \ - phpDocumentor/Converters/CHM/default/CHMdefaultConverter.inc \ - phpDocumentor/Converters/HTML/frames/HTMLframesConverter.inc \ - phpDocumentor/Converters/HTML/Smarty/HTMLSmartyConverter.inc \ - phpDocumentor/Converters/PDF/default/class.pdf.php \ - phpDocumentor/Converters/PDF/default/class.phpdocpdf.php \ - phpDocumentor/Converters/PDF/default/ParserPDF.inc \ - phpDocumentor/Converters/PDF/default/PDFdefaultConverter.inc \ - phpDocumentor/Converters/PDF/default/class.ezpdf.php \ - phpDocumentor/Converters/XML/DocBook/peardoc2/Plain.php \ - phpDocumentor/Converters/XML/DocBook/peardoc2/Tokenizer.php \ - phpDocumentor/Converters/XML/DocBook/peardoc2/Beautifier.php \ - phpDocumentor/Converters/XML/DocBook/peardoc2/XMLDocBookpeardoc2Converter.inc \ - phpDocumentor/Converters/XML/DocBook/XMLDocBookConverter.inc \ - phpDocumentor/Converters/.peardummy \ - phpDocumentor/Smarty-2.6.0/libs/core/core.assign_smarty_interface.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.create_dir_structure.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.display_debug_console.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.get_include_path.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.get_microtime.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.get_php_resource.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.is_secure.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.is_trusted.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.load_plugins.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.load_resource_plugin.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.process_cached_inserts.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.process_compiled_include.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.read_cache_file.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.rmdir.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.rm_auto.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.run_insert_handler.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.smarty_include_php.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.write_cache_file.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.write_compiled_include.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.write_compiled_resource.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.write_file.php \ - phpDocumentor/Smarty-2.6.0/libs/core/core.assemble_plugin_filepath.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.assign.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.assign_debug_info.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.config_load.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.counter.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.cycle.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.debug.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.eval.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.fetch.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_checkboxes.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_image.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_options.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_radios.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_select_date.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_table.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/block.strip.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_select_time.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.mailto.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.math.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.popup.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.popup_init.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/function.var_dump.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.capitalize.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.cat.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.count_characters.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.count_paragraphs.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.count_sentences.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.count_words.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.date_format.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.debug_print_var.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.default.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.escape.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.htmlentities.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.indent.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.lower.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.nl2br.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.rawurlencode.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.regex_replace.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.replace.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.spacify.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.string_format.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.strip.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.strip_tags.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.truncate.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.upper.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.wordwrap.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/outputfilter.trimwhitespace.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/shared.escape_special_chars.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/shared.make_timestamp.php \ - phpDocumentor/Smarty-2.6.0/libs/plugins/block.textformat.php \ - phpDocumentor/Smarty-2.6.0/libs/debug.tpl \ - phpDocumentor/Smarty-2.6.0/libs/Smarty.class.php \ - phpDocumentor/Smarty-2.6.0/libs/Smarty_Compiler.class.php \ - phpDocumentor/Smarty-2.6.0/libs/Config_File.class.php \ - phpDocumentor/clone.inc.php \ - phpDocumentor/clone5.inc.php \ - phpDocumentor/common.inc.php \ - phpDocumentor/Converter.inc \ - phpDocumentor/DescHTML.inc \ - phpDocumentor/DocBlockTags.inc \ - phpDocumentor/Errors.inc \ - phpDocumentor/EventStack.inc \ - phpDocumentor/find_phpdoc.php \ - phpDocumentor/HighlightParser.inc \ - phpDocumentor/InlineTags.inc \ - phpDocumentor/IntermediateParser.inc \ - phpDocumentor/Io.inc \ - phpDocumentor/LinkClasses.inc \ - phpDocumentor/PackagePageElements.inc \ - phpDocumentor/Parser.inc \ - phpDocumentor/ParserData.inc \ - phpDocumentor/ParserDescCleanup.inc \ - phpDocumentor/ParserDocBlock.inc \ - phpDocumentor/ParserElements.inc \ - phpDocumentor/phpdoc.inc \ - phpDocumentor/phpDocumentorTParser.inc \ - phpDocumentor/phpDocumentorTWordParser.inc \ - phpDocumentor/ProceduralPages.inc \ - phpDocumentor/Publisher.inc \ - phpDocumentor/Setup.inc.php \ - phpDocumentor/TutorialHighlightParser.inc \ - phpDocumentor/WordParser.inc \ - phpDocumentor/XMLpackagePageParser.inc \ - phpDocumentor/Classes.inc \ - scripts/create_package.xml.php \ - scripts/tokenizer_test.php \ - scripts/add_cvs.php \ - scripts/create_examples.php \ - scripts/makedoc.sh \ - phpDocumentor.ini -DOCS= Documentation/Release-old/Release-0.2.4 \ - Documentation/Release-old/Release-0.2.5 \ - Documentation/Release-old/Release-0.2.6 \ - Documentation/Release-old/Release-0.3.0 \ - Documentation/Release-old/Release-0.4.0 \ - Documentation/Release-old/Release-0.4.1 \ - Documentation/Release-old/Release-0.4.2 \ - Documentation/Release-old/Release-1.0.0 \ - Documentation/Release-old/Release-1.0.0rc1 \ - Documentation/Release-old/Release-1.1.0 \ - Documentation/Release-old/Release-1.1.0rc1 \ - Documentation/Release-old/Release-1.1.0rc2 \ - Documentation/Release-old/Release-1.2.0 \ - Documentation/Release-old/Release-1.2.0beta1 \ - Documentation/Release-old/Release-1.2.0beta2 \ - Documentation/Release-old/Release-1.2.0beta3 \ - Documentation/Release-old/Release-1.2.0rc1 \ - Documentation/Release-old/Release-1.2.0rc2 \ - Documentation/Release-old/Release-1.2.1 \ - Documentation/Release-old/Release-1.2.2 \ - Documentation/Release-old/Release-1.2.3 \ - Documentation/Release-old/Release-1.2.3.1 \ - Documentation/Release-old/Release-1.3.0 \ - Documentation/Release-old/Release-1.3.1 \ - Documentation/Release-old/Release-1.3.2 \ - Documentation/Release-old/Release-1.4.0alpha1 \ - Documentation/Release-old/Release-1.4.0alpha2 \ - Documentation/Release-old/Release-1.4.0rc1 \ - Documentation/Release-old/Release-1.4.0rc2 \ - Documentation/Release-old/Release-1.4.0 \ - Documentation/Release-old/Release-1.4.1 \ - Documentation/Release-old/Release-1.4.2 \ - Documentation/TODO \ - Documentation/RoadMap \ - tutorials/Converters/CHMdefault/CHMdefaultConverter.cls \ - tutorials/Converters/HTMLframes/HTMLframesConverter.cls \ - tutorials/Converters/HTMLSmarty/HTMLSmartyConverter.cls \ - tutorials/Converters/PDFdefault/PDFParser.cls \ - tutorials/Converters/PDFdefault/PDFdefaultConverter.cls \ - tutorials/Converters/XMLDocBook/XMLDocBookConverter.cls \ - tutorials/Converters/Converter.cls.ini \ - tutorials/Converters/Converter.methods.cls \ - tutorials/Converters/Converters.pkg \ - tutorials/Converters/template.vars.cls \ - tutorials/Converters/Converter.cls \ - tutorials/phpDocumentor/examples/sample2.php \ - tutorials/phpDocumentor/examples/sample3.php \ - tutorials/phpDocumentor/examples/sample1.php \ - tutorials/phpDocumentor/inlinetags.pkg \ - tutorials/phpDocumentor/inlinetags.pkg.ini \ - tutorials/phpDocumentor/manual.pkg \ - tutorials/phpDocumentor/manual.pkg.ini \ - tutorials/phpDocumentor/phpDocumentor.howto.pkg \ - tutorials/phpDocumentor/phpDocumentor.howto.pkg.ini \ - tutorials/phpDocumentor/phpDocumentor.pkg \ - tutorials/phpDocumentor/phpDocumentor.pkg.ini \ - tutorials/phpDocumentor/phpDocumentor.quickstart.pkg \ - tutorials/phpDocumentor/phpDocumentor.quickstart.pkg.ini \ - tutorials/phpDocumentor/sample1.pkg \ - tutorials/phpDocumentor/sample2.pkg \ - tutorials/phpDocumentor/sample3.pkg \ - tutorials/phpDocumentor/tags.abstract.pkg \ - tutorials/phpDocumentor/tags.access.pkg \ - tutorials/phpDocumentor/tags.author.pkg \ - tutorials/phpDocumentor/tags.final.pkg \ - tutorials/phpDocumentor/tags.category.pkg \ - tutorials/phpDocumentor/tags.copyright.pkg \ - tutorials/phpDocumentor/tags.deprecated.pkg \ - tutorials/phpDocumentor/tags.example.pkg \ - tutorials/phpDocumentor/tags.filesource.pkg \ - tutorials/phpDocumentor/tags.global.pkg \ - tutorials/phpDocumentor/tags.ignore.pkg \ - tutorials/phpDocumentor/tags.inlineexample.pkg \ - tutorials/phpDocumentor/tags.inlineid.pkg \ - tutorials/phpDocumentor/tags.inlineinheritdoc.pkg \ - tutorials/phpDocumentor/tags.inlineinternal.pkg \ - tutorials/phpDocumentor/tags.inlinelink.pkg \ - tutorials/phpDocumentor/tags.inlinesource.pkg \ - tutorials/phpDocumentor/tags.inlinetoc.pkg \ - tutorials/phpDocumentor/tags.inlinetutorial.pkg \ - tutorials/phpDocumentor/tags.internal.pkg \ - tutorials/phpDocumentor/tags.license.pkg \ - tutorials/phpDocumentor/tags.pkg \ - tutorials/phpDocumentor/tags.link.pkg \ - tutorials/phpDocumentor/tags.method.pkg \ - tutorials/phpDocumentor/tags.name.pkg \ - tutorials/phpDocumentor/tags.package.pkg \ - tutorials/phpDocumentor/tags.param.pkg \ - tutorials/phpDocumentor/tags.pkg.ini \ - tutorials/phpDocumentor/tags.property.pkg \ - tutorials/phpDocumentor/tags.return.pkg \ - tutorials/phpDocumentor/tags.see.pkg \ - tutorials/phpDocumentor/tags.since.pkg \ - tutorials/phpDocumentor/tags.static.pkg \ - tutorials/phpDocumentor/tags.staticvar.pkg \ - tutorials/phpDocumentor/tags.subpackage.pkg \ - tutorials/phpDocumentor/tags.todo.pkg \ - tutorials/phpDocumentor/tags.tutorial.pkg \ - tutorials/phpDocumentor/tags.uses.pkg \ - tutorials/phpDocumentor/tags.var.pkg \ - tutorials/phpDocumentor/tags.version.pkg \ - tutorials/phpDocumentor/tutorials.pkg \ - tutorials/phpDocumentor/elements.pkg \ - tutorials/.peardummy \ - ChangeLog \ - FAQ \ - INSTALL \ - LICENSE \ - README \ - Release-1.4.3 \ - Authors -TESTS= Documentation/tests/bug-557861/bug-557861.php \ - Documentation/tests/bug-441278.php \ - Documentation/tests/bug-441287.php \ - Documentation/tests/bug-441289.php \ - Documentation/tests/bug-441433.php \ - Documentation/tests/bug-443153.php \ - Documentation/tests/bug-445298.php \ - Documentation/tests/bug-445305.php \ - Documentation/tests/bug-445820.php \ - Documentation/tests/bug-489398.php \ - Documentation/tests/bug-540341.php \ - Documentation/tests/bug-540368.php \ - Documentation/tests/bug-541886.php \ - Documentation/tests/bug-542586.php \ - Documentation/tests/bug-548331.php \ - Documentation/tests/bug-550489.php \ - Documentation/tests/bug-551120.php \ - Documentation/tests/bug-553137.php \ - Documentation/tests/bug-441275.php \ - Documentation/tests/bug-553138.php \ - Documentation/tests/bug-553560.php \ - Documentation/tests/bug-553607.php \ - Documentation/tests/bug-554712.php \ - Documentation/tests/bug-555768.php \ - Documentation/tests/bug-556031-01.php \ - Documentation/tests/bug-556031.php \ - Documentation/tests/bug-556860.php \ - Documentation/tests/bug-556894.php \ - Documentation/tests/bug-557390.php \ - Documentation/tests/bug-558031.php \ - Documentation/tests/bug-558051.php \ - Documentation/tests/bug-559467.php \ - Documentation/tests/bug-559494.php \ - Documentation/tests/bug-559668.php \ - Documentation/tests/bug-560532.php \ - Documentation/tests/bug-560578.php \ - Documentation/tests/bug-560595.php \ - Documentation/tests/bug-561101.php \ - Documentation/tests/bug-562997.php \ - Documentation/tests/bug-566200.php \ - Documentation/tests/bug-566600.php \ - Documentation/tests/bug-567059.php \ - Documentation/tests/bug-587733.php \ - Documentation/tests/bug-645588.php \ - Documentation/tests/bug-698356.php \ - Documentation/tests/bug-772441.php \ - Documentation/tests/bug-904820.php \ - Documentation/tests/bug-authoremail.php \ - Documentation/tests/bug-defineparse.php \ - Documentation/tests/bug-eofquotes.php \ - Documentation/tests/bug-escaping.php \ - Documentation/tests/bug-loseprocedural.php \ - Documentation/tests/bug-loseunknowntags.php \ - Documentation/tests/bug-pageleveldocsblocks.php \ - Documentation/tests/bug-quote_new_parser.php \ - Documentation/tests/bug-shortdesc.php \ - tests/AllTests.php \ - tests/HighlightParserGetInlineTagsTests.php \ - tests/HighlightParserTests.php \ - tests/IntermediateParserAddPrivatePageTests.php \ - tests/IntermediateParserTests.php \ - tests/ParserClassGetSourceLocationTests.php \ - tests/ParserClassTests.php \ - tests/ParserPageGetSourceLocationTests.php \ - tests/ParserPageTests.php \ - tests/phpDocumentorSetupCleanConverterNamePieceTests.php \ - tests/phpDocumentorSetupDecideOnOrOffTests.php \ - tests/phpDocumentorSetupTests.php \ - tests/phpDocumentorTParserGetInlineTagsTests.php \ - tests/phpDocumentorTParserTests.php \ - Documentation/.peardummy -DATA= docbuilder/images/ss_CHM_default_default.png \ - docbuilder/images/ss_HTML_frames_default.png \ - docbuilder/images/ss_HTML_frames_DOM-default.png \ - docbuilder/images/ss_HTML_frames_DOM-earthli.png \ - docbuilder/images/ss_HTML_frames_DOM-l0l33t.png \ - docbuilder/images/ss_HTML_frames_DOM-phpdoc.de.png \ - docbuilder/images/ss_HTML_frames_DOM-phphtmllib.png \ - docbuilder/images/ss_HTML_frames_earthli.png \ - docbuilder/images/ss_HTML_frames_l0l33t.png \ - docbuilder/images/ss_HTML_frames_phpdoc.de.png \ - docbuilder/images/ss_HTML_frames_phpedit.png \ - docbuilder/images/ss_HTML_frames_phphtmllib.png \ - docbuilder/images/ss_HTML_Smarty_default.png \ - docbuilder/images/ss_HTML_Smarty_HandS.png \ - docbuilder/images/ss_HTML_Smarty_PHP.png \ - docbuilder/images/ss_PDF_default_default.png \ - docbuilder/images/ss_XML_DocBook-peardoc2_default.png \ - docbuilder/images/rc-gui-install-24.png \ - docbuilder/includes/tabpane.js \ - docbuilder/includes/utilities.php \ - docbuilder/includes/tab.webfx.css \ - docbuilder/blank.html \ - docbuilder/builder.php \ - docbuilder/config.php \ - docbuilder/file_dialog.php \ - docbuilder/index.html \ - docbuilder/top.php \ - docbuilder/actions.php \ - HTML_TreeMenu-1.1.2/images/branchtop.gif \ - HTML_TreeMenu-1.1.2/images/folder.gif \ - HTML_TreeMenu-1.1.2/images/line.gif \ - HTML_TreeMenu-1.1.2/images/linebottom.gif \ - HTML_TreeMenu-1.1.2/images/minus.gif \ - HTML_TreeMenu-1.1.2/images/minusbottom.gif \ - HTML_TreeMenu-1.1.2/images/minustop.gif \ - HTML_TreeMenu-1.1.2/images/plus.gif \ - HTML_TreeMenu-1.1.2/images/plusbottom.gif \ - HTML_TreeMenu-1.1.2/images/plustop.gif \ - HTML_TreeMenu-1.1.2/images/branch.gif \ - HTML_TreeMenu-1.1.2/images/branchbottom.gif \ - HTML_TreeMenu-1.1.2/TreeMenu.js \ - media/images/earthli/abstract_method.png \ - media/images/earthli/abstract_private_class.png \ - media/images/earthli/abstract_private_method.png \ - media/images/earthli/class.png \ - media/images/earthli/class_folder.png \ - media/images/earthli/constant.png \ - media/images/earthli/constructor_method.png \ - media/images/earthli/destructor_method.png \ - media/images/earthli/file.png \ - media/images/earthli/folder.png \ - media/images/earthli/function.png \ - media/images/earthli/function_folder.png \ - media/images/earthli/global.png \ - media/images/earthli/index.png \ - media/images/earthli/lock.png \ - media/images/earthli/method.png \ - media/images/earthli/next_button.png \ - media/images/earthli/package.png \ - media/images/earthli/package_folder.png \ - media/images/earthli/previous_button.png \ - media/images/earthli/private_class.png \ - media/images/earthli/private_method.png \ - media/images/earthli/private_variable.png \ - media/images/earthli/tutorial.png \ - media/images/earthli/tutorial_folder.png \ - media/images/earthli/variable.png \ - media/images/earthli/abstract_class.png \ - media/images/.peardummy \ - media/.peardummy \ - phpDocumentor/Converters/CHM/default/templates/default/templates/media/stylesheet.css \ - phpDocumentor/Converters/CHM/default/templates/default/templates/media/bg_left.png \ - phpDocumentor/Converters/CHM/default/templates/default/templates/blank.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/class.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/classleft.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/classtrees.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/const.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/contents.hhc.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/define.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/docblock.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/elementindex.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/errors.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/fileleft.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/filesource.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/footer.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/function.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/global.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/header.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/hhp.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/include.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/index.hhk.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/index.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/method.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/packages.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/page.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/ric.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/tocentry.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/todolist.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/var.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/templates/basicindex.tpl \ - phpDocumentor/Converters/CHM/default/templates/default/options.ini \ - phpDocumentor/Converters/CHM/default/templates/.peardummy \ - phpDocumentor/Converters/CHM/default/.peardummy \ - phpDocumentor/Converters/CHM/.peardummy \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/media/stylesheet.css \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/media/banner.css \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/blank.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/class.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/const.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/define.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/errors.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/footer.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/function.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/global.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/header.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/include.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/index.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/left_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/method.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/page.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/ric.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/top_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_nav.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/var.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/default/options.ini \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/empty.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/I.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/L.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Lminus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Lplus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/minus.gif \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/plus.gif \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/T.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Tminus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Tplus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/blank.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/lib/classTree.js \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/stylesheet.css \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/banner.css \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/blank.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/class.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/const.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/define.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/errors.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/footer.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/function.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/global.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/header.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/include.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/index.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/left_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/method.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/page.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/ric.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/top_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_nav.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/var.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/default/options.ini \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractClass_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractMethod.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateClass.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateClass_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateMethod.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/blank.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Class.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/class_folder.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Class_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Constant.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Constructor.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Destructor.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/empty.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/file.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/folder.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Function.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/function_folder.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Global.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/I.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Index.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Interface.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Interface_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/L.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Lminus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Lplus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Method.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/minus.gif \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/next_button.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/next_button_disabled.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/package.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/package_folder.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Page.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Page_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/plus.gif \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/previous_button.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/previous_button_disabled.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateClass.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateClass_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateMethod.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/T.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateVariable.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/private_class_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/StaticMethod.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/StaticVariable.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Tminus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Tplus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/tutorial.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/tutorial_folder.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/up_button.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Variable.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractClass.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/lib/classTree.js \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/stylesheet.css \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/banner.css \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/blank.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/class.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/const.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/define.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/errors.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/footer.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/function.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/global.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/header.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/include.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/index.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/left_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/method.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/page.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/ric.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/top_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_nav.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/var.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/options.ini \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/empty.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/I.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/L.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Lminus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Lplus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/T.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Tminus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Tplus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/blank.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/lib/classTree.js \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/bg_left.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/minus.gif \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/plus.gif \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/stylesheet.css \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/banner.css \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/blank.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/class.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/const.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/define.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/errors.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/footer.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/function.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/global.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/header.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/include.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/index.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/left_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/method.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/page.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/ric.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/top_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_nav.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/var.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/options.ini \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/empty.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/I.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/L.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Lminus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Lplus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/minus.gif \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/plus.gif \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/T.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Tminus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Tplus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/blank.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/lib/classTree.js \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/stylesheet.css \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/banner.css \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/blank.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/class.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/const.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/define.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/errors.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/footer.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/function.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/global.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/header.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/include.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/index.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/left_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/method.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/page.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/ric.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/top_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_nav.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/var.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/options.ini \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/empty.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/I.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/L.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Lminus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Lplus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/minus.gif \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/plus.gif \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/T.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Tminus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Tplus.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/blank.png \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/lib/classTree.js \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/stylesheet.css \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/banner.css \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/blank.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/class.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/const.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/define.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/errors.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/footer.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/function.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/global.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/header.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/include.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/index.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/left_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/method.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/page.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/ric.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/top_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_nav.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/var.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/options.ini \ - phpDocumentor/Converters/HTML/frames/templates/DOM/.peardummy \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractClass_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractMethod.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateClass.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateClass_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateMethod.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/blank.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Class.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/class_folder.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Class_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Constant.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Constructor.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Destructor.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/empty.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/file.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/folder.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Function.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/function_folder.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Global.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/I.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Index.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Interface.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Interface_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/L.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Lminus.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Lplus.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Method.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/next_button.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/next_button_disabled.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/package.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/package_folder.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Page.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Page_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/previous_button.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/previous_button_disabled.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateClass.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateClass_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateMethod.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateVariable.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Tminus.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/private_class_logo.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/StaticMethod.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/StaticVariable.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/T.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Tplus.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/tutorial.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/tutorial_folder.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/up_button.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Variable.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractClass.png \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/stylesheet.css \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/banner.css \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/blank.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/class.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/const.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/define.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/errors.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/footer.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/function.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/global.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/header.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/include.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/index.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/left_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/method.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/page.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/ric.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/top_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_nav.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/var.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/earthli/options.ini \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/bg_left.png \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/stylesheet.css \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/banner.css \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/blank.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/class.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/const.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/define.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/errors.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/footer.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/function.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/global.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/header.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/include.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/index.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/left_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/method.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/page.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/ric.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/top_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_nav.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/var.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/l0l33t/options.ini \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/media/stylesheet.css \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/media/banner.css \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/blank.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/class.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/const.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/define.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/errors.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/footer.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/function.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/global.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/header.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/include.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/index.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/left_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/method.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/page.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/ric.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/top_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_nav.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/var.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/options.ini \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Class.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/classFolder.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constant.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constants.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constructor.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Destructor.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Disk.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/error.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/file.png \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/FolderClosed.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/foldericon.png \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/FolderOpened.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Functions.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/GhostClass.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/I.png \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/L.png \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Lminus.png \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Lplus.png \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/minus.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgError.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgFatalError.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/T.png \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgHint.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgInformation.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgWarning.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/openfoldericon.png \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/plus.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateDataMember.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateMethod.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateProperty.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedDataMember.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedMethod.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedProperty.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicDataMember.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicMethod.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicProperty.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/spacer.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Tminus.png \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Tplus.png \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Types.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Variable.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Vars.gif \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/blank.png \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/tab.webfx.css \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/tabpane.js \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/ua.js \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/classTree.js \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/stylesheet.css \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/blank.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/class.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/const.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/define.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/errors.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/footer.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/function.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/global.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/header.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/include.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/index.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/left_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/method.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/page.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/ric.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/top_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/var.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phpedit/options.ini \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/media/stylesheet.css \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/media/banner.css \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/blank.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/class.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/const.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/define.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/errors.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/footer.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/function.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/global.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/header.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/include.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/index.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/left_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/method.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/page.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/ric.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/top_frame.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_nav.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/var.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/frames/templates/phphtmllib/options.ini \ - phpDocumentor/Converters/HTML/frames/templates/.peardummy \ - phpDocumentor/Converters/HTML/frames/.peardummy \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/print.css \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/style.css \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/layout.css \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/blank.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/class.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/classleft.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/const.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/define.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/errors.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/fileleft.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/footer.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/function.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/global.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/header.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/include.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/index.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/layout.css \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/method.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/style.css \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/packages.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/page.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/ric.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/var.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/default/options.ini \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/empty.png \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/logo.png \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/style.css \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/background.png \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/blank.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/class.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classleft.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classtags.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/const.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/define.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/errors.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/fileleft.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/filetags.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/footer.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/function.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/global.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/header.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/include.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/index.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/method.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/packages.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/page.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/ric.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tags.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/var.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/HandS/options.ini \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/empty.png \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/style.css \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/background.png \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/blank.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/class.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/classleft.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/classtrees.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/const.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/define.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/docblock.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/elementindex.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/errors.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/examplesource.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/fileleft.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/filesource.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/footer.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/function.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/global.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/header.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/include.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/index.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/method.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/packages.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/todolist.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/page.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/pkgelementindex.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/ric.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial_toc.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial_tree.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/var.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/basicindex.tpl \ - phpDocumentor/Converters/HTML/Smarty/templates/PHP/options.ini \ - phpDocumentor/Converters/HTML/Smarty/templates/.peardummy \ - phpDocumentor/Converters/HTML/Smarty/.peardummy \ - phpDocumentor/Converters/HTML/.peardummy \ - phpDocumentor/Converters/PDF/default/templates/default/templates/media/logo.jpg \ - phpDocumentor/Converters/PDF/default/templates/default/templates/class.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/classtree.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/const.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/define.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/docblock.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/examplesource.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/filesource.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/footer.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/function.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/global.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/include.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/index.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/method.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/newpackage_header.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/packagepage.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/page.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/pagenumbering.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/params.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/ric.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/ric_title_page.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/toc.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/source_loop.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/source_title_page.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/title_page.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/todolist.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/tutorial.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/var.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/templates/appendix_title_page.tpl \ - phpDocumentor/Converters/PDF/default/templates/default/options.ini \ - phpDocumentor/Converters/PDF/default/templates/fonts/Courier-BoldOblique.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/Courier-Oblique.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/Courier.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/Helvetica-Bold.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/Helvetica-BoldOblique.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/Helvetica-Oblique.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/Helvetica.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_Courier-Bold.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_Courier-BoldOblique.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_Courier-Oblique.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_Courier.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_Helvetica-Bold.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_Helvetica-BoldOblique.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_Helvetica-Oblique.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_Helvetica.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_Symbol.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_Times-Bold.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_Times-BoldItalic.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_Times-Italic.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_Times-Roman.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/php_ZapfDingbats.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/Symbol.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/Times-Bold.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/Times-BoldItalic.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/Times-Italic.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/Times-Roman.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/ZapfDingbats.afm \ - phpDocumentor/Converters/PDF/default/templates/fonts/Courier-Bold.afm \ - phpDocumentor/Converters/PDF/default/templates/.peardummy \ - phpDocumentor/Converters/PDF/default/.peardummy \ - phpDocumentor/Converters/PDF/.peardummy \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/class.tpl \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/class_summary.tpl \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/constants.tpl \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/docblock.tpl \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/errors.tpl \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/globals.tpl \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/imethods.tpl \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/ivars.tpl \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/method.tpl \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/package.tpl \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/tutorial.tpl \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/var.tpl \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/category.tpl \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/options.ini \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates/.peardummy \ - phpDocumentor/Converters/XML/DocBook/peardoc2/.peardummy \ - phpDocumentor/Converters/XML/DocBook/templates/peardoc2/templates/ivars.tpl \ - phpDocumentor/Converters/XML/DocBook/templates/peardoc2/templates/tutorial.tpl \ - phpDocumentor/Converters/XML/DocBook/templates/peardoc2/templates/class_summary.tpl \ - phpDocumentor/Converters/XML/DocBook/templates/peardoc2/.peardummy \ - phpDocumentor/Converters/XML/DocBook/templates/.peardummy \ - phpDocumentor/Converters/XML/DocBook/.peardummy \ - phpDocumentor/Converters/XML/.peardummy \ - phpDocumentor/Converters/.peardummy \ - phpDocumentor/Smarty-2.6.0/misc/smarty_icon.README \ - phpDocumentor/Smarty-2.6.0/misc/smarty_icon.gif \ - phpDocumentor/Smarty-2.6.0/ChangeLog \ - phpDocumentor/Smarty-2.6.0/COPYING.lib \ - phpDocumentor/Smarty-2.6.0/FAQ \ - phpDocumentor/Smarty-2.6.0/INSTALL \ - phpDocumentor/Smarty-2.6.0/NEWS \ - phpDocumentor/Smarty-2.6.0/README \ - phpDocumentor/Smarty-2.6.0/RELEASE_NOTES \ - phpDocumentor/Smarty-2.6.0/TODO \ - phpDocumentor/Smarty-2.6.0/BUGS \ - phpDocumentor/.peardummy \ - user/demo.ini \ - user/error.ini \ - user/makedocs.ini \ - user/testdocbook.ini \ - user/default.ini \ - user/pear-makedocs.ini \ - new_phpdoc.php \ - phpdoc.php \ - phpDocumentor.ini \ - poweredbyphpdoc.gif \ - index.html -SCRIPTFILES= phpdoc - -_DOCSDIR= . -_TESTSDIR= . -_DATADIR= . - -DUMMYDIRS= media \ - media/images \ - phpDocumentor \ - phpDocumentor/Converters \ - phpDocumentor/Converters/CHM \ - phpDocumentor/Converters/CHM/default \ - phpDocumentor/Converters/CHM/default/templates \ - phpDocumentor/Converters/HTML \ - phpDocumentor/Converters/HTML/Smarty \ - phpDocumentor/Converters/HTML/Smarty/templates \ - phpDocumentor/Converters/HTML/frames \ - phpDocumentor/Converters/HTML/frames/templates \ - phpDocumentor/Converters/HTML/frames/templates/DOM \ - phpDocumentor/Converters/PDF \ - phpDocumentor/Converters/PDF/default \ - phpDocumentor/Converters/PDF/default/templates \ - phpDocumentor/Converters/XML \ - phpDocumentor/Converters/XML/DocBook \ - phpDocumentor/Converters/XML/DocBook/peardoc2 \ - phpDocumentor/Converters/XML/DocBook/peardoc2/templates \ - phpDocumentor/Converters/XML/DocBook/templates \ - phpDocumentor/Converters/XML/DocBook/templates/peardoc2 \ - tutorials \ - Documentation - -SUBFILES= phpDocumentor/Converter.inc \ - phpDocumentor/IntermediateParser.inc \ - phpDocumentor/Setup.inc.php \ - phpDocumentor/common.inc.php \ - docbuilder/actions.php \ - docbuilder/builder.php \ - docbuilder/config.php \ - docbuilder/file_dialog.php \ - docbuilder/top.php \ - docbuilder/includes/utilities.php \ - user/pear-makedocs.ini +PEAR_AUTOINSTALL= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" -.if defined(WITH_XML_BEAUTIFIER) +.if ${PORT_OPTIONS:MXML_BEAUTIFIER} RUN_DEPENDS+= ${PEARDIR}/XML/Beautifier.php:${PORTSDIR}/textproc/pear-XML_Beautifier .endif -post-patch: -.for file in ${SUBFILES} - @${REINPLACE_CMD} -e 's|@VER@|${PORTVERSION}|g ; \ - s|@PEAR-DIR@|${PEARDIR}|g ; \ - s|@DATA-DIR@|${DATADIR:S,/${PORTNAME}$,,}|g ; \ - s|@WEB-DIR@|${DATADIR:S,/${PORTNAME}$,,}|g ; \ - s|@DOC-DIR@|${DOCSDIR:S,/${PORTNAME}$,,}|g' ${WRKSRC}/${file} -.endfor - -post-extract: -.for dir in ${DUMMYDIRS} - touch ${WRKSRC}/${dir}/.peardummy -.endfor - .include diff -ruN --exclude=CVS /usr/ports/devel/pear-PhpDocumentor/distinfo ./distinfo --- /usr/ports/devel/pear-PhpDocumentor/distinfo 2011-07-03 22:58:23.000000000 +0800 +++ ./distinfo 2012-09-24 16:22:40.309283000 +0800 @@ -1,2 +1,2 @@ -SHA256 (PEAR/PhpDocumentor-1.4.3.tgz) = af27a2cf944aa3c7b22e9fc5317960746676e7683f1ed50c0a3049ab26c3a6de -SIZE (PEAR/PhpDocumentor-1.4.3.tgz) = 2423486 +SHA256 (PEAR/PhpDocumentor-1.4.4.tgz) = bec596cf9ae8b7534cf4c6e1a142ae11c7004aedf2f02fa9eb2050d566e62088 +SIZE (PEAR/PhpDocumentor-1.4.4.tgz) = 1534088 diff -ruN --exclude=CVS /usr/ports/devel/pear-PhpDocumentor/files/patch-pear-phpdoc ./files/patch-pear-phpdoc --- /usr/ports/devel/pear-PhpDocumentor/files/patch-pear-phpdoc 2007-05-30 00:15:08.000000000 +0800 +++ ./files/patch-pear-phpdoc 1970-01-01 08:00:00.000000000 +0800 @@ -1,8 +0,0 @@ ---- pear-phpdoc.orig Thu Apr 5 20:46:28 2007 -+++ pear-phpdoc Thu May 17 20:25:36 2007 -@@ -1,4 +1,4 @@ --#!@PHP-BIN@ -+#!@php_bin@ - Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 11:20:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 671BD10656A6; Mon, 24 Sep 2012 11:20:25 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3A37E8FC14; Mon, 24 Sep 2012 11:20:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OBKPSl002362; Mon, 24 Sep 2012 11:20:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OBKPYq002352; Mon, 24 Sep 2012 11:20:25 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 11:20:25 GMT Message-Id: <201209241120.q8OBKPYq002352@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171916: [PATCH] devel/pear-PhpDocumentor: update to 1.4.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 11:20:25 -0000 Synopsis: [PATCH] devel/pear-PhpDocumentor: update to 1.4.4 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 24 11:20:24 UTC 2012 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171916 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 13:00:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A6EE1065677 for ; Mon, 24 Sep 2012 13:00:29 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 132518FC1A for ; Mon, 24 Sep 2012 13:00:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OD0Omb093869 for ; Mon, 24 Sep 2012 13:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OD0OH9093862; Mon, 24 Sep 2012 13:00:24 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 13:00:24 GMT Resent-Message-Id: <201209241300.q8OD0OH9093862@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Hartmann Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 746331065670 for ; Mon, 24 Sep 2012 12:52:42 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 253D88FC0A for ; Mon, 24 Sep 2012 12:52:42 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OCqffg051898 for ; Mon, 24 Sep 2012 12:52:41 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8OCqfd4051897; Mon, 24 Sep 2012 12:52:41 GMT (envelope-from nobody) Message-Id: <201209241252.q8OCqfd4051897@red.freebsd.org> Date: Mon, 24 Sep 2012 12:52:41 GMT From: Oliver Hartmann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171917: databases/mantis: Database query failed. Error received from database was #-1: ERROR: invalid input syntax for integer: "true" for the query: INSERT INTO mantis_project_table ( name, status, enabled, view_state, file_path, description, inherit_g X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 13:00:29 -0000 >Number: 171917 >Category: ports >Synopsis: databases/mantis: Database query failed. Error received from database was #-1: ERROR: invalid input syntax for integer: "true" for the query: INSERT INTO mantis_project_table ( name, status, enabled, view_state, file_path, description, inherit >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 13:00:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Hartmann >Release: FreeBSD 10.0-CURRENT/amd64 CLANG & FreeBSD 9.1-PRE/amd64 CLANG >Organization: FU Berlin >Environment: #1: FreeBSD 10.0-CURRENT #12 r240857M: Sun Sep 23 15:33:47 CEST 2012 amd 64 CLANG built postgresql-server-9.1.5 and postgresql-server-9.2.0 #2: FreeBSD 9.1-PRERELEASE #0 r240772: Fri Sep 21 12:14:56 CEST 2012 amd64, CLANG built postgresql-server-9.1.5 and postgresql-server-9.2.0 >Description: Using MANTIS as present in the most recent ports collection on most recent CURRENT and PRE/STABLE FreeBSD 10 or 9 respectively with either PostgreSQL 9.1.5 or 9.2.0 servers, I receive messages and failures like shown below when trying to create/manage projects or subprojects. Trying to create a subproject within an existing project ends up in: Database query failed. Error received from database was #-1: ERROR: invalid input syntax for integer: "true" for the query: INSERT INTO mantis_project_table ( name, status, enabled, view_state, file_path, description, inherit_global ) VALUES ( ?, ?, ?, ?, ?, ?, ?). Trying to create a new project ends up in: Database query failed. Error received from database was #-1: ERROR: invalid input syntax for integer: "true" for the query: INSERT INTO mantis_project_table ( name, status, enabled, view_state, file_path, description, inherit_global ) VALUES ( ?, ?, ?, ?, ?, ?, ?). >How-To-Repeat: Install databases/mantis along with databases/postgresql9[1|2]-[server|client]. Follwo the installation/configure procedures. When successfully logged in as the superuser of the Mantis bugtracking system, try to create your projects you'd like to maintain. >Fix: It is possible to manually insert a project with the command showed in the error. I guess the problem is in a type mismatch in a script and needs fix upstream. >Release-Note: >Audit-Trail: >Unformatted: _global ) VALUES ( ?, ?, ?, ?, ?, ?, ?). From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 13:00:42 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 122DC1065672; Mon, 24 Sep 2012 13:00:42 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D7F238FC0C; Mon, 24 Sep 2012 13:00:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OD0f28096377; Mon, 24 Sep 2012 13:00:41 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OD0ftG096365; Mon, 24 Sep 2012 13:00:41 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 13:00:41 GMT Message-Id: <201209241300.q8OD0ftG096365@freefall.freebsd.org> To: ohartman@zedat.fu-berlin.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171917: databases/mantis: Database query failed. Error received from database was #-1: ERROR: invalid input syntax for integer: "true" for the query: INSERT INTO mantis_project_table ( name, status, enabled, view_state, file_path, description, i X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 13:00:42 -0000 Synopsis: databases/mantis: Database query failed. Error received from database was #-1: ERROR: invalid input syntax for integer: "true" for the query: INSERT INTO mantis_project_table ( name, status, enabled, view_state, file_path, description, i State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Sep 24 13:00:41 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171917 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 13:10:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D4E3E106564A for ; Mon, 24 Sep 2012 13:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B704D8FC0A for ; Mon, 24 Sep 2012 13:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8ODA7Jw002857 for ; Mon, 24 Sep 2012 13:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8ODA7cJ002852; Mon, 24 Sep 2012 13:10:07 GMT (envelope-from gnats) Date: Mon, 24 Sep 2012 13:10:07 GMT Message-Id: <201209241310.q8ODA7cJ002852@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/171917: databases/mantis: Database query failed. Error received from database was #-1: ERROR: invalid input syntax for integer: "true" for the query: INSERT INTO mantis_project_table ( name, status, enabled, view_state, file_path, descReply-To: Edwin Groothuis X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 13:10:07 -0000 The following reply was made to PR ports/171917; it has been noted by GNATS. From: Edwin Groothuis To: dan@langille.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/171917: databases/mantis: Database query failed. Error received from database was #-1: ERROR: invalid input syntax for integer: "true" for the query: INSERT INTO mantis_project_table ( name, status, enabled, view_state, file_path, descDate: Mon, 24 Sep 2012 13:00:37 UT Maintainer of databases/mantis, Please note that PR ports/171917 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171917 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 13:30:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F294106564A for ; Mon, 24 Sep 2012 13:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0167B8FC12 for ; Mon, 24 Sep 2012 13:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8ODU9ex020913 for ; Mon, 24 Sep 2012 13:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8ODU943020911; Mon, 24 Sep 2012 13:30:09 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 13:30:09 GMT Resent-Message-Id: <201209241330.q8ODU943020911@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jason Bacon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A827A106564A for ; Mon, 24 Sep 2012 13:20:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 945AE8FC0A for ; Mon, 24 Sep 2012 13:20:37 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8ODKbfN003385 for ; Mon, 24 Sep 2012 13:20:37 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8ODKaAt003384; Mon, 24 Sep 2012 13:20:36 GMT (envelope-from nobody) Message-Id: <201209241320.q8ODKaAt003384@red.freebsd.org> Date: Mon, 24 Sep 2012 13:20:36 GMT From: Jason Bacon To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171918: New port: biology/plink X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 13:30:10 -0000 >Number: 171918 >Category: ports >Synopsis: New port: biology/plink >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 13:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jason Bacon >Release: 9.0-RELEASE >Organization: Acadix Consulting, LLC >Environment: FreeBSD sculpin.jbacon.dyndns.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: PLINK is a free, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # plink # plink/pkg-descr # plink/Makefile # plink/distinfo # plink/files # plink/files/patch-Makefile # echo c - plink mkdir -p plink > /dev/null 2>&1 echo x - plink/pkg-descr sed 's/^X//' >plink/pkg-descr << '13db0b698fc1987e35a2140396ca451a' XPLINK is a free, open-source whole genome association analysis toolset, Xdesigned to perform a range of basic, large-scale analyses in a Xcomputationally efficient manner. X XWWW: http://pngu.mgh.harvard.edu/~purcell/plink/ 13db0b698fc1987e35a2140396ca451a echo x - plink/Makefile sed 's/^X//' >plink/Makefile << '3225f885242ffc903c9410142479cfcd' X# New ports collection makefile for: plink X# Date created: 06 September 2012 X# Whom: Jason Bacon X# X# $FreeBSD$ X# X XPORTNAME= plink XPORTVERSION= 1.07 XCATEGORIES= biology science XMASTER_SITES= http://pngu.mgh.harvard.edu/~purcell/plink/dist/ XDISTNAME= ${PORTNAME}-${PORTVERSION}-src X XMAINTAINER= jwbacon@tds.net XCOMMENT= Whole genome association analysis toolset X XLICENSE= GPLv2 X XLIB_DEPENDS= lapack:${PORTSDIR}/math/lapack X XUSE_ZIP= yes XUSE_GMAKE= yes XUSE_FORTRAN= yes # Make it use the same compiler as lapack X XPLIST_FILES= bin/plink X Xdo-install: X ${MKDIR} ${PREFIX}/bin X ${INSTALL_PROGRAM} ${WRKSRC}/plink ${PREFIX}/bin X X.include 3225f885242ffc903c9410142479cfcd echo x - plink/distinfo sed 's/^X//' >plink/distinfo << 'a7e532cb61dd2baca4095cee307ed431' XSHA256 (plink-1.07-src.zip) = 4af56348443d0c6a1db64950a071b1fcb49cc74154875a7b43cccb4b6a7f482b XSIZE (plink-1.07-src.zip) = 2257297 a7e532cb61dd2baca4095cee307ed431 echo c - plink/files mkdir -p plink/files > /dev/null 2>&1 echo x - plink/files/patch-Makefile sed 's/^X//' >plink/files/patch-Makefile << 'b45708355594ed1e96bc7248f5f1076c' X--- Makefile.orig 2009-10-10 11:00:20.000000000 -0500 X+++ Makefile 2012-09-07 08:24:26.000000000 -0500 X@@ -26,7 +26,7 @@ X WITH_WEBCHECK = 1 X FORCE_32BIT = X WITH_ZLIB = 1 X-WITH_LAPACK = X+WITH_LAPACK = 1 X FORCE_DYNAMIC = X X # Put C++ compiler here; Windows has it's own specific version X@@ -34,17 +34,17 @@ X CXX_WIN = c:\bin\mingw\bin\mingw32-g++.exe X X # Any other compiler flags here ( -Wall, -g, etc) X-CXXFLAGS = X+# CXXFLAGS = X X # Misc X-LIB_LAPACK = /usr/lib/liblapack.so.3 X+LIB_LAPACK = -L${LOCALBASE}/lib -llapack -lblas -lgfortran X X X # -------------------------------------------------------------------- X # Do not edit below this line X # -------------------------------------------------------------------- X X-CXXFLAGS += -O3 -I. X+CXXFLAGS += -I. X OUTPUT = plink X X # Some system specific flags X@@ -58,8 +58,8 @@ X endif X X ifeq ($(SYS),UNIX) X- CXXFLAGS += -DUNIX X- CXX = $(CXX_UNIX) X+ CXXFLAGS += -DUNIX -Dfopen64=fopen X+ CXX ?= $(CXX_UNIX) X ifndef FORCE_DYNAMIC X CXXFLAGS += -static X endif X@@ -128,7 +128,7 @@ X LIB += -ldl X endif X ifeq ($(SYS),UNIX) X-LIB += -ldl -lcrypt X+LIB += -lcrypt X endif X endif X b45708355594ed1e96bc7248f5f1076c exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 13:30:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6A231065670 for ; Mon, 24 Sep 2012 13:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 841988FC17 for ; Mon, 24 Sep 2012 13:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8ODUAEg020949 for ; Mon, 24 Sep 2012 13:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8ODUAw4020943; Mon, 24 Sep 2012 13:30:10 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 13:30:10 GMT Resent-Message-Id: <201209241330.q8ODUAw4020943@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tomasz CEDRO Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 614B8106566B for ; Mon, 24 Sep 2012 13:20:48 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 4C42C8FC0C for ; Mon, 24 Sep 2012 13:20:48 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8ODKlB4003398 for ; Mon, 24 Sep 2012 13:20:47 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8ODKlpF003397; Mon, 24 Sep 2012 13:20:47 GMT (envelope-from nobody) Message-Id: <201209241320.q8ODKlpF003397@red.freebsd.org> Date: Mon, 24 Sep 2012 13:20:47 GMT From: Tomasz CEDRO To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171919: xmms libmpeg123 Undefined symbol "mpg123_synth_1to1_mmx" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 13:30:10 -0000 >Number: 171919 >Category: ports >Synopsis: xmms libmpeg123 Undefined symbol "mpg123_synth_1to1_mmx" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 13:30:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Tomasz CEDRO >Release: FreeBSD 9.0-RELEASE-p3 >Organization: CeDeROM >Environment: FreeBSD mercury 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 02:52:29 UTC 2012 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: After reinstalling some multimedia ports I got this error from XMMS and cannot play MP3 anymore - reinstall of xmms, plugins and mpg123 does not help... %pkg_info -r xmms-1.2.11_16 Information for xmms-1.2.11_16: Depends on: Dependency: xineramaproto-1.2.1 Dependency: xf86vidmodeproto-2.3.1 Dependency: xextproto-7.2.0 Dependency: renderproto-0.11.1 Dependency: randrproto-1.3.2 Dependency: kbproto-1.0.5 Dependency: inputproto-2.0.2 Dependency: fixesproto-5.0 Dependency: dri2proto-2.6 Dependency: damageproto-1.2.1 Dependency: compositeproto-0.4.2 Dependency: font-util-1.2.0 Dependency: encodings-1.0.4,1 Dependency: expat-2.0.1_2 Dependency: gnome_subr-1.0 Dependency: p11-kit-0.14 Dependency: ca_root_nss-3.13.6 Dependency: libproxy-0.4.6 Dependency: talkfilters-2.3.8 Dependency: pciids-20120906 Dependency: hicolor-icon-theme-0.12 Dependency: gmp-5.0.5 Dependency: nettle-2.5 Dependency: perl-5.12.4_4 Dependency: png-1.5.12 Dependency: jpeg-8_3 Dependency: jbigkit-1.6 Dependency: tiff-4.0.2_1 Dependency: jasper-1.900.1_10 Dependency: pkgconf-0.8.9 Dependency: xproto-7.0.22 Dependency: pixman-0.24.2 Dependency: libfontenc-1.1.0 Dependency: libXdmcp-1.1.0 Dependency: libXau-1.0.6 Dependency: libICE-1.0.7,1 Dependency: libSM-1.2.0,1 Dependency: freetype2-2.4.9_1 Dependency: mkfontscale-1.0.9 Dependency: mkfontdir-1.0.6 Dependency: fontconfig-2.9.0,1 Dependency: cantarell-fonts-0.0.10 Dependency: font-misc-meltho-1.0.3 Dependency: font-misc-ethiopic-1.0.3 Dependency: font-bh-ttf-1.0.3 Dependency: bitstream-vera-1.10_5 Dependency: xorg-fonts-truetype-7.5.1 Dependency: pcre-8.31_1 Dependency: librcd-0.1.13 Dependency: libpthread-stubs-0.3_3 Dependency: libxcb-1.7 Dependency: xcb-util-0.3.8,1 Dependency: libX11-1.4.4,1 Dependency: libXt-1.1.1,1 Dependency: libXext-1.3.0_1,1 Dependency: libXi-1.4.5,1 Dependency: libXxf86vm-1.1.1 Dependency: libXinerama-1.1.1,1 Dependency: libXrender-0.9.6 Dependency: libXrandr-1.3.2 Dependency: libXft-2.1.14 Dependency: libXfixes-5.0 Dependency: libXcomposite-0.4.3,1 Dependency: libXcursor-1.1.12 Dependency: libXdamage-1.1.3 Dependency: libpciaccess-0.12.1 Dependency: libdrm-2.4.31_1 Dependency: libGL-7.11.2_2 Dependency: libffi-3.0.9 Dependency: glib-1.2.10_13 Dependency: p5-Unicode-String-2.09 Dependency: p5-Unicode-Map8-0.13 Dependency: libiconv-1.14 Dependency: libxml2-2.7.8_3 Dependency: dbus-1.4.14_4 Dependency: gettext-0.18.1.1 Dependency: aspell-0.60.6.1_1 Dependency: python27-2.7.3_3 Dependency: glib-2.28.8_4 Dependency: recode-3.6_8 Dependency: gtk-1.2.10_22 Dependency: libgpg-error-1.10 Dependency: libgcrypt-1.5.0_1 Dependency: gnutls-2.12.18_1 Dependency: cups-client-1.5.2_2 Dependency: gamin-0.1.10_4 Dependency: gio-fam-backend-2.28.8_1 Dependency: shared-mime-info-1.0_1 Dependency: cairo-1.10.2_4,2 Dependency: gdk-pixbuf-2.23.5_3 Dependency: gobject-introspection-0.10.8_2 Dependency: pango-1.28.4_1 Dependency: gsettings-desktop-schemas-3.0.1 Dependency: glib-networking-2.28.7_4 Dependency: libsoup-2.34.3 Dependency: libtranslate-0.99_6 Dependency: enca-1.13 Dependency: libogg-1.3.0,4 Dependency: libvorbis-1.3.3_1,3 Dependency: libmikmod-3.1.12 Dependency: atk-2.0.1 Dependency: gtk-update-icon-cache-2.24.6_1 Dependency: gtk-2.24.6_2 Dependency: librcc-0.2.9_6 >How-To-Repeat: %xmms /usr/local/lib/xmms/Input/libmpg123.so: Undefined symbol "mpg123_synth_1to1_mmx" >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 13:30:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 590E01065675 for ; Mon, 24 Sep 2012 13:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0D5A68FC1A for ; Mon, 24 Sep 2012 13:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8ODUAVt020992 for ; Mon, 24 Sep 2012 13:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8ODUASC020981; Mon, 24 Sep 2012 13:30:10 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 13:30:10 GMT Resent-Message-Id: <201209241330.q8ODUASC020981@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Takanori Yamamoto Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7A7F106564A for ; Mon, 24 Sep 2012 13:23:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 92F1C8FC17 for ; Mon, 24 Sep 2012 13:23:32 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8ODNW5G003785 for ; Mon, 24 Sep 2012 13:23:32 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8ODNWj6003784; Mon, 24 Sep 2012 13:23:32 GMT (envelope-from nobody) Message-Id: <201209241323.q8ODNWj6003784@red.freebsd.org> Date: Mon, 24 Sep 2012 13:23:32 GMT From: Takanori Yamamoto To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171920: japanese/p5-nkf: there is a typo in pkg-descr X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 13:30:11 -0000 >Number: 171920 >Category: ports >Synopsis: japanese/p5-nkf: there is a typo in pkg-descr >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 13:30:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Takanori Yamamoto >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD azusa.miko.org 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 02:52:29 UTC 2012 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: pkg-descr says the syntax of p5-nkf is: use NKF; $output = nkf ($flags, $input) But the first argument of nkf() have to be an array, not a scalar value. So it should be: use NKF; $output = nkf (@flags, $input) (for more details about the usage of p5-nkf, see: nkf-2.1.2/NKF.mod/README) >How-To-Repeat: This is a documentation bug. >Fix: --- japanese/p5-nkf/pkg-descr.orig 2011-10-24 13:16:01.000000000 +0900 +++ japanese/p5-nkf/pkg-descr 2012-09-24 22:08:18.000000000 +0900 @@ -3,4 +3,4 @@ The syntax is as follows: use NKF; - $output = nkf ($flags, $input) + $output = nkf (@flags, $input) Patch attached with submission follows: --- japanese/p5-nkf/pkg-descr.orig 2011-10-24 13:16:01.000000000 +0900 +++ japanese/p5-nkf/pkg-descr 2012-09-24 22:08:18.000000000 +0900 @@ -3,4 +3,4 @@ The syntax is as follows: use NKF; - $output = nkf ($flags, $input) + $output = nkf (@flags, $input) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 13:30:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BF05E1065672 for ; Mon, 24 Sep 2012 13:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8F47F8FC1C for ; Mon, 24 Sep 2012 13:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8ODUBIP021062 for ; Mon, 24 Sep 2012 13:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8ODUBMV021047; Mon, 24 Sep 2012 13:30:11 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 13:30:11 GMT Resent-Message-Id: <201209241330.q8ODUBMV021047@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Hartmann Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 93D66106564A for ; Mon, 24 Sep 2012 13:26:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 7EC118FC0A for ; Mon, 24 Sep 2012 13:26:51 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8ODQpwa013539 for ; Mon, 24 Sep 2012 13:26:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8ODQpQB013534; Mon, 24 Sep 2012 13:26:51 GMT (envelope-from nobody) Message-Id: <201209241326.q8ODQpQB013534@red.freebsd.org> Date: Mon, 24 Sep 2012 13:26:51 GMT From: Oliver Hartmann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171921: New port: devel/ocltools: X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 13:30:11 -0000 >Number: 171921 >Category: ports >Synopsis: New port: devel/ocltools: >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 13:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Hartmann >Release: FreeBSD 10.0-CURRENT/amd64 CLANG & FreeBSD 9.1-PRE/amd64 CLANG >Organization: FU Berlin >Environment: >Description: The port provides the OpenCL toolset provided by the developer group located at http://www.clusterchimps.org. The port relies on either port ((devel/pocl) || ((devel/freeocl) && (devel/opencl))). >From the website's URL I took this for further explnanations: OCLTools is a powerful, yet compact, suite of tools that provides developers with more alternatives to kernel compilation. OCLTools enables you to eliminate costly kernel compilation time from the runtime of your application. With OCLTools developers can embed the source code of their kernels (clear text or encrypted) directly into their program binaries eliminating the need to distribute kernel source code in the open while still maintaining the flexibility of runtime compilation. Not only can you embed source code into your OpenCL binaries but you can embed precompiled kernels as well effectively eliminating the additional kernel compilation overhead from the run time of your application. Link: http://www.clusterchimps.org >How-To-Repeat: Attention: The toolset has not been tested properly on OpenCL code due to the lack of suitable testing environments, OpenCL libraries (they has been just committed/suggested to the ports collection as devel/freeocl and devel/pocl respectively). >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # ocltools # ocltools/Makefile # ocltools/distinfo # ocltools/pkg-descr # ocltools/files # ocltools/files/patch-configure.ac # ocltools/files/patch-src-oclcc-oclcc.cpp # ocltools/pkg-message # ocltools/pkg-plist # echo c - ocltools mkdir -p ocltools > /dev/null 2>&1 echo x - ocltools/Makefile sed 's/^X//' >ocltools/Makefile << '49f0b906df4994f4bd4b63258986a1e0' XPORTNAME= ocltools XPORTVERSION= 1.0 XCATEGORIES= devel X XMAINTAINER= ohartman@zedat.fu-berlin.de XCOMMENT= OCLTools is a powerful suite of tools that provides alternatives to kernel compilation. X XMASTER_SITES= http://www.clusterchimps.org/download-ocltools.php/ X X.include X XNOFETCHFILES= ${DISTFILES} X X.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) XIGNORE= Due to download restrictions you need to download the source\ X tarball ${PORTNAME}-${PORTVERSION}.${SUFFIX} manually\ X and place it in ${DISTDIR} as ${DISTFILES} X.endif X XLIB_DEPENDS= boost_program_options.4:$PORTSDIR}/devel/boost-libs X XCPPFLAGS+= -I/usr/local/include XLDFLAGS+= -L/usr/local/lib X X# Selecting the OpenCL library XOPTIONS_SINGLE= OCLLIB XOPTIONS_SINGLE_OCLLIB= LIB_POCL LIB_FREEOCL XOPTIONS_DEFAULT= LIB_POCL X XLIB_FREEOCL_DESC= Use devel/freeocl as OpenCL XLIB_POCL_DESC= Use devel/pocl as OpenCL X X.include X X.if ${PORT_OPTIONS:MLIB_POCL} XLIB_DEPENDS= pocl.0:${PORTSDIR}/devel/pocl X.endif X X.if ${PORT_OPTIONS:MLIB_FREEOCL} XLIB_DEPENDS= OpenCL:${PORTSDIR}/devel/freeocl X.endif X XUSE_LDCONFIG= yes XUSE_GMAKE= yes XGNU_CONFIGURE= yes X X.include 49f0b906df4994f4bd4b63258986a1e0 echo x - ocltools/distinfo sed 's/^X//' >ocltools/distinfo << 'bc356d45649379a3336532a455926b69' XSHA256 (ocltools-1.0.tar.gz) = cf2284130497bde9a912eb446de1e782870deb674d2624b393f954e972537983 XSIZE (ocltools-1.0.tar.gz) = 895803 bc356d45649379a3336532a455926b69 echo x - ocltools/pkg-descr sed 's/^X//' >ocltools/pkg-descr << '98993f2a93f313be2fbcb6967f646f66' XOCLtools are a powerful toolset mainatining OpenCL kernel. X XOCLTools comes with an offline OpenCL compiler (oclcc), XELF file generator (oclelf), encryption tool (oclcrypt), Xand utility library to help streamline the OpenCL kernel Xcompilation process. "The ClusterChimps Guide to Offline XOpenCL Compiling and Linking" not only serves as a Xreference for the tools but it also walks you step by Xstep through each usecase with example code showing you Xhow it's done. X Xhttp://www.clusterchimps.org 98993f2a93f313be2fbcb6967f646f66 echo c - ocltools/files mkdir -p ocltools/files > /dev/null 2>&1 echo x - ocltools/files/patch-configure.ac sed 's/^X//' >ocltools/files/patch-configure.ac << 'ea2980b17e074e2d9c3c65beb83998ff' X--- configure.ac.orig 2012-09-22 18:35:54.000000000 +0200 X+++ configure.ac 2012-09-22 18:36:21.000000000 +0200 X@@ -45,11 +45,11 @@ X [set_debug=gnu-default]) X if test "${set_debug}" = "yes"; then X GXX_DEBUG_FLAG="-g2 -O0" X- BOOST_LIBS="-lboost_program_options-gcc41-mt-d" X+ BOOST_LIBS="-lboost_program_options" X OPENCL_LIBS="-lOpenCL" X elif test "${set_debug}" = "gnu-default"; then X GXX_DEBUG_FLAG="-g -O2" X- BOOST_LIBS="-lboost_program_options-gcc41-mt-d" X+ BOOST_LIBS="-lboost_program_options" X OPENCL_LIBS="-lOpenCL" X else X GXX_DEBUG_FLAG="-g0 -O2" ea2980b17e074e2d9c3c65beb83998ff echo x - ocltools/files/patch-src-oclcc-oclcc.cpp sed 's/^X//' >ocltools/files/patch-src-oclcc-oclcc.cpp << '0cfcebbc9ab62265738738acb99df20a' X--- ./src/oclcc/oclcc.cpp.orig 2012-09-22 18:14:35.000000000 +0200 X+++ ./src/oclcc/oclcc.cpp 2012-09-22 18:24:01.000000000 +0200 X@@ -24,6 +24,9 @@ X #include X #include X #include X+#ifdef __FreeBSD__ X+typedef unsigned long ulong; X+#endif X X #include X #include 0cfcebbc9ab62265738738acb99df20a echo x - ocltools/pkg-message sed 's/^X//' >ocltools/pkg-message << '4cadb3f4edf9b6c3df0e2fa75549198d' XOCLTools provides developers with more alternatives to kernel compilation. XIt enables you to eliminate costly kernel compilation time from the runtime Xof your application. XDevelopers can embed the source code of their kernels (clear text or encrypted) Xdirectly into their program binaries eliminating the need to distribute kernel Xsource code in the open while still maintaining the flexibility of runtime Xcompilation. Not only can you embed source code into your OpenCL binaries Xbut you can embed precompiled kernels as well effectively eliminating the Xadditional kernel compilation overhead from the run time of your application. X XOCLTools comes with an offline OpenCL compiler (oclcc), ELF file generator X(oclelf), encryption tool (oclcrypt), and utility library to help streamline Xthe OpenCL kernel compilation process. "The ClusterChimps Guide to Offline XOpenCL Compiling and Linking" not only serves as a reference for the tools Xbut it also walks you step by step through each usecase with example code Xshowing you how it's done. 4cadb3f4edf9b6c3df0e2fa75549198d echo x - ocltools/pkg-plist sed 's/^X//' >ocltools/pkg-plist << '3a7cf29fc41f1e55d998a058990ae9c9' Xbin/oclcc Xbin/oclcrypt Xbin/oclelf Xinclude/oclutil.h Xlib/libocltools.a Xlib/libocltools.la Xlib/libocltools.so Xlib/libocltools.so.0 Xlib/libocltoolscrypt.a Xlib/libocltoolscrypt.la Xlib/libocltoolscrypt.so Xlib/libocltoolscrypt.so.0 Xshare/ocltools/oclelf.ld X@dirrm share/ocltools 3a7cf29fc41f1e55d998a058990ae9c9 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 13:30:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 837461065670; Mon, 24 Sep 2012 13:30:34 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 56F298FC17; Mon, 24 Sep 2012 13:30:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8ODUYkZ024015; Mon, 24 Sep 2012 13:30:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8ODUYOb024008; Mon, 24 Sep 2012 13:30:34 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 13:30:34 GMT Message-Id: <201209241330.q8ODUYOb024008@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171920: japanese/p5-nkf: there is a typo in pkg-descr X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 13:30:34 -0000 Synopsis: japanese/p5-nkf: there is a typo in pkg-descr Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 24 13:30:33 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171920 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 14:00:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7BDF01065670 for ; Mon, 24 Sep 2012 14:00:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4B3D08FC19 for ; Mon, 24 Sep 2012 14:00:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OE0QnM048853 for ; Mon, 24 Sep 2012 14:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OE0QC8048846; Mon, 24 Sep 2012 14:00:26 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 14:00:26 GMT Resent-Message-Id: <201209241400.q8OE0QC8048846@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jason Bacon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 898E5106566B for ; Mon, 24 Sep 2012 13:53:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 6A66C8FC15 for ; Mon, 24 Sep 2012 13:53:49 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8ODrnUD077412 for ; Mon, 24 Sep 2012 13:53:49 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8ODrnTx077411; Mon, 24 Sep 2012 13:53:49 GMT (envelope-from nobody) Message-Id: <201209241353.q8ODrnTx077411@red.freebsd.org> Date: Mon, 24 Sep 2012 13:53:49 GMT From: Jason Bacon To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171922: New port: biology/plinkseq X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 14:00:26 -0000 >Number: 171922 >Category: ports >Synopsis: New port: biology/plinkseq >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 14:00:25 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jason Bacon >Release: 9.0-RELEASE >Organization: Acadix Consulting, LLC >Environment: FreeBSD sculpin.jbacon.dyndns.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: PLINK/SEQ is an open-source C/C++ library for working with human genetic variation data. The specific focus is to provide a platform for analytic tool development for variation data from large-scale resequencing and genotyping projects, particularly whole-exome and whole-genome studies. It is independent of (but designed to be complementary to) the existing PLINK package. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # plinkseq # plinkseq/pkg-descr # plinkseq/Makefile # plinkseq/pkg-plist # plinkseq/distinfo # echo c - plinkseq mkdir -p plinkseq > /dev/null 2>&1 echo x - plinkseq/pkg-descr sed 's/^X//' >plinkseq/pkg-descr << 'bacf232f9cecbb3e3b9b866dd40bb1cf' XPLINK/SEQ is an open-source C/C++ library for working with human genetic Xvariation data. The specific focus is to provide a platform for analytic tool Xdevelopment for variation data from large-scale resequencing and genotyping Xprojects, particularly whole-exome and whole-genome studies. It is independent Xof (but designed to be complementary to) the existing PLINK package. X XWWW: http://atgu.mgh.harvard.edu/plinkseq/ bacf232f9cecbb3e3b9b866dd40bb1cf echo x - plinkseq/Makefile sed 's/^X//' >plinkseq/Makefile << '01f8db9920f39f93248e063672899cd8' X# New ports collection makefile for: plinkseq X# Date created: 06 September 2012 X# Whom: Jason Bacon X# X# $FreeBSD$ X# X XPORTNAME= plinkseq XPORTVERSION= 0.08 XCATEGORIES= biology science XMASTER_SITES= http://atgu.mgh.harvard.edu/${PORTNAME}/dist/version-${PORTVERSION}/ X XMAINTAINER= jwbacon@tds.net XCOMMENT= A toolset for working with human genetic variation data X XLICENSE= GPLv2 X XLIB_DEPENDS= protobuf:${PORTSDIR}/devel/protobuf X XUSE_DOS2UNIX= yes XUSE_LDCONFIG= yes XGNU_CONFIGURE= yes XCONFIGURE_ARGS+=--with-protobuf=${LOCALBASE} X Xpost-patch: X ${REINPLACE_CMD} -e 's|PF_INET|AF_INET|g' ${WRKSRC}/browser/mongoose.c X ${REINPLACE_CMD} -e 's|-ldl||g' \ X ${WRKSRC}/browser/Makefile.in \ X ${WRKSRC}/client/Makefile.in \ X ${WRKSRC}/index/Makefile.in X X.include 01f8db9920f39f93248e063672899cd8 echo x - plinkseq/pkg-plist sed 's/^X//' >plinkseq/pkg-plist << '34f02599c75e4950ca1bd20735d356cb' Xbin/behead Xbin/gcol Xbin/index Xbin/index.cgi Xbin/mongoose Xbin/pbrowse Xbin/pbrowse.cgi Xbin/pseq Xbin/tab2vcf Xlib/libplinkseq.la Xlib/libplinkseq.so Xlib/libplinkseq.so.0 34f02599c75e4950ca1bd20735d356cb echo x - plinkseq/distinfo sed 's/^X//' >plinkseq/distinfo << '85239e4941d225b70ec996841d9daa0e' XSHA256 (plinkseq-0.08.tar.gz) = 6bde88925a82a79c6fa2401a197865cf6d659163fd5f11c5fb426701b54bb24f XSIZE (plinkseq-0.08.tar.gz) = 2991871 85239e4941d225b70ec996841d9daa0e exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 14:08:45 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 32C141065670; Mon, 24 Sep 2012 14:08:45 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 074418FC08; Mon, 24 Sep 2012 14:08:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OE8iq2057807; Mon, 24 Sep 2012 14:08:44 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OE8ihB057803; Mon, 24 Sep 2012 14:08:44 GMT (envelope-from madpilot) Date: Mon, 24 Sep 2012 14:08:44 GMT Message-Id: <201209241408.q8OE8ihB057803@freefall.freebsd.org> To: madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Cc: Subject: Re: ports/171913: [maintainer update] graphics/zathura-djvu 0.2.0 -> 0.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 14:08:45 -0000 Synopsis: [maintainer update] graphics/zathura-djvu 0.2.0 -> 0.2.1 Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Mon Sep 24 14:08:44 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171913 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 16:30:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 822EF106564A for ; Mon, 24 Sep 2012 16:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 528168FC0C for ; Mon, 24 Sep 2012 16:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OGUGM4085119 for ; Mon, 24 Sep 2012 16:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OGUFF8085112; Mon, 24 Sep 2012 16:30:15 GMT (envelope-from gnats) Date: Mon, 24 Sep 2012 16:30:15 GMT Message-Id: <201209241630.q8OGUFF8085112@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Matthias Petermann Cc: Subject: ports/171893: [BUG] sysutils/ezjail: ezjail_admin update -b (Cannot find your copy of the FreeBSD source tree) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Petermann List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 16:30:16 -0000 The following reply was made to PR ports/171893; it has been noted by GNATS. From: Matthias Petermann To: bug-followup@FreeBSD.org Cc: Subject: ports/171893: [BUG] sysutils/ezjail: ezjail_admin update -b (Cannot find your copy of the FreeBSD source tree) Date: Mon, 24 Sep 2012 18:26:23 +0200 Hello, please close this PR. It was solved via Maintainer update on ports/171894 (http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171894). Kind regards, Matthias -- Matthias Petermann From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 16:31:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 804D4106566B; Mon, 24 Sep 2012 16:31:23 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 536178FC16; Mon, 24 Sep 2012 16:31:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OGVN8F094148; Mon, 24 Sep 2012 16:31:23 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OGVNPF094144; Mon, 24 Sep 2012 11:31:23 -0500 (CDT) (envelope-from bdrewery) Date: Mon, 24 Sep 2012 11:31:23 -0500 (CDT) Message-Id: <201209241631.q8OGVNPF094144@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/171904: [MAINTAINER] www/phpbb3 - Update 3.0.10 to 3.0.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 16:31:23 -0000 Synopsis: [MAINTAINER] www/phpbb3 - Update 3.0.10 to 3.0.11 Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Mon Sep 24 11:31:22 CDT 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171904 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 16:50:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B5DC01065670 for ; Mon, 24 Sep 2012 16:50:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 726E28FC1B for ; Mon, 24 Sep 2012 16:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OGoCgU005027 for ; Mon, 24 Sep 2012 16:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OGoCkZ005026; Mon, 24 Sep 2012 16:50:12 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 16:50:12 GMT Resent-Message-Id: <201209241650.q8OGoCkZ005026@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, William Grzybowski Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C7A01106566B for ; Mon, 24 Sep 2012 16:41:23 +0000 (UTC) (envelope-from william88@gmail.com) Received: from mail-gh0-f182.google.com (mail-gh0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 81AA08FC15 for ; Mon, 24 Sep 2012 16:41:23 +0000 (UTC) Received: by ghrr20 with SMTP id r20so1662371ghr.13 for ; Mon, 24 Sep 2012 09:41:22 -0700 (PDT) Received: by 10.236.73.72 with SMTP id u48mr12927419yhd.71.1348504882687; Mon, 24 Sep 2012 09:41:22 -0700 (PDT) Received: from localhost (201.86.30.162.dynamic.adsl.gvt.net.br. [201.86.30.162]) by mx.google.com with ESMTPS id e24sm25497040yhh.4.2012.09.24.09.41.21 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 24 Sep 2012 09:41:21 -0700 (PDT) Message-Id: <50608d31.a473ec0a.02e3.7330@mx.google.com> Date: Mon, 24 Sep 2012 09:41:21 -0700 (PDT) From: William Grzybowski To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/171924: [MAINTAINER] www/py-django-tastypie: py-mimeparse is aldo a run dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: William Grzybowski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 16:50:12 -0000 >Number: 171924 >Category: ports >Synopsis: [MAINTAINER] www/py-django-tastypie: py-mimeparse is aldo a run dependency >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 16:50:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: William Grzybowski >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: >Description: devel/py-mimeparse is also a run dependency >How-To-Repeat: >Fix: See attached patch --- py-django-tastypie.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 304785) +++ Makefile (working copy) @@ -14,7 +14,8 @@ MAINTAINER= william88@gmail.com COMMENT= Create REST API for Django apps -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=1.5:${PORTSDIR}/devel/py-dateutil +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mimeparse>=0:${PORTSDIR}/devel/py-mimeparse \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=1.5:${PORTSDIR}/devel/py-dateutil USE_PYTHON= 2.5+ USE_PYDISTUTILS= easy_install --- py-django-tastypie.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 16:50:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5899810656D8; Mon, 24 Sep 2012 16:50:30 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2BF1C8FC16; Mon, 24 Sep 2012 16:50:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OGoUiR008130; Mon, 24 Sep 2012 16:50:30 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OGoUIi008122; Mon, 24 Sep 2012 16:50:30 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 16:50:30 GMT Message-Id: <201209241650.q8OGoUIi008122@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171924: [MAINTAINER] www/py-django-tastypie: py-mimeparse is aldo a run dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 16:50:30 -0000 Synopsis: [MAINTAINER] www/py-django-tastypie: py-mimeparse is aldo a run dependency Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 24 16:50:29 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171924 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 17:10:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFBE3106566C for ; Mon, 24 Sep 2012 17:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B9F578FC0C for ; Mon, 24 Sep 2012 17:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OHACx6022587 for ; Mon, 24 Sep 2012 17:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OHAC7L022581; Mon, 24 Sep 2012 17:10:12 GMT (envelope-from gnats) Date: Mon, 24 Sep 2012 17:10:12 GMT Message-Id: <201209241710.q8OHAC7L022581@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Tom Russo Cc: Subject: Re: ports/171899: Openoffice 3.4.1 build failure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tom Russo List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 17:10:13 -0000 The following reply was made to PR ports/171899; it has been noted by GNATS. From: Tom Russo To: bug-followup@freebsd.org, russo@bogodyn.org Cc: Subject: Re: ports/171899: Openoffice 3.4.1 build failure Date: Mon, 24 Sep 2012 11:08:45 -0600 --e89a8ff1c580a0aab204ca75a5d8 Content-Type: text/plain; charset=ISO-8859-1 The issue is that "croscorefonts" was not installed for 3.4.0, and it was not pulled in as a dependency when trying to portupgrade. Doing a "make depends" in the ports/editors/openoffice-3 directory before the portupgrade was required. --e89a8ff1c580a0aab204ca75a5d8 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable The issue is that "croscorefonts" was not installed for 3.4.0, an= d it was not pulled in as a dependency when trying to portupgrade.=A0=A0 Do= ing a "make depends" in the ports/editors/openoffice-3 directory = before the portupgrade was required.

--e89a8ff1c580a0aab204ca75a5d8-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 18:00:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36836106566C for ; Mon, 24 Sep 2012 18:00:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E57468FC16 for ; Mon, 24 Sep 2012 18:00:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OI0P5c067577 for ; Mon, 24 Sep 2012 18:00:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OI0Pil067570; Mon, 24 Sep 2012 18:00:25 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 18:00:25 GMT Resent-Message-Id: <201209241800.q8OI0Pil067570@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Nicole Reid Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F032106564A for ; Mon, 24 Sep 2012 17:59:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5AA9A8FC08 for ; Mon, 24 Sep 2012 17:59:49 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OHxnNf018426 for ; Mon, 24 Sep 2012 17:59:49 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8OHxnZ9018425; Mon, 24 Sep 2012 17:59:49 GMT (envelope-from nobody) Message-Id: <201209241759.q8OHxnZ9018425@red.freebsd.org> Date: Mon, 24 Sep 2012 17:59:49 GMT From: Nicole Reid To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171925: [Maintainer Update] www/subsonic to 4.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 18:00:26 -0000 >Number: 171925 >Category: ports >Synopsis: [Maintainer Update] www/subsonic to 4.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 18:00:25 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Nicole Reid >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN subsonic-4.6/Makefile subsonic/Makefile --- subsonic-4.6/Makefile 2012-07-12 10:29:12.921730126 -0400 +++ subsonic/Makefile 2012-09-24 11:44:41.718086711 -0400 @@ -6,8 +6,7 @@ # PORTNAME= subsonic -PORTVERSION= 4.6 -PORTREVISION?= 2 +PORTVERSION= 4.7 CATEGORIES= www java MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}-war diff -ruN subsonic-4.6/distinfo subsonic/distinfo --- subsonic-4.6/distinfo 2012-07-12 10:29:12.921730126 -0400 +++ subsonic/distinfo 2012-09-24 11:44:56.508087026 -0400 @@ -1,2 +1,2 @@ -SHA256 (subsonic-4.6-war.zip) = e292e47b1435bfc4f021308d191accf04a0b56f2ea2f916f6d73ba652cf836d7 -SIZE (subsonic-4.6-war.zip) = 18335267 +SHA256 (subsonic-4.7-war.zip) = af5e77729ba9b96a896cef8fd858de140da78082e1e14d2ac9d508268469ac71 +SIZE (subsonic-4.7-war.zip) = 19936546 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 18:55:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A1821065672; Mon, 24 Sep 2012 18:55:17 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4DFFF8FC12; Mon, 24 Sep 2012 18:55:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OItHAX022002; Mon, 24 Sep 2012 18:55:17 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OItHUV021997; Mon, 24 Sep 2012 18:55:17 GMT (envelope-from crees) Date: Mon, 24 Sep 2012 18:55:17 GMT Message-Id: <201209241855.q8OItHUV021997@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, crees@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/163438: New port: multimedia/mplayer2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 18:55:17 -0000 Synopsis: New port: multimedia/mplayer2 Responsible-Changed-From-To: freebsd-ports-bugs->crees Responsible-Changed-By: crees Responsible-Changed-When: Mon Sep 24 18:55:16 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=163438 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 19:50:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD6EC106564A for ; Mon, 24 Sep 2012 19:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 913918FC14 for ; Mon, 24 Sep 2012 19:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OJo9F0068225 for ; Mon, 24 Sep 2012 19:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OJo9V6068224; Mon, 24 Sep 2012 19:50:09 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 19:50:09 GMT Resent-Message-Id: <201209241950.q8OJo9V6068224@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vitaly Magerya Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D18E4106566B for ; Mon, 24 Sep 2012 19:44:58 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BD1228FC0C for ; Mon, 24 Sep 2012 19:44:58 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OJiwad098743 for ; Mon, 24 Sep 2012 19:44:58 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8OJiwP4098727; Mon, 24 Sep 2012 19:44:58 GMT (envelope-from nobody) Message-Id: <201209241944.q8OJiwP4098727@red.freebsd.org> Date: Mon, 24 Sep 2012 19:44:58 GMT From: Vitaly Magerya To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171926: [maintainer] lang/chicken: update to 4.8.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 19:50:09 -0000 >Number: 171926 >Category: ports >Synopsis: [maintainer] lang/chicken: update to 4.8.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 19:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Vitaly Magerya >Release: >Organization: >Environment: >Description: Update lang/chicken from 4.7.0 to 4.8.0. Also make NOPORTDOCS work. Tested on redports [1]. [1] https://redports.org/buildarchive/20120924172733-58763/ >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN chicken.orig/Makefile chicken/Makefile --- chicken.orig/Makefile 2012-09-24 20:28:26.000000000 +0300 +++ chicken/Makefile 2012-09-24 20:25:49.000000000 +0300 @@ -6,7 +6,7 @@ # PORTNAME= chicken -PORTVERSION= 4.7.0 +PORTVERSION= 4.8.0 CATEGORIES= lang scheme MASTER_SITES= http://code.call-cc.org/releases/${PORTVERSION}/ @@ -23,6 +23,7 @@ C_COMPILER="${CC}" \ CXX_COMPILER="${CXX}" \ LIBRARIAN="${AR}" \ + DOCDIR="${DOCSDIR}" \ C_COMPILER_OPTIMIZATION_OPTIONS="${CFLAGS}" NEW_ARCH= ${ARCH:S/i386/x86/:S/amd64/x86-64/} @@ -37,14 +38,17 @@ .endif post-patch: - @${REINPLACE_CMD} '/^%.so:/s|$$| lib$$(PROGRAM_PREFIX)chicken$$(PROGRAM_SUFFIX)$$(SO)|' \ - ${WRKSRC}/rules.make - @${REINPLACE_CMD} \ - 's|^DOCDIR = .*$$|DOCDIR = ${DOCSDIR}|' \ - ${WRKSRC}/defaults.make +.ifdef NOPORTDOCS + ${REINPLACE_CMD} '/DESTDIR.*manual/d' ${WRKSRC}/rules.make +.endif post-install: @${INSTALL_DATA} ${WRKSRC}/NEWS ${DOCSDIR} @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} +# This only works *after* chicken is installed. +regression-test: build + (cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} \ + ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} check) + .include diff -ruN chicken.orig/distinfo chicken/distinfo --- chicken.orig/distinfo 2012-09-24 20:28:26.000000000 +0300 +++ chicken/distinfo 2012-09-24 20:09:16.000000000 +0300 @@ -1,2 +1,2 @@ -SHA256 (chicken-4.7.0.tar.gz) = 56afdbff812febe3f98ae437716ecaa96115732f21db5063ce413e4c7449a26c -SIZE (chicken-4.7.0.tar.gz) = 3392031 +SHA256 (chicken-4.8.0.tar.gz) = 5b2e8c6b4b13b502d8c684b394d80ed490d2884c03789353d895ab85d19979ab +SIZE (chicken-4.8.0.tar.gz) = 3970818 diff -ruN chicken.orig/files/patch-rules-make chicken/files/patch-rules-make --- chicken.orig/files/patch-rules-make 1970-01-01 03:00:00.000000000 +0300 +++ chicken/files/patch-rules-make 2012-09-24 20:06:39.000000000 +0300 @@ -0,0 +1,13 @@ +--- rules.make.orig 2012-07-07 11:34:54.000000000 +0300 ++++ rules.make 2012-07-07 11:38:18.000000000 +0300 +@@ -242,8 +242,8 @@ + + # import libraries and extensions + +-%.so: %.o +- $(LINKER) $(LINKER_OPTIONS) $(LINKER_LINK_SHARED_DLOADABLE_OPTIONS) $^ $(LINKER_OUTPUT_OPTION) $@ \ ++%.so: %.o $(PRIMARY_LIBCHICKEN) ++ $(LINKER) $(LINKER_OPTIONS) $(LINKER_LINK_SHARED_DLOADABLE_OPTIONS) $< $(LINKER_OUTPUT_OPTION) $@ \ + $(LINKER_LIBRARY_PREFIX)$(PROGRAM_PREFIX)chicken$(PROGRAM_SUFFIX)$(LINKER_LIBRARY_SUFFIX) \ + $(LIBRARIES) + diff -ruN chicken.orig/pkg-plist chicken/pkg-plist --- chicken.orig/pkg-plist 2012-09-24 20:28:26.000000000 +0300 +++ chicken/pkg-plist 2012-09-24 20:17:47.000000000 +0300 @@ -19,7 +19,6 @@ lib/chicken/6/modules.db lib/chicken/6/ports.import.so lib/chicken/6/posix.import.so -lib/chicken/6/scheme.import.so lib/chicken/6/setup-api.import.so lib/chicken/6/setup-api.so lib/chicken/6/setup-download.import.so @@ -88,8 +87,8 @@ %%PORTDOCS%%%%DOCSDIR%%/manual/Unit tcp.html %%PORTDOCS%%%%DOCSDIR%%/manual/Unit utils.html %%PORTDOCS%%%%DOCSDIR%%/manual/Using the compiler.html -%%PORTDOCS%%%%DOCSDIR%%/manual/Using the interpreter.html %%PORTDOCS%%%%DOCSDIR%%/manual/chicken.png +%%PORTDOCS%%%%DOCSDIR%%/manual/Using the interpreter.html %%PORTDOCS%%%%DOCSDIR%%/manual/faq.html %%PORTDOCS%%%%DOCSDIR%%/manual/index.html %%PORTDOCS%%%%DOCSDIR%%/manual/manual.css >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 19:50:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0CC3B106564A for ; Mon, 24 Sep 2012 19:50:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D2BDD8FC16 for ; Mon, 24 Sep 2012 19:50:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OJoDNb068683 for ; Mon, 24 Sep 2012 19:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OJoDJ8068674; Mon, 24 Sep 2012 19:50:13 GMT (envelope-from gnats) Date: Mon, 24 Sep 2012 19:50:13 GMT Message-Id: <201209241950.q8OJoDJ8068674@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Kurt Jaeger Cc: Subject: Re: ports/171896: ports/multimedia/libvdpau on 9.0-REL amd64 fails to configure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kurt Jaeger List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 19:50:15 -0000 The following reply was made to PR ports/171896; it has been noted by GNATS. From: Kurt Jaeger To: Jan Beich Cc: bug-followup@FreeBSD.org Subject: Re: ports/171896: ports/multimedia/libvdpau on 9.0-REL amd64 fails to configure Date: Mon, 24 Sep 2012 21:45:49 +0200 Hi! > > checking how to hardcode library paths into programs... immediate > > ./configure: 14968: Syntax error: word unexpected (expecting ")") > > Can you check if it works with ports/171824 ? No, it hits the same error. -- pi@opsec.eu +49 171 3101372 8 years to go ! From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 19:50:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6C7701065670 for ; Mon, 24 Sep 2012 19:50:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 455C98FC18 for ; Mon, 24 Sep 2012 19:50:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OJoFKc068921 for ; Mon, 24 Sep 2012 19:50:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OJoFOU068914; Mon, 24 Sep 2012 19:50:15 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 19:50:15 GMT Resent-Message-Id: <201209241950.q8OJoFOU068914@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, milki Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 052D6106566B for ; Mon, 24 Sep 2012 19:46:18 +0000 (UTC) (envelope-from milki@cibo.ircmylife.com) Received: from cibo.ircmylife.com (unknown [IPv6:2607:f2f8:af08::2]) by mx1.freebsd.org (Postfix) with ESMTP id DFA628FC16 for ; Mon, 24 Sep 2012 19:46:17 +0000 (UTC) Received: from cibo.ircmylife.com (localhost [127.0.0.1]) by cibo.ircmylife.com (8.14.5/8.14.5) with ESMTP id q8OJkEmQ027185 for ; Mon, 24 Sep 2012 12:46:14 -0700 (PDT) (envelope-from milki@cibo.ircmylife.com) Received: (from milki@localhost) by cibo.ircmylife.com (8.14.5/8.14.5/Submit) id q8OJkEUX027184; Mon, 24 Sep 2012 12:46:14 -0700 (PDT) (envelope-from milki) Message-Id: <201209241946.q8OJkEUX027184@cibo.ircmylife.com> Date: Mon, 24 Sep 2012 12:46:14 -0700 (PDT) From: milki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/171927: [MAINTAINER] sysutils/password-store: update to 1.4_1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 19:50:15 -0000 >Number: 171927 >Category: ports >Synopsis: [MAINTAINER] sysutils/password-store: update to 1.4_1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 19:50:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: milki >Release: FreeBSD 8.3-RELEASE-p3 amd64 >Organization: cibo >Environment: System: FreeBSD cibo.ircmylife.com 8.3-RELEASE-p3 FreeBSD 8.3-RELEASE-p3 #0: Tue Jun 12 00:39:29 UTC 2012 >Description: - Update to 1.4_1 Change distfile format Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- password-store-1.4_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/password-store/Makefile ./Makefile --- /usr/ports/sysutils/password-store/Makefile 2012-09-24 07:04:31.000000000 -0700 +++ ./Makefile 2012-09-24 12:45:40.000000000 -0700 @@ -2,9 +2,9 @@ PORTNAME= password-store PORTVERSION= 1.4 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://git.zx2c4.com/password-store/snapshot/ -EXTRACT_SUFX= .tar.xz MAINTAINER= milki@rescomp.berkeley.edu COMMENT= Stores, retrieves, generates, and synchronizes passwords securely diff -ruN --exclude=CVS /usr/ports/sysutils/password-store/distinfo ./distinfo --- /usr/ports/sysutils/password-store/distinfo 2012-09-24 07:04:31.000000000 -0700 +++ ./distinfo 2012-09-24 12:38:53.000000000 -0700 @@ -1,2 +1,2 @@ -SHA256 (password-store-1.4.tar.xz) = 2e94b0078abdf4673f3c22bde048776a3c12776b1bc98c22e8fb6e684b0b4a9e -SIZE (password-store-1.4.tar.xz) = 17968 +SHA256 (password-store-1.4.tar.gz) = ac688edff984307653ebbdbaf1e0ac3ff57474a421eba1c25092ebe64f8edcf5 +SIZE (password-store-1.4.tar.gz) = 19632 --- password-store-1.4_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 19:50:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 159D81065672; Mon, 24 Sep 2012 19:50:32 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DF3F68FC17; Mon, 24 Sep 2012 19:50:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OJoVXv071628; Mon, 24 Sep 2012 19:50:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OJoVPh071616; Mon, 24 Sep 2012 19:50:31 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 19:50:31 GMT Message-Id: <201209241950.q8OJoVPh071616@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171927: [MAINTAINER] sysutils/password-store: update to 1.4_1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 19:50:32 -0000 Synopsis: [MAINTAINER] sysutils/password-store: update to 1.4_1 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 24 19:50:31 UTC 2012 Responsible-Changed-Why: swills@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171927 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 21:10:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 453E0106564A for ; Mon, 24 Sep 2012 21:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 127868FC15 for ; Mon, 24 Sep 2012 21:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OLA6G6040773 for ; Mon, 24 Sep 2012 21:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OLA66d040772; Mon, 24 Sep 2012 21:10:06 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 21:10:06 GMT Resent-Message-Id: <201209242110.q8OLA66d040772@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Shane Holden Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 71D48106566B for ; Mon, 24 Sep 2012 21:09:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5BD1E8FC15 for ; Mon, 24 Sep 2012 21:09:31 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OL9V9e054527 for ; Mon, 24 Sep 2012 21:09:31 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8OL9Vwl054526; Mon, 24 Sep 2012 21:09:31 GMT (envelope-from nobody) Message-Id: <201209242109.q8OL9Vwl054526@red.freebsd.org> Date: Mon, 24 Sep 2012 21:09:31 GMT From: David Shane Holden To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171928: [patch update] security/strongswan 4.5.3 -> 5.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 21:10:07 -0000 >Number: 171928 >Category: ports >Synopsis: [patch update] security/strongswan 4.5.3 -> 5.0.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 21:10:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: David Shane Holden >Release: >Organization: >Environment: >Description: [patch update] security/strongswan 4.5.3 -> 5.0.0 * pluto has been removed and charon now has built-in ikev1 support which is why the --disable-pluto configure arg was removed and an IKEv1 option added. * the man3 files are no longer installed * gmake is required for this release, but shouldn't be required for 5.0.1. * a new patch was added to include stdint which shouldn't be required for 5.0.1. * the old ipsec.in patch is no longer required, thus removed. http://wiki.strongswan.org/issues/205 resolves the make, and stdint issues noted above. >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/security/strongswan/Makefile b/security/strongswan/Makefile index 6e28fdc..1ba1695 100644 --- a/security/strongswan/Makefile +++ b/security/strongswan/Makefile @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= strongswan -PORTVERSION= 4.5.3 +PORTVERSION= 5.0.0 CATEGORIES= security MASTER_SITES= http://download.strongswan.org/ \ http://download2.strongswan.org/ @@ -13,7 +13,9 @@ MASTER_SITES= http://download.strongswan.org/ \ MAINTAINER= riaank@gmail.com COMMENT= Open Source IKEv2 IPsec-based VPN solution -OPTIONS= SQLITE "Enable SQLite" off \ +OPTIONS= IKEv1 "Enable IKEv1 support" off \ + LDAP "Enable LDAP" off \ + SQLITE "Enable SQLite" off \ MYSQL "Enable MySQL" off \ CURL "Enable CURL to fetch CRL/OCSP" off \ EAPAKA3GPP2 "Enable EAP AKA with 3gpp2 backend" off \ @@ -22,6 +24,7 @@ OPTIONS= SQLITE "Enable SQLite" off \ USE_RC_SUBR= strongswan USE_BZIP2= yes USE_AUTOTOOLS= libtool +USE_GMAKE= yes GNU_CONFIGURE= yes USE_OPENSSL= yes USE_LDCONFIG= yes @@ -31,7 +34,6 @@ CONFIGURE_ARGS= --enable-kernel-pfkey \ --disable-kernel-netlink \ --disable-tools \ --disable-scripts \ - --disable-pluto \ --disable-gmp \ --enable-openssl \ --enable-eap-identity \ @@ -46,9 +48,6 @@ CONFIGURE_ARGS= --enable-kernel-pfkey \ --with-lib-prefix=${PREFIX} # Man pages with default install -MAN3= anyaddr.3 atoaddr.3 atoasr.3 atoul.3 goodmask.3 initaddr.3 \ - initsubnet.3 portof.3 rangetosubnet.3 sameaddr.3 subnetof.3 \ - ttoaddr.3 ttodata.3 ttosa.3 ttoul.3 MAN5= ipsec.conf.5 ipsec.secrets.5 strongswan.conf.5 MAN8= ipsec.8 _updown.8 _updown_espmark.8 @@ -60,6 +59,21 @@ IGNORE= requires at least FreeBSD 8.X .endif # Extra options +.if defined(WITH_IKEv1) +PLIST_SUB+= IKEv1="" +.else +CONFIGURE_ARGS+= --disable-ikev1 +PLIST_SUB+= IKEv1="@comment " +.endif + +.if defined(WITH_LDAP) +USE_OPENLDAP= yes +CONFIGURE_ARGS+= --enable-ldap +PLIST_SUB+= LDAP="" +.else +PLIST_SUB+= LDAP="@comment " +.endif + .if defined(WITH_SQLITE) || defined (WITH_MYSQL) CONFIGURE_ARGS+= --enable-attr-sql CONFIGURE_ARGS+= --enable-sql diff --git a/security/strongswan/distinfo b/security/strongswan/distinfo index 6dfa1da..e374d67 100644 --- a/security/strongswan/distinfo +++ b/security/strongswan/distinfo @@ -1,2 +1,2 @@ -SHA256 (strongswan-4.5.3.tar.bz2) = a59fa0d9820fb06a3c848f4537b9256d2067265ad10e1b007b79f3b16279f1ff -SIZE (strongswan-4.5.3.tar.bz2) = 3299522 +SHA256 (strongswan-5.0.0.tar.bz2) = efc13c86e715b5e596d9d8535640c830f83e977fe521afd2c70d68926c4b573e +SIZE (strongswan-5.0.0.tar.bz2) = 3087071 diff --git a/security/strongswan/files/patch-src-libcharon-encoding-payloads-transform__attribute.c b/security/strongswan/files/patch-src-libcharon-encoding-payloads-transform__attribute.c new file mode 100644 index 0000000..ed12ec4 --- /dev/null +++ b/security/strongswan/files/patch-src-libcharon-encoding-payloads-transform__attribute.c @@ -0,0 +1,41 @@ +From d511a71daa36f701636a76fb1e513755b3cb8b03 Mon Sep 17 00:00:00 2001 +From: Tobias Brunner +Date: Fri, 27 Jul 2012 11:36:59 +0200 +Subject: [PATCH] Include stdint.h for UINTxx_MAX defines + +Fixes #205. +--- + src/libcharon/encoding/payloads/transform_attribute.c | 5 +++-- + 1 file changed, 3 insertions(+), 2 deletions(-) + +diff --git a/src/libcharon/encoding/payloads/transform_attribute.c b/src/libcharon/encoding/payloads/transform_attribute.c +index a11ee98..d20f77c 100644 +--- src/libcharon/encoding/payloads/transform_attribute.c ++++ src/libcharon/encoding/payloads/transform_attribute.c +@@ -17,6 +17,7 @@ + + #include + #include ++#include + + #include "transform_attribute.h" + +@@ -107,13 +108,13 @@ struct private_transform_attribute_t { + */ + static encoding_rule_t encodings[] = { + /* Flag defining the format of this payload */ +- { ATTRIBUTE_FORMAT, offsetof(private_transform_attribute_t, attribute_format) }, ++ { ATTRIBUTE_FORMAT, offsetof(private_transform_attribute_t, attribute_format) }, + /* type of the attribute as 15 bit unsigned integer */ + { ATTRIBUTE_TYPE, offsetof(private_transform_attribute_t, attribute_type) }, + /* Length or value, depending on the attribute format flag */ + { ATTRIBUTE_LENGTH_OR_VALUE,offsetof(private_transform_attribute_t, attribute_length_or_value) }, + /* Value of attribute if attribute format flag is zero */ +- { ATTRIBUTE_VALUE, offsetof(private_transform_attribute_t, attribute_value) } ++ { ATTRIBUTE_VALUE, offsetof(private_transform_attribute_t, attribute_value) } + }; + + /* +-- +1.7.10.4 + diff --git a/security/strongswan/files/patch-src__ipsec__ipsec.in b/security/strongswan/files/patch-src__ipsec__ipsec.in deleted file mode 100644 index eb1118b..0000000 --- a/security/strongswan/files/patch-src__ipsec__ipsec.in +++ /dev/null @@ -1,20 +0,0 @@ -diff -ur srcold/ipsec/ipsec.in src/ipsec/ipsec.in ---- srcold/ipsec/ipsec.in 2011-09-22 08:39:26.589952124 +0200 -+++ src/ipsec/ipsec.in 2011-09-22 08:39:44.640945476 +0200 -@@ -19,6 +19,7 @@ - export PATH - - # name and version of the ipsec implementation -+OS_NAME=`uname -s` - IPSEC_NAME="@IPSEC_NAME@" - IPSEC_VERSION="U@IPSEC_VERSION@/K`uname -r`" - -@@ -378,7 +379,7 @@ - fi - ;; - version|--version) -- printf "Linux $IPSEC_NAME $IPSEC_VERSION\n" -+ printf "$OS_NAME $IPSEC_NAME $IPSEC_VERSION\n" - printf "$IPSEC_DISTRO\n" - printf "See 'ipsec --copyright' for copyright information.\n" - exit 0 diff --git a/security/strongswan/pkg-plist b/security/strongswan/pkg-plist index 036e76d..7bf23f6 100644 --- a/security/strongswan/pkg-plist +++ b/security/strongswan/pkg-plist @@ -12,6 +12,10 @@ lib/ipsec/libstrongswan.a lib/ipsec/libstrongswan.la lib/ipsec/libstrongswan.so lib/ipsec/libstrongswan.so.0 +lib/ipsec/libtls.a +lib/ipsec/libtls.la +lib/ipsec/libtls.so +lib/ipsec/libtls.so.0 lib/ipsec/plugins/libstrongswan-addrblock.a lib/ipsec/plugins/libstrongswan-addrblock.la lib/ipsec/plugins/libstrongswan-addrblock.so @@ -24,6 +28,9 @@ lib/ipsec/plugins/libstrongswan-attr.so lib/ipsec/plugins/libstrongswan-blowfish.a lib/ipsec/plugins/libstrongswan-blowfish.la lib/ipsec/plugins/libstrongswan-blowfish.so +lib/ipsec/plugins/libstrongswan-cmac.a +lib/ipsec/plugins/libstrongswan-cmac.la +lib/ipsec/plugins/libstrongswan-cmac.so lib/ipsec/plugins/libstrongswan-constraints.a lib/ipsec/plugins/libstrongswan-constraints.la lib/ipsec/plugins/libstrongswan-constraints.so @@ -63,6 +70,9 @@ lib/ipsec/plugins/libstrongswan-md4.so lib/ipsec/plugins/libstrongswan-md5.a lib/ipsec/plugins/libstrongswan-md5.la lib/ipsec/plugins/libstrongswan-md5.so +lib/ipsec/plugins/libstrongswan-nonce.a +lib/ipsec/plugins/libstrongswan-nonce.la +lib/ipsec/plugins/libstrongswan-nonce.so lib/ipsec/plugins/libstrongswan-openssl.a lib/ipsec/plugins/libstrongswan-openssl.la lib/ipsec/plugins/libstrongswan-openssl.so @@ -75,6 +85,9 @@ lib/ipsec/plugins/libstrongswan-pgp.so lib/ipsec/plugins/libstrongswan-pkcs1.a lib/ipsec/plugins/libstrongswan-pkcs1.la lib/ipsec/plugins/libstrongswan-pkcs1.so +lib/ipsec/plugins/libstrongswan-pkcs8.a +lib/ipsec/plugins/libstrongswan-pkcs8.la +lib/ipsec/plugins/libstrongswan-pkcs8.so lib/ipsec/plugins/libstrongswan-pubkey.a lib/ipsec/plugins/libstrongswan-pubkey.la lib/ipsec/plugins/libstrongswan-pubkey.so @@ -128,6 +141,10 @@ sbin/ipsec %%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-gmp.a %%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-gmp.la %%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-gmp.so +%%EAPSIMFILE%%lib/ipsec/libsimaka.a +%%EAPSIMFILE%%lib/ipsec/libsimaka.la +%%EAPSIMFILE%%lib/ipsec/libsimaka.so +%%EAPSIMFILE%%lib/ipsec/libsimaka.so.0 %%EAPSIMFILE%%lib/ipsec/plugins/libstrongswan-eap-sim.a %%EAPSIMFILE%%lib/ipsec/plugins/libstrongswan-eap-sim.la %%EAPSIMFILE%%lib/ipsec/plugins/libstrongswan-eap-sim.so @@ -137,6 +154,12 @@ sbin/ipsec %%CURL%%lib/ipsec/plugins/libstrongswan-curl.a %%CURL%%lib/ipsec/plugins/libstrongswan-curl.la %%CURL%%lib/ipsec/plugins/libstrongswan-curl.so +%%IKEv1%%lib/ipsec/plugins/libstrongswan-xauth-generic.a +%%IKEv1%%lib/ipsec/plugins/libstrongswan-xauth-generic.la +%%IKEv1%%lib/ipsec/plugins/libstrongswan-xauth-generic.so +%%LDAP%%lib/ipsec/plugins/libstrongswan-ldap.a +%%LDAP%%lib/ipsec/plugins/libstrongswan-ldap.la +%%LDAP%%lib/ipsec/plugins/libstrongswan-ldap.so %%MYSQL%%lib/ipsec/plugins/libstrongswan-mysql.a %%MYSQL%%lib/ipsec/plugins/libstrongswan-mysql.la %%MYSQL%%lib/ipsec/plugins/libstrongswan-mysql.so >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 21:10:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E8B7A1065670; Mon, 24 Sep 2012 21:10:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B93708FC0A; Mon, 24 Sep 2012 21:10:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OLAIoc043341; Mon, 24 Sep 2012 21:10:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OLAI8J043332; Mon, 24 Sep 2012 21:10:18 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 21:10:18 GMT Message-Id: <201209242110.q8OLAI8J043332@freefall.freebsd.org> To: dpejesh@yahoo.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171928: [patch update] security/strongswan 4.5.3 -> 5.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 21:10:19 -0000 Synopsis: [patch update] security/strongswan 4.5.3 -> 5.0.0 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Sep 24 21:10:18 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171928 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 21:12:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85488106566C; Mon, 24 Sep 2012 21:12:19 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5A7C28FC08; Mon, 24 Sep 2012 21:12:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OLCJcJ049071; Mon, 24 Sep 2012 21:12:19 GMT (envelope-from rakuco@freefall.freebsd.org) Received: (from rakuco@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OLCJF0049067; Mon, 24 Sep 2012 21:12:19 GMT (envelope-from rakuco) Date: Mon, 24 Sep 2012 21:12:19 GMT Message-Id: <201209242112.q8OLCJF0049067@freefall.freebsd.org> To: rakuco@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rakuco@FreeBSD.org From: rakuco@FreeBSD.org Cc: Subject: Re: ports/171925: [Maintainer Update] www/subsonic to 4.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 21:12:19 -0000 Synopsis: [Maintainer Update] www/subsonic to 4.7 Responsible-Changed-From-To: freebsd-ports-bugs->rakuco Responsible-Changed-By: rakuco Responsible-Changed-When: Mon Sep 24 21:12:18 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171925 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 21:20:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CF289106564A for ; Mon, 24 Sep 2012 21:20:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BACD68FC14 for ; Mon, 24 Sep 2012 21:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OLKCeY051809 for ; Mon, 24 Sep 2012 21:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OLKC6e051804; Mon, 24 Sep 2012 21:20:12 GMT (envelope-from gnats) Date: Mon, 24 Sep 2012 21:20:12 GMT Message-Id: <201209242120.q8OLKC6e051804@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/171928: [patch update] security/strongswan 4.5.3 -> 5.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 21:20:12 -0000 The following reply was made to PR ports/171928; it has been noted by GNATS. From: Edwin Groothuis To: riaank@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/171928: [patch update] security/strongswan 4.5.3 -> 5.0.0 Date: Mon, 24 Sep 2012 21:10:16 UT Maintainer of security/strongswan, Please note that PR ports/171928 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171928 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 21:30:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 71A261065677 for ; Mon, 24 Sep 2012 21:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E51A78FC25 for ; Mon, 24 Sep 2012 21:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OLU8mN059686 for ; Mon, 24 Sep 2012 21:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OLU8o0059685; Mon, 24 Sep 2012 21:30:08 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 21:30:08 GMT Resent-Message-Id: <201209242130.q8OLU8o0059685@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vladimir Timofeev Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31F9D106566B for ; Mon, 24 Sep 2012 21:25:25 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1D6168FC18 for ; Mon, 24 Sep 2012 21:25:25 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OLPOU7081103 for ; Mon, 24 Sep 2012 21:25:24 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8OLPOoo081074; Mon, 24 Sep 2012 21:25:24 GMT (envelope-from nobody) Message-Id: <201209242125.q8OLPOoo081074@red.freebsd.org> Date: Mon, 24 Sep 2012 21:25:24 GMT From: Vladimir Timofeev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171929: [MAINTAINER] devel/p5-EV: unbreak build on ia64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 21:30:16 -0000 >Number: 171929 >Category: ports >Synopsis: [MAINTAINER] devel/p5-EV: unbreak build on ia64 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 21:30:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Vladimir Timofeev >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: >Environment: FreeBSD vov.home 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0 r240806: Sat Sep 22 14:47:53 MSK >Description: This slightly modified patch from upstream version of libev. It is unbreak build on ia64. Specifically, this should fix this http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.9.20120916093935/p5-EV-4.11,1.log Thanks to Anton Shterenlikht for reporting and testing. >How-To-Repeat: >Fix: diff -ruN --exclude=CVS /usr/ports/devel/p5-EV/files/patch-libev-ev.c ./files/patch-libev-ev.c --- /usr/ports/devel/p5-EV/files/patch-libev-ev.c 1970-01-01 03:00:00.000000000 +0300 +++ ./files/patch-libev-ev.c 2012-09-25 01:01:09.171491172 +0400 @@ -0,0 +1,11 @@ +--- libev/ev.c.orig 2012-09-24 16:04:11.033920205 +0400 ++++ libev/ev.c 2012-09-24 15:45:30.093945530 +0400 +@@ -579,6 +579,8 @@ + #define ECB_MEMORY_FENCE_RELEASE __asm__ __volatile__ ("membar #LoadStore | #StoreStore") + #elif defined(__s390__) || defined(__s390x__) + #define ECB_MEMORY_FENCE __asm__ __volatile__ ("bcr 15,0" : : : "memory") ++ #elif defined(__ia64__) ++ #define ECB_MEMORY_FENCE __asm__ __volatile__ ("mf" : : : "memory") + #endif + #endif + #endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 21:30:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D043106567B for ; Mon, 24 Sep 2012 21:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BCCD58FC2B for ; Mon, 24 Sep 2012 21:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OLU912059727 for ; Mon, 24 Sep 2012 21:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OLU96S059721; Mon, 24 Sep 2012 21:30:09 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 21:30:09 GMT Resent-Message-Id: <201209242130.q8OLU96S059721@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Guido Falsi Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 213B41065672 for ; Mon, 24 Sep 2012 21:20:04 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from micro.madpilot.net (micro.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id 88C9B8FC08 for ; Mon, 24 Sep 2012 21:20:03 +0000 (UTC) Received: from micro.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP id 3XQdbk3xWpz235; Mon, 24 Sep 2012 23:20:02 +0200 (CEST) Received: from micro.madpilot.net ([127.0.0.1]) by micro.madpilot.net (micro.madpilot.net [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 9tJ-3Na4MTgI; Mon, 24 Sep 2012 23:19:59 +0200 (CEST) Received: by micro.madpilot.net (Postfix, from userid 1000) id 3XQdbg57Gsz234; Mon, 24 Sep 2012 23:19:59 +0200 (CEST) Message-Id: <3XQdbg57Gsz234@micro.madpilot.net> Date: Mon, 24 Sep 2012 23:19:59 +0200 (CEST) From: Guido Falsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Quentin Stievenart , Alexander Subject: ports/171930: [PATCH] graphics/zathura update to 0.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Guido Falsi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 21:30:16 -0000 >Number: 171930 >Category: ports >Synopsis: [PATCH] graphics/zathura update to 0.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 21:30:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Guido Falsi >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD micro.madpilot.net 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0 r239180: Sat Aug 11 00:14:47 CEST 2012 root@micro.madpilot.net:/usr/obj/usr/src/sys/MICRO amd64 >Description: Update to 0.2.1. I had to emove the lines: - ${REINPLACE_CMD} -e 's|girara_debug("plugin.*$$||'\ - ${WRKSRC}/plugin.c because the source file has changed and this resulted in invalid code with the new version. I thought leaving the debugging message there was not a big problem. I made this update since I took PR ports/171913 to update zathura-djvu. I also have an update for the girara port ready, which I'm attaching here too. I was also thinking of taking maintainership for the girara port which has recently been orphaned. I'd like to commit these all at the same time so I'm waiting for you approval. Thanks in adance. Maintainer is CCed. >How-To-Repeat: >Fix: Index: zathura/Makefile =================================================================== --- zathura/Makefile (revision 304796) +++ zathura/Makefile (working copy) @@ -1,12 +1,8 @@ -# New ports collection makefile for: zathura -# Date created: 29 June 2010 -# Whom: Quentin Stievenart -# +# Created by: Quentin Stievenart # $FreeBSD$ -# PORTNAME= zathura -PORTVERSION= 0.2.0 +PORTVERSION= 0.2.1 CATEGORIES= graphics print MASTER_SITES= http://pwmt.org/projects/zathura/download/ @@ -51,8 +47,6 @@ ${WRKSRC}/Makefile ${REINPLACE_CMD} -e 's|PLUGINDIR ?= .*$$|PLUGINDIR ?= ${PREFIX}/lib/zathura|'\ ${WRKSRC}/config.mk - ${REINPLACE_CMD} -e 's|girara_debug("plugin.*$$||'\ - ${WRKSRC}/plugin.c .if defined(NOPORTDOCS) ${REINPLACE_CMD} -e 's|install-manpages$$||'\ ${WRKSRC}/Makefile Index: zathura/distinfo =================================================================== --- zathura/distinfo (revision 304796) +++ zathura/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (zathura-0.2.0.tar.gz) = fd235a44c545e929a538ebb0a3f385349a190fd86c8b044a4328a3779d5c2d2f -SIZE (zathura-0.2.0.tar.gz) = 86951 +SHA256 (zathura-0.2.1.tar.gz) = 075b9def201c77ca738dc9e15b252bc23c085b7c4671a1810d1d962e8d0bd790 +SIZE (zathura-0.2.1.tar.gz) = 95179 Index: zathura/pkg-plist =================================================================== --- zathura/pkg-plist (revision 304796) +++ zathura/pkg-plist (working copy) @@ -8,18 +8,24 @@ include/zathura/version.h libdata/pkgconfig/zathura.pc share/applications/zathura.desktop +%%NLS%%share/locale/cs/LC_MESSAGES/zathura.mo %%NLS%%share/locale/de/LC_MESSAGES/zathura.mo %%NLS%%share/locale/eo/LC_MESSAGES/zathura.mo %%NLS%%share/locale/es/LC_MESSAGES/zathura.mo %%NLS%%share/locale/es_CL/LC_MESSAGES/zathura.mo %%NLS%%share/locale/et/LC_MESSAGES/zathura.mo %%NLS%%share/locale/fr/LC_MESSAGES/zathura.mo +%%NLS%%share/locale/it/LC_MESSAGES/zathura.mo %%NLS%%share/locale/pl/LC_MESSAGES/zathura.mo +%%NLS%%share/locale/ru/LC_MESSAGES/zathura.mo %%NLS%%share/locale/ta_IN/LC_MESSAGES/zathura.mo %%NLS%%share/locale/tr/LC_MESSAGES/zathura.mo +%%NLS%%share/locale/uk_UA/LC_MESSAGES/zathura.mo @dirrm include/zathura @dirrmtry share/applications @dirrmtry share/locale/es_CL/LC_MESSAGES @dirrmtry share/locale/es_CL @dirrmtry share/locale/ta_IN/LC_MESSAGES @dirrmtry share/locale/ta_IN +@dirrmtry share/locale/uk_UA/LC_MESSAGES +@dirrmtry share/locale/uk_UA The diff for the girara port follows just for your information. Index: Makefile =================================================================== --- Makefile (revision 304796) +++ Makefile (working copy) @@ -2,11 +2,11 @@ # $FreeBSD$ PORTNAME= girara -PORTVERSION= 0.1.3 +PORTVERSION= 0.1.4 CATEGORIES= x11-toolkits graphics MASTER_SITES= http://pwmt.org/projects/girara/download/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= madpilot@FreeBSD.org COMMENT= GTK2 Interface Library for Zathura PDF Viewer USE_GNOME= glib20 gtk20 Index: distinfo =================================================================== --- distinfo (revision 304796) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (girara-0.1.3.tar.gz) = 3cc2b56356a4be2f4e47638b697d830408a870cf37e85d36d9d2b591f86748af -SIZE (girara-0.1.3.tar.gz) = 73711 +SHA256 (girara-0.1.4.tar.gz) = 831cf523b131bfa1c182efbf146d68fb642fe62d22ee199caf0cd71408a85739 +SIZE (girara-0.1.4.tar.gz) = 73645 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 21:30:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2224110656E5; Mon, 24 Sep 2012 21:30:29 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EB18C8FC2C; Mon, 24 Sep 2012 21:30:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OLUSsb062347; Mon, 24 Sep 2012 21:30:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OLUSOA062342; Mon, 24 Sep 2012 21:30:28 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 21:30:28 GMT Message-Id: <201209242130.q8OLUSOA062342@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171929: [MAINTAINER] devel/p5-EV: unbreak build on ia64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 21:30:29 -0000 Synopsis: [MAINTAINER] devel/p5-EV: unbreak build on ia64 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 24 21:30:28 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171929 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 21:30:39 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1EB4B10656DD; Mon, 24 Sep 2012 21:30:39 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E71868FC22; Mon, 24 Sep 2012 21:30:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OLUc7Q063393; Mon, 24 Sep 2012 21:30:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OLUcHC063388; Mon, 24 Sep 2012 21:30:38 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 21:30:38 GMT Message-Id: <201209242130.q8OLUcHC063388@freefall.freebsd.org> To: madpilot@FreeBSD.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171930: [PATCH] graphics/zathura update to 0.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 21:30:39 -0000 Synopsis: [PATCH] graphics/zathura update to 0.2.1 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Sep 24 21:30:38 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171930 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 21:40:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 171F7106564A for ; Mon, 24 Sep 2012 21:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 023C78FC0A for ; Mon, 24 Sep 2012 21:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OLeA8I070861 for ; Mon, 24 Sep 2012 21:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OLeA6h070855; Mon, 24 Sep 2012 21:40:10 GMT (envelope-from gnats) Date: Mon, 24 Sep 2012 21:40:10 GMT Message-Id: <201209242140.q8OLeA6h070855@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/171930: [PATCH] graphics/zathura update to 0.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 21:40:11 -0000 The following reply was made to PR ports/171930; it has been noted by GNATS. From: Edwin Groothuis To: acieroid@awesom.eu Cc: bug-followup@FreeBSD.org Subject: Re: ports/171930: [PATCH] graphics/zathura update to 0.2.1 Date: Mon, 24 Sep 2012 21:30:33 UT Maintainer of graphics/zathura, Please note that PR ports/171930 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171930 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 21:40:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C4D5106566B; Mon, 24 Sep 2012 21:40:20 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5E5558FC12; Mon, 24 Sep 2012 21:40:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OLeKa6073005; Mon, 24 Sep 2012 21:40:20 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OLeKPM072989; Mon, 24 Sep 2012 21:40:20 GMT (envelope-from madpilot) Date: Mon, 24 Sep 2012 21:40:20 GMT Message-Id: <201209242140.q8OLeKPM072989@freefall.freebsd.org> To: acieroid@awesom.eu, madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Cc: Subject: Re: ports/171930: [PATCH] graphics/zathura update to 0.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 21:40:20 -0000 Synopsis: [PATCH] graphics/zathura update to 0.2.1 Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Mon Sep 24 21:40:19 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171930 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 22:50:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D5B5106564A for ; Mon, 24 Sep 2012 22:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 25A2F8FC0C for ; Mon, 24 Sep 2012 22:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OMoALm033729 for ; Mon, 24 Sep 2012 22:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OMo9d1033728; Mon, 24 Sep 2012 22:50:09 GMT (envelope-from gnats) Resent-Date: Mon, 24 Sep 2012 22:50:09 GMT Resent-Message-Id: <201209242250.q8OMo9d1033728@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Frank Wall Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 310CC1065670 for ; Mon, 24 Sep 2012 22:49:24 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id AE7C68FC14 for ; Mon, 24 Sep 2012 22:49:23 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OMnN9U029456 for ; Mon, 24 Sep 2012 22:49:23 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8OMnNdW029455; Mon, 24 Sep 2012 22:49:23 GMT (envelope-from nobody) Message-Id: <201209242249.q8OMnNdW029455@red.freebsd.org> Date: Mon, 24 Sep 2012 22:49:23 GMT From: Frank Wall To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171931: [PATCH] net-mgmt/zabbix-server: update to 1.8.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 22:50:10 -0000 >Number: 171931 >Category: ports >Synopsis: [PATCH] net-mgmt/zabbix-server: update to 1.8.15 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Sep 24 22:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Frank Wall >Release: 8.3-RELEASE-p3 >Organization: >Environment: FreeBSD XXX 8.3-RELEASE-p3 FreeBSD 8.3-RELEASE-p3 #0: Tue Jun 12 00:39:29 UTC 2012 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: - update to Zabbix 1.8.15 - update patch to reflect changes in zabbix source - update CONFLICHTS to include Zabbix 2.x >How-To-Repeat: >Fix: apply the patch Patch attached with submission follows: --- net-mgmt/zabbix-server/Makefile.orig 2012-05-12 15:55:28.000000000 +0200 +++ net-mgmt/zabbix-server/Makefile 2012-09-24 20:48:43.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= zabbix -PORTVERSION= 1.8.13 +PORTVERSION= 1.8.15 PORTEPOCH= 2 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} @@ -20,7 +20,7 @@ CONFLICTS= ${PKGBASE}-1.[0-6]* .if ${PKGNAMESUFFIX} != "-agent" -CONFLICTS+= ${PORTNAME}-1.[0-6]* +CONFLICTS+= ${PORTNAME}-[1-2].[0-6]* .endif ZABBIX_BUILD= ${PKGNAMESUFFIX:S/^-//} --- net-mgmt/zabbix-server/distinfo.orig 2012-05-12 15:55:28.000000000 +0200 +++ net-mgmt/zabbix-server/distinfo 2012-09-24 20:49:01.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (zabbix-1.8.13.tar.gz) = ac4497cde031b793e492e874b091d109da7d5410c4ba55f54cad0749ae47e667 -SIZE (zabbix-1.8.13.tar.gz) = 4235482 +SHA256 (zabbix-1.8.15.tar.gz) = 6ee4014dec29652ceba472f8973b267047e5d0599a729e24a266b26dbad7a80c +SIZE (zabbix-1.8.15.tar.gz) = 4241782 --- net-mgmt/zabbix-server/files/patch-src_libs_zbxsysinfo_freebsd__proc.c.orig 2012-05-12 15:55:28.000000000 +0200 +++ net-mgmt/zabbix-server/files/patch-src_libs_zbxsysinfo_freebsd__proc.c 2012-09-25 00:37:04.000000000 +0200 @@ -38,30 +38,6 @@ mib[0] = CTL_KERN; mib[1] = KERN_PROC; if (NULL != usrinfo) -@@ -164,7 +158,11 @@ - } - else - { -+#if(__FreeBSD_version > 500000) -+ mib[2] = KERN_PROC_PROC; -+#else - mib[2] = KERN_PROC_ALL; -+#endif - mib[3] = 0; - mibs = 3; - } -@@ -184,11 +182,6 @@ - - for (i = 0; i < count; i++) - { --#if(__FreeBSD_version > 500000) -- if (proc[i].ki_flag & P_KTHREAD) /* skip a system thread */ -- continue; --#endif -- - proc_ok = 0; - comm_ok = 0; - if (*procname == '\0' || 0 == strcmp(procname, proc[i].ZBX_PROC_COMM)) @@ -205,8 +198,7 @@ if (proc_ok && comm_ok) @@ -72,27 +48,3 @@ if (0 == proccount++) memsize = value; -@@ -306,7 +298,11 @@ - } - else - { -+#if(__FreeBSD_version > 500000) -+ mib[2] = KERN_PROC_PROC; -+#else - mib[2] = KERN_PROC_ALL; -+#endif - mib[3] = 0; - mibs = 3; - } -@@ -326,11 +322,6 @@ - - for (i = 0; i < count; i++) - { --#if(__FreeBSD_version > 500000) -- if (proc[i].ki_flag & P_KTHREAD) /* skip a system thread */ -- continue; --#endif -- - proc_ok = 0; - stat_ok = 0; - comm_ok = 0; \ No newline at end of file >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 22:50:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 01479106566C; Mon, 24 Sep 2012 22:50:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C9E1E8FC14; Mon, 24 Sep 2012 22:50:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8OMoLFK035599; Mon, 24 Sep 2012 22:50:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8OMoLUY035592; Mon, 24 Sep 2012 22:50:21 GMT (envelope-from edwin) Date: Mon, 24 Sep 2012 22:50:21 GMT Message-Id: <201209242250.q8OMoLUY035592@freefall.freebsd.org> To: fw@moov.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171931: [PATCH] net-mgmt/zabbix-server: update to 1.8.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 22:50:22 -0000 Synopsis: [PATCH] net-mgmt/zabbix-server: update to 1.8.15 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Sep 24 22:50:21 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171931 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 23:00:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E2BA106564A for ; Mon, 24 Sep 2012 23:00:30 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 28E008FC15 for ; Mon, 24 Sep 2012 23:00:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8ON0Uv2042764 for ; Mon, 24 Sep 2012 23:00:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8ON0UxG042760; Mon, 24 Sep 2012 23:00:30 GMT (envelope-from gnats) Date: Mon, 24 Sep 2012 23:00:30 GMT Message-Id: <201209242300.q8ON0UxG042760@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/171931: [PATCH] net-mgmt/zabbix-server: update to 1.8.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 23:00:30 -0000 The following reply was made to PR ports/171931; it has been noted by GNATS. From: Edwin Groothuis To: ports@christianserving.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/171931: [PATCH] net-mgmt/zabbix-server: update to 1.8.15 Date: Mon, 24 Sep 2012 22:50:18 UT Maintainer of net-mgmt/zabbix-server, Please note that PR ports/171931 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171931 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 24 23:18:51 2012 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE328106566B; Mon, 24 Sep 2012 23:18:50 +0000 (UTC) (envelope-from fw@moov.de) Received: from krusty.moov.de (krusty.moov.de [77.73.249.102]) by mx1.freebsd.org (Postfix) with ESMTP id 43A1B8FC12; Mon, 24 Sep 2012 23:18:49 +0000 (UTC) Received: from krusty.moov.de (localhost [127.0.0.1]) by krusty.moov.de (inotronic CheckMail) with ESMTP id 3DC795643C; Tue, 25 Sep 2012 01:13:02 +0200 (CEST) X-Filter-Status: scanned by inotronic CheckMail X-Spam-Flag: NO X-Spam-Score: -2.723 X-Spam-Level: X-Spam-Status: No, score=-2.723 tagged_above=-9999 tests=[ALL_TRUSTED=-1, BAYES_00=-1.9, TW_DB=0.177] autolearn=no Received: from krusty.moov.de ([127.0.0.1]) by krusty.moov.de (krusty.moov.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id r5KQWu-p9QsM; Tue, 25 Sep 2012 01:12:58 +0200 (CEST) Received: from blog.moov.de (localhost [127.0.0.1]) by krusty.moov.de (inotronic CheckMail) with ESMTPA id 540D356431; Tue, 25 Sep 2012 01:12:58 +0200 (CEST) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=_d059d562dc98cb85a3f6188de212aa57" Date: Tue, 25 Sep 2012 01:12:58 +0200 From: Frank Wall To: , In-Reply-To: <201209211850.q8LIo8bi002838@freefall.freebsd.org> References: <201209211850.q8LIo8bi002838@freefall.freebsd.org> Message-ID: X-Sender: fw@moov.de User-Agent: inotronic CheckMail Cc: Subject: Re: ports/171852: [PATCH] databases/mysql55-server: add support for multiple instances (profiles) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 23:18:51 -0000 --=_d059d562dc98cb85a3f6188de212aa57 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=UTF-8; format=flowed Hi, >>Category: ports >>Responsible: freebsd-ports-bugs >>Synopsis: [PATCH] databases/mysql55-server: add support for >> multiple instances (profiles) >>Arrival-Date: Fri Sep 21 18:50:08 UTC 2012 attached is an updated version of the original patch. Few more changes were required to make it work in real world. Bye - Frank --=_d059d562dc98cb85a3f6188de212aa57 Content-Transfer-Encoding: base64 Content-Type: text/plain; name=patch.txt Content-Disposition: attachment; filename=patch.txt; size=4685 LS0tIGRhdGFiYXNlcy9teXNxbDU1LXNlcnZlci9maWxlcy9teXNxbC1zZXJ2ZXIuaW4ub3JpZwky MDEyLTA4LTA2IDAxOjE5OjM2LjAwMDAwMDAwMCArMDIwMAorKysgZGF0YWJhc2VzL215c3FsNTUt c2VydmVyL2ZpbGVzL215c3FsLXNlcnZlci5pbgkyMDEyLTA5LTI1IDAwOjQwOjMyLjAwMDAwMDAw MCArMDIwMApAQCAtMSw2ICsxLDYgQEAKICMhL2Jpbi9zaAogIwotIyAkRnJlZUJTRDogcG9ydHMv ZGF0YWJhc2VzL215c3FsNTUtc2VydmVyL2ZpbGVzL215c3FsLXNlcnZlci5pbix2IDEuMSAyMDEy LzA4LzA1IDIzOjE5OjM2IGRvdWdiIEV4cCAkCisjICRGcmVlQlNEJAogIwogCiAjIFBST1ZJREU6 IG15c3FsCkBAIC0xMSwxMyArMTEsMTkgQEAKICMgQWRkIHRoZSBmb2xsb3dpbmcgbGluZSB0byAv ZXRjL3JjLmNvbmYgdG8gZW5hYmxlIG15c3FsOgogIyBteXNxbF9lbmFibGUgKGJvb2wpOglTZXQg dG8gIk5PIiBieSBkZWZhdWx0LgogIwkJCVNldCBpdCB0byAiWUVTIiB0byBlbmFibGUgTXlTUUwu CisjIG15c3FsX3Byb2ZpbGVzIChzdHIpOglTZXQgdG8gIiIgYnkgZGVmYXVsdC4KKyMJCQlEZWZp bmUgeW91ciBwcm9maWxlcyBoZXJlLgogIyBteXNxbF9saW1pdHMgKGJvb2wpOglTZXQgdG8gIk5P IiBieSBkZWZhdWx0LgogIwkJCVNldCBpdCB0byB5ZXMgdG8gcnVuIGBsaW1pdHMgLWUgLVUgbXlz cWxgCiAjCQkJanVzdCBiZWZvcmUgbXlzcWwgc3RhcnRzLgogIyBteXNxbF9kYmRpciAoc3RyKToJ RGVmYXVsdCB0byAiL3Zhci9kYi9teXNxbCIKICMJCQlCYXNlIGRhdGFiYXNlIGRpcmVjdG9yeS4K LSMgbXlzcWxfcGlkZmlsZSAoc3RyKToJQ3VzdHVtIFBJRCBmaWxlIHBhdGggYW5kIG5hbWUuCisj IG15c3FsX3BpZGZpbGUgKHN0cik6CUN1c3RvbSBQSUQgZmlsZSBwYXRoIGFuZCBuYW1lLgogIwkJ CURlZmF1bHQgdG8gIiR7bXlzcWxfZGJkaXJ9LyR7aG9zdG5hbWV9LnBpZCIuCisjIG15c3FsX2Jp bmRpcCAoc3RyKToJQ3VzdG9tIElQIGFkZHJlc3MgdG8gYmluZCB0by4KKyMJCQlEZWZhdWx0IGlz IDAuMC4wLjAuCisjIG15c3FsX3BvcnQgKHN0cik6CUN1c3RvbSBwb3J0IG51bWJlci4KKyMJCQlE ZWZhdWx0IGlzIDMzMDYuCiAjIG15c3FsX2FyZ3MgKHN0cik6CUN1c3RvbSBhZGRpdGlvbmFsIGFy Z3VtZW50cyB0byBiZSBwYXNzZWQKICMJCQl0byBteXNxbGRfc2FmZSAoZGVmYXVsdCBlbXB0eSku CiAjCkBAIC0zMiwxNiArMzgsODcgQEAKIDogJHtteXNxbF9lbmFibGU9Ik5PIn0KIDogJHtteXNx bF9saW1pdHM9Ik5PIn0KIDogJHtteXNxbF9kYmRpcj0iL3Zhci9kYi9teXNxbCJ9Cis6ICR7bXlz cWxfdXNlcj0ibXlzcWwifQorOiAke215c3FsX2JpbmRpcD0iMC4wLjAuMCJ9Cis6ICR7bXlzcWxf cG9ydD0iMzMwNiJ9Cis6ICR7bXlzcWxfbmV0d29ya2luZz0iWUVTIn0KKzogJHtteXNxbF9zb2Nr ZXQ9Ii90bXAvbXlzcWwuc29jayJ9CiAKLW15c3FsX3VzZXI9Im15c3FsIgogbXlzcWxfbGltaXRz X2FyZ3M9Ii1lIC1VICR7bXlzcWxfdXNlcn0iCiBwaWRmaWxlPSR7bXlzcWxfcGlkZmlsZTotIiR7 bXlzcWxfZGJkaXJ9L2AvYmluL2hvc3RuYW1lYC5waWQifQogY29tbWFuZD0iL3Vzci9zYmluL2Rh ZW1vbiIKLWNvbW1hbmRfYXJncz0iLWMgLWYgJSVQUkVGSVglJS9iaW4vbXlzcWxkX3NhZmUgLS1k ZWZhdWx0cy1leHRyYS1maWxlPSR7bXlzcWxfZGJkaXJ9L215LmNuZiAtLXVzZXI9JHtteXNxbF91 c2VyfSAtLWRhdGFkaXI9JHtteXNxbF9kYmRpcn0gLS1waWQtZmlsZT0ke3BpZGZpbGV9ICR7bXlz cWxfYXJnc30iCiBwcm9jbmFtZT0iJSVQUkVGSVglJS9saWJleGVjL215c3FsZCIKIHN0YXJ0X3By ZWNtZD0iJHtuYW1lfV9wcmVzdGFydCIKIHN0YXJ0X3Bvc3RjbWQ9IiR7bmFtZX1fcG9zdHN0YXJ0 IgogbXlzcWxfaW5zdGFsbF9kYj0iJSVQUkVGSVglJS9iaW4vbXlzcWxfaW5zdGFsbF9kYiIKKwor aWYgWyAtbiAiJDIiIF07IHRoZW4KKwlwcm9maWxlPSIkMiIKKwlpZiBbICJ4JHtteXNxbF9wcm9m aWxlc30iICE9ICJ4IiBdOyB0aGVuCisJCWV2YWwgX2JpbmRpcD0iXCR7bXlzcWxfJHtwcm9maWxl fV9iaW5kaXB9IgorCQlldmFsIF9wb3J0PSJcJHtteXNxbF8ke3Byb2ZpbGV9X3BvcnR9IgorCQll dmFsIF9uZXR3b3JraW5nPSJcJHtteXNxbF8ke3Byb2ZpbGV9X25ldHdvcmtpbmd9IgorCQlpZiBb ICJ4JF9iaW5kaXAiID0gIngiIF0gJiYgWyAieCRfcG9ydCIgPSAieCIgXSAmJiBbICJ4JF9uZXR3 b3JraW5nIiA9ICJ4WUVTIiBdOyB0aGVuCisJCQllY2hvICJZb3UgbXVzdCBkZWZpbmUgZWl0aGVy IFwibXlzcWxfJHtwcm9maWxlfV9wb3J0XCIgb3IgXCJteXNxbF8ke3Byb2ZpbGV9X2JpbmRpcFwi IgorCQkJZXhpdCAxCisJCWZpCisKKwkJZXZhbCBteXNxbF9lbmFibGU9Ilwke215c3FsXyR7cHJv ZmlsZX1fZW5hYmxlOi0ke215c3FsX2VuYWJsZX19IgorCQlldmFsIG15c3FsX2RiZGlyPSJcJHtt eXNxbF8ke3Byb2ZpbGV9X2RiZGlyOi0iL3Zhci9kYi9teXNxbC1wcm9maWxlLyR7cHJvZmlsZX0i fSIKKwkJZXZhbCBwaWRmaWxlPSJcJHtteXNxbF8ke3Byb2ZpbGV9X3BpZGZpbGU6LSIke215c3Fs X2RiZGlyfS8ke3Byb2ZpbGV9LnBpZCJ9IgorCQlldmFsIG15c3FsX2JpbmRpcD0iXCR7bXlzcWxf JHtwcm9maWxlfV9iaW5kaXA6LSR7bXlzcWxfYmluZGlwfX0iCisJCWV2YWwgbXlzcWxfcG9ydD0i XCR7bXlzcWxfJHtwcm9maWxlfV9wb3J0Oi0ke215c3FsX3BvcnR9fSIKKwkJZXZhbCBteXNxbF9u ZXR3b3JraW5nPSJcJHtteXNxbF8ke3Byb2ZpbGV9X25ldHdvcmtpbmc6LSR7bXlzcWxfbmV0d29y a2luZ319IgorCQlldmFsIG15c3FsX3NvY2tldD0iXCR7bXlzcWxfJHtwcm9maWxlfV9zb2NrZXQ6 LSR7bXlzcWxfc29ja2V0fX0iCisJCWV2YWwgbXlzcWxfdXNlcj0iXCR7bXlzcWxfJHtwcm9maWxl fV91c2VyOi0ke215c3FsX3VzZXJ9fSIKKwkJZXZhbCBteXNxbF9saW1pdHM9Ilwke215c3FsXyR7 cHJvZmlsZX1fbGltaXRzOi0ke215c3FsX2xpbWl0c319IgorCQlldmFsIG15c3FsX2FyZ3M9Ilwk e215c3FsXyR7cHJvZmlsZX1fYXJnczotJHtteXNxbF9hcmdzfX0iCisJZWxzZQorCQllY2hvICIk MDogZXh0cmEgYXJndW1lbnQgaWdub3JlZCIKKwlmaQorZWxzZQorCWV2YWwgbXlzcWxfZW52dmFy cz0ke2VudnZhcnN9CisJaWYgWyAieCR7bXlzcWxfcHJvZmlsZXN9IiAhPSAieCIgLWEgIngkMSIg IT0gIngiIF07IHRoZW4KKwkJZm9yIHByb2ZpbGUgaW4gJHtteXNxbF9wcm9maWxlc307IGRvCisJ CQlldmFsIF9lbmFibGU9Ilwke215c3FsXyR7cHJvZmlsZX1fZW5hYmxlfSIKKwkJCWNhc2UgIngk e19lbmFibGU6LSR7bXlzcWxfZW5hYmxlfX0iIGluCisJCQl4fHhbTm5dW09vXXx4W05uXVtPb11b Tm5dW0VlXSkKKwkJCQljb250aW51ZQorCQkJCTs7CisJCQl4W1l5XVtFZV1bU3NdKQorCQkJCTs7 CisJCQkqKQorCQkJCWlmIHRlc3QgLXogIiRfZW5hYmxlIjsgdGhlbgorCQkJCQlfdmFyPW15c3Fs X2VuYWJsZQorCQkJCWVsc2UKKwkJCQkJX3Zhcj1teXNxbF8iJHtwcm9maWxlfSJfZW5hYmxlCisJ CQkJZmkKKwkJCQllY2hvICJCYWQgdmFsdWUiIFwKKwkJCQkgICAgIicke19lbmFibGU6LSR7bXlz cWxfZW5hYmxlfX0nIiBcCisJCQkJICAgICJmb3IgJHtfdmFyfS4gIiBcCisJCQkJICAgICJQcm9m aWxlICR7cHJvZmlsZX0gc2tpcHBlZC4iCisJCQkJY29udGludWUKKwkJCQk7OworCQkJZXNhYwor CQkJZWNobyAiPT09PiBteXNxbCBwcm9maWxlOiAke3Byb2ZpbGV9IgorCQkJL3Vzci9sb2NhbC9l dGMvcmMuZC9teXNxbC1zZXJ2ZXIgJDEgJHtwcm9maWxlfQorCQkJcmV0Y29kZT0iJD8iCisJCQlp ZiBbICIwJHtyZXRjb2RlfSIgLW5lIDAgXTsgdGhlbgorCQkJCWZhaWxlZD0iJHtwcm9maWxlfSAo JHtyZXRjb2RlfSkgJHtmYWlsZWQ6LX0iCisJCQllbHNlCisJCQkJc3VjY2Vzcz0iJHtwcm9maWxl fSAke3N1Y2Nlc3M6LX0iCisJCQlmaQorCQlkb25lCisJCWV4aXQgMAorCWZpCitmaQorCisjIE5P VEU6IENvbnN0cnVjdCBhcmd1bWVudHMgYWZ0ZXIgdGhlIHByb2ZpbGUgY29uZmlndXJhdGlvbiBo YXMgYmVlbiBwcm9jZXNzZWQuCitpZiBbICJ4JHtteXNxbF9uZXR3b3JraW5nfSIgPT0gInhOTyIg XTsgdGhlbgorCWNvbW1hbmRfYXJncz0iLWMgLWYgJSVQUkVGSVglJS9iaW4vbXlzcWxkX3NhZmUg LS1kZWZhdWx0cy1leHRyYS1maWxlPSR7bXlzcWxfZGJkaXJ9L215LmNuZiAtLXVzZXI9JHtteXNx bF91c2VyfSAtLWRhdGFkaXI9JHtteXNxbF9kYmRpcn0gLS1waWQtZmlsZT0ke3BpZGZpbGV9IC0t c29ja2V0PSR7bXlzcWxfc29ja2V0fSAke215c3FsX2FyZ3N9IgorZWxzZQorCWNvbW1hbmRfYXJn cz0iLWMgLWYgJSVQUkVGSVglJS9iaW4vbXlzcWxkX3NhZmUgLS1kZWZhdWx0cy1leHRyYS1maWxl PSR7bXlzcWxfZGJkaXJ9L215LmNuZiAtLXVzZXI9JHtteXNxbF91c2VyfSAtLWRhdGFkaXI9JHtt eXNxbF9kYmRpcn0gLS1waWQtZmlsZT0ke3BpZGZpbGV9IC0tc29ja2V0PSR7bXlzcWxfc29ja2V0 fSAtLWJpbmQtYWRkcmVzcz0ke215c3FsX2JpbmRpcH0gLS1wb3J0PSR7bXlzcWxfcG9ydH0gJHtt eXNxbF9hcmdzfSIKK2ZpCiBteXNxbF9pbnN0YWxsX2RiX2FyZ3M9Ii0tYmFzZWRpcj0lJVBSRUZJ WCUlIC0tZGF0YWRpcj0ke215c3FsX2RiZGlyfSAtLWZvcmNlIgogCiBteXNxbF9jcmVhdGVfYXV0 aF90YWJsZXMoKQo= --=_d059d562dc98cb85a3f6188de212aa57-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 01:20:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DD9871065673 for ; Tue, 25 Sep 2012 01:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AEC418FC0C for ; Tue, 25 Sep 2012 01:20:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P1K6Gj076203 for ; Tue, 25 Sep 2012 01:20:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P1K63f076202; Tue, 25 Sep 2012 01:20:06 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 01:20:06 GMT Resent-Message-Id: <201209250120.q8P1K63f076202@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jinsong Zhao Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D38A3106566B for ; Tue, 25 Sep 2012 01:18:16 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BD8E38FC08 for ; Tue, 25 Sep 2012 01:18:16 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P1IGTE088779 for ; Tue, 25 Sep 2012 01:18:16 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8P1IG5D088778; Tue, 25 Sep 2012 01:18:16 GMT (envelope-from nobody) Message-Id: <201209250118.q8P1IG5D088778@red.freebsd.org> Date: Tue, 25 Sep 2012 01:18:16 GMT From: Jinsong Zhao To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171932: wrong excutable program installed in ports/biology/mopac X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 01:20:07 -0000 >Number: 171932 >Category: ports >Synopsis: wrong excutable program installed in ports/biology/mopac >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 01:20:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jinsong Zhao >Release: FreeBSD 9.0-RELEASE >Organization: Huazhong Agricultural University >Environment: FreeBSD see.hzau.edu.cn 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 01:47:53 UTC 2012 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: when ran the following command, no correct ouput... %cp /usr/local/share/examples/mopac/test/1scf.dat . %mopac7 1scf it output: starting mopac7 job 1scf /usr/local/bin/mopac7: ./src/mopac7: not found mopac7 job 1scf finished In fact, ``./src/mopac7'' is not installed. The port just install the script file ``run_mopac7'', and rename it to ``mopac7''. >How-To-Repeat: cd /usr/ports/biology/mopac make -DBATCH install clean cd ~ cp /usr/local/share/examples/mopac/test/1scf.dat . mopac7 1scf >Fix: I don't know how to patch the Makefile in order to install correct file. I just try the following way manually, and it works. cd /usr/ports/biology/mopac make -DBATCH install cd /usr/local/bin ## the mopac7 in /usr/local/bin is actually a script file, ## which call the real mopac7 program ## At the same time, line 22 of script file ``mopac7'' contains path ``./src'', ## which I think should be remove. So line 22 may be changed to ``mopac7'', ## and then change the script file to ``runmopac7'' mv mopac7 runmopac7 ## the following ``mopac7'' is the real one that should be installed. ## However it is not be installed in the current ports. cp /usr/ports/biology/mopac/work/mopac7-1.11/src/.libs/mopac7 . cd /usr/ports/biology/mopac make clean ## Test... cd ~ cp /usr/local/share/examples/mopac/test/1scf.dat . runmopac7 1scf Now, it give the correct output. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 02:20:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9CAE5106566C for ; Tue, 25 Sep 2012 02:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 710A78FC14 for ; Tue, 25 Sep 2012 02:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P2K7AN031751 for ; Tue, 25 Sep 2012 02:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P2K7O7031750; Tue, 25 Sep 2012 02:20:07 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 02:20:07 GMT Resent-Message-Id: <201209250220.q8P2K7O7031750@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Takefu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50391106564A for ; Tue, 25 Sep 2012 02:18:40 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 229168FC12 for ; Tue, 25 Sep 2012 02:18:40 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P2IdPP014630 for ; Tue, 25 Sep 2012 02:18:39 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8P2IdXc014629; Tue, 25 Sep 2012 02:18:39 GMT (envelope-from nobody) Message-Id: <201209250218.q8P2IdXc014629@red.freebsd.org> Date: Tue, 25 Sep 2012 02:18:39 GMT From: Takefu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171933: [PATCH] sysutils/mbmon: fix OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 02:20:07 -0000 >Number: 171933 >Category: ports >Synopsis: [PATCH] sysutils/mbmon: fix OptionsNG >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 02:20:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Takefu >Release: >Organization: FOX Amateur Radio Club >Environment: >Description: - Fix OptionsNG - Add fflush patch to solve the problem for using pipe to get outputs - Add For users of ASUS A7N8X-VM/400 >How-To-Repeat: >Fix: diff -ruN /usr/ports/sysutils/mbmon/Makefile sysutils/mbmon/Makefile --- /usr/ports/sysutils/mbmon/Makefile 2012-08-06 08:19:36.000000000 +0900 +++ sysutils/mbmon/Makefile 2012-09-25 11:00:24.000000000 +0900 @@ -16,6 +16,8 @@ COMMENT?= A tty motherboard monitor for LM78/79, W8378x, AS99127F, VT82C686 and ADM9240 PORTSCOUT= limit:^[0-9]+$ +PATCH_SITES+= ${MASTER_SITES} +PATCHFILES+= xmbmon${PORTVERSION}_fflush.patch ONLY_FOR_ARCHS= i386 amd64 GNU_CONFIGURE= yes @@ -26,7 +28,10 @@ MAN1?= mbmon.1 PORTDOCS= ChangeLog ChangeLog.jp ReadMe ReadMe.jp ReadMe.tech -OPTIONS= SMB "enable smb(4) support" on +OPTIONS_DEFINE= ASUS SMB +OPTIONS_SET= SMB +ASUS_DESC= "A7N8X-VM support" +SMB_DESC= "Enable smb(4) support" .if ${PORTNAME} == "mbmon" USE_RC_SUBR= mbmon @@ -34,9 +39,13 @@ .include +.if ${PORT_OPTIONS:MASUS} +PATCHFILES+= xmbmon${PORTVERSION}_A7N8X-VM.patch +.endif + post-patch: @${REINPLACE_CMD} -e 's+/usr/share/doc/mbmon+${DOCSDIR}+' ${WRKSRC}/mbmon.1 -.if !defined(WITHOUT_SMB) +.if ${PORT_OPTIONS:MSMB} @${REINPLACE_CMD} -e 's/^DEFS=/&-DSMBUS_IOCTL /' ${WRKSRC}/Makefile.in .endif diff -ruN /usr/ports/sysutils/mbmon/distinfo sysutils/mbmon/distinfo --- /usr/ports/sysutils/mbmon/distinfo 2011-03-19 21:32:50.000000000 +0900 +++ sysutils/mbmon/distinfo 2011-12-06 10:29:03.000000000 +0900 @@ -1,2 +1,6 @@ SHA256 (xmbmon205.tar.gz) = 65b10ebfe53585ac22d6a31d8ef3fea552cb266cf2c124c00421dec1df5a4a4f SIZE (xmbmon205.tar.gz) = 142987 +SHA256 (xmbmon205_fflush.patch) = f837f465861ce46e4a90d1d3c7a680c1904f7fb91e14efcbad22313c90e2cdc7 +SIZE (xmbmon205_fflush.patch) = 242 +SHA256 (xmbmon205_A7N8X-VM.patch) = 20565e0b1216d3becb87f796fa547e81fec84e37cff05405eb8f71bc97eebc68 +SIZE (xmbmon205_A7N8X-VM.patch) = 274 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 02:20:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 504ED1065672; Tue, 25 Sep 2012 02:20:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 23F128FC15; Tue, 25 Sep 2012 02:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P2KKXZ033833; Tue, 25 Sep 2012 02:20:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P2KJ9B033820; Tue, 25 Sep 2012 02:20:19 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 02:20:19 GMT Message-Id: <201209250220.q8P2KJ9B033820@freefall.freebsd.org> To: takefu@airport.fm, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171933: [PATCH] sysutils/mbmon: fix OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 02:20:20 -0000 Synopsis: [PATCH] sysutils/mbmon: fix OptionsNG State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Sep 25 02:20:19 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171933 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 02:30:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 13BBC106564A for ; Tue, 25 Sep 2012 02:30:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F26F58FC15 for ; Tue, 25 Sep 2012 02:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P2UHni040644 for ; Tue, 25 Sep 2012 02:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P2UHF0040634; Tue, 25 Sep 2012 02:30:17 GMT (envelope-from gnats) Date: Tue, 25 Sep 2012 02:30:17 GMT Message-Id: <201209250230.q8P2UHF0040634@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/171933: [PATCH] sysutils/mbmon: fix OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 02:30:18 -0000 The following reply was made to PR ports/171933; it has been noted by GNATS. From: Edwin Groothuis To: 5u623l20@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/171933: [PATCH] sysutils/mbmon: fix OptionsNG Date: Tue, 25 Sep 2012 02:20:16 UT Maintainer of sysutils/mbmon, Please note that PR ports/171933 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171933 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 02:40:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4C4271065673 for ; Tue, 25 Sep 2012 02:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 145168FC1C for ; Tue, 25 Sep 2012 02:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P2e13X050357 for ; Tue, 25 Sep 2012 02:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P2e1jt050351; Tue, 25 Sep 2012 02:40:01 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 02:40:01 GMT Resent-Message-Id: <201209250240.q8P2e1jt050351@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Masaki TAGAWA Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C1E81106580F for ; Tue, 25 Sep 2012 02:37:12 +0000 (UTC) (envelope-from masaki@club.kyutech.ac.jp) Received: from lapis.club.kyutech.ac.jp (lapis.club.kyutech.ac.jp [131.206.108.11]) by mx1.freebsd.org (Postfix) with ESMTP id 2AF718FC08 for ; Tue, 25 Sep 2012 02:37:11 +0000 (UTC) Received: from lapis.club.kyutech.ac.jp (localhost [127.0.0.1]) by lapis.club.kyutech.ac.jp (Postfix) with ESMTP id 2149D90883B for ; Tue, 25 Sep 2012 11:37:05 +0900 (JST) Received: from lapis.club.kyutech.ac.jp ([127.0.0.1]) by lapis.club.kyutech.ac.jp (lapis.club.kyutech.ac.jp [127.0.0.1]) (amavisd-new, port 10027) with ESMTP id lNisgBHLCeHS; Tue, 25 Sep 2012 11:36:58 +0900 (JST) Received: from rosetta.club.kyutech.ac.jp (rosetta.club.kyutech.ac.jp [131.206.108.15]) by lapis.club.kyutech.ac.jp (Postfix) with ESMTPS id 1B134908835; Tue, 25 Sep 2012 11:36:58 +0900 (JST) Received: from rosetta.club.kyutech.ac.jp (localhost [127.0.0.1]) by rosetta.club.kyutech.ac.jp (8.14.5/8.14.5) with ESMTP id q8P2avsO033403; Tue, 25 Sep 2012 11:36:57 +0900 (JST) (envelope-from masaki@rosetta.club.kyutech.ac.jp) Received: (from masaki@localhost) by rosetta.club.kyutech.ac.jp (8.14.5/8.14.5/Submit) id q8P2auaK033402; Tue, 25 Sep 2012 11:36:56 +0900 (JST) (envelope-from masaki) Message-Id: <201209250236.q8P2auaK033402@rosetta.club.kyutech.ac.jp> Date: Tue, 25 Sep 2012 11:36:56 +0900 (JST) From: Masaki TAGAWA To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/171935: New port: x11-fonts/sourcecodepro-ttf X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Masaki TAGAWA List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 02:40:02 -0000 >Number: 171935 >Category: ports >Synopsis: New port: x11-fonts/sourcecodepro-ttf >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 02:40:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Masaki TAGAWA >Release: FreeBSD 9.0-STABLE amd64 >Organization: Kyushu Institute of Technology >Environment: System: FreeBSD rosetta.club.kyutech.ac.jp 9.0-STABLE FreeBSD 9.0-STABLE #8: Mon Jul 2 11:36:08 JST 2012 root@rosetta.club.kyutech.ac.jp:/usr/obj/usr/src/sys/CLUBVMKERNEL amd64 >Description: Adobe has made available an Open source font that is specifically designed for Coders. I have created an initial port of the TTF versions based on x11-fonts/sourcesanspro-ttf. http://blogs.adobe.com/typblography/2012/09/source-code-pro.html >How-To-Repeat: * shar file Attached - checked on Redports.org [1] [1] https://redports.org/buildarchive/20120925014332-88806 >Fix: --- sourcecodepro-ttf.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # sourcecodepro-ttf # sourcecodepro-ttf/pkg-descr # sourcecodepro-ttf/Makefile # sourcecodepro-ttf/distinfo # sourcecodepro-ttf/pkg-plist # sourcecodepro-ttf/files # sourcecodepro-ttf/files/pkg-message.in # echo c - sourcecodepro-ttf mkdir -p sourcecodepro-ttf > /dev/null 2>&1 echo x - sourcecodepro-ttf/pkg-descr sed 's/^X//' >sourcecodepro-ttf/pkg-descr << '4ae125b61d19f0aa9b0357d49b6e03db' XSource Code Pro was designed by Paul D. Hunt as a companion to Source Sans. XThis complementary family was adapted from the Source design due to a Xrequest to create a monospaced version for coding applications. X XSource Code Pro currently supports a wide range of languages using Latin Xscript, and includes all the characters in the Adobe Latin 4 glyph set. As Xan open source project, it is expected that incremental updates will be Xmade over time to extend glyph set coverage and functionality. X XWWW: http://sourceforge.net/projects/sourcecodepro.adobe/ 4ae125b61d19f0aa9b0357d49b6e03db echo x - sourcecodepro-ttf/Makefile sed 's/^X//' >sourcecodepro-ttf/Makefile << 'ca8d71b53c717341144360353a17d810' X# New ports collection makefile for: SourceCodePro-ttf X# Date created: 25 Sep 2012 X# Whom: Masaki TAGAWA X# X# $FreeBSD$ X# X XPORTNAME= sourcecodepro-ttf XPORTVERSION= 1.009 XCATEGORIES= x11-fonts XMASTER_SITES= SF/sourcecodepro.adobe XDISTNAME= SourceCodePro_FontsOnly-${PORTVERSION} X XMAINTAINER= masaki@club.kyutech.ac.jp XCOMMENT= A set of fonts by Adobe designed for coders X XLICENSE= OFL XLICENSE_NAME= SIL OPEN FONT LICENSE Version 1.1 XLICENSE_FILE= ${WRKSRC}/LICENSE.txt XLICENSE_PERMS= auto-accept X XBUILD_DEPENDS= mkfontscale:${PORTSDIR}/x11-fonts/mkfontscale \ X mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir X XUSE_ZIP= yes XUSE_XORG= x11 X XPLIST_SUB= FONTDIR="${FONTDIR:S|${PREFIX}/||}" X XSUB_FILES= pkg-message XPKGMESSAGE= ${WRKDIR}/pkg-message XSUB_LIST= FONTDIR=${FONTDIR} X XFONTNAME= SourceCodePro XFONTDIR= ${PREFIX}/lib/X11/fonts/${FONTNAME} XINSTDAT= fonts.dir fonts.scale X XMKFONTSCL_CMD= ${LOCALBASE}/bin/mkfontscale XMKFONTDIR_CMD= ${LOCALBASE}/bin/mkfontdir X Xdo-build: X cd ${WRKSRC}/ && ${MKFONTSCL_CMD} X cd ${WRKSRC}/ && ${MKFONTDIR_CMD} X Xdo-install: X ${MKDIR} ${FONTDIR} X cd ${WRKSRC}/ && \ X ${INSTALL_DATA} ${INSTDAT} *.ttf ${FONTDIR} X Xpost-install: X @${ECHO_MSG} X @${CAT} ${PKGMESSAGE} X @${ECHO_MSG} X X.include ca8d71b53c717341144360353a17d810 echo x - sourcecodepro-ttf/distinfo sed 's/^X//' >sourcecodepro-ttf/distinfo << 'ae027bdeaed32958d1ffed27a4f3a74d' XSHA256 (SourceCodePro_FontsOnly-1.009.zip) = 8681e3a1b0c32e7c32b03d883a429cd460f4bded8953d67d6e32f499ba3c135c XSIZE (SourceCodePro_FontsOnly-1.009.zip) = 613755 ae027bdeaed32958d1ffed27a4f3a74d echo x - sourcecodepro-ttf/pkg-plist sed 's/^X//' >sourcecodepro-ttf/pkg-plist << 'ca266f0d75597972e4cbe822ed0e5336' X%%FONTDIR%%/SourceCodePro-Black.ttf X%%FONTDIR%%/SourceCodePro-Bold.ttf X%%FONTDIR%%/SourceCodePro-ExtraLight.ttf X%%FONTDIR%%/SourceCodePro-Light.ttf X%%FONTDIR%%/SourceCodePro-Regular.ttf X%%FONTDIR%%/SourceCodePro-Semibold.ttf X%%FONTDIR%%/fonts.dir X%%FONTDIR%%/fonts.scale X@unexec rm %D/%%FONTDIR%%/fonts.cache-1 2>/dev/null || /usr/bin/true X@dirrm %%FONTDIR%% ca266f0d75597972e4cbe822ed0e5336 echo c - sourcecodepro-ttf/files mkdir -p sourcecodepro-ttf/files > /dev/null 2>&1 echo x - sourcecodepro-ttf/files/pkg-message.in sed 's/^X//' >sourcecodepro-ttf/files/pkg-message.in << '3a3ff52b9056b2cecc21fce60cd6bed1' XYou can start using the fonts by following these instructions: X XAdd the following line to the "Files" section of your x.org configuration file: X X FontPath "%%FONTDIR%%/" 3a3ff52b9056b2cecc21fce60cd6bed1 exit --- sourcecodepro-ttf.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 02:40:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A3B11106566C; Tue, 25 Sep 2012 02:40:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 78A118FC18; Tue, 25 Sep 2012 02:40:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P2eDHu052938; Tue, 25 Sep 2012 02:40:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P2eDiF052928; Tue, 25 Sep 2012 02:40:13 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 02:40:13 GMT Message-Id: <201209250240.q8P2eDiF052928@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171935: New port: x11-fonts/sourcecodepro-ttf X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 02:40:13 -0000 Synopsis: New port: x11-fonts/sourcecodepro-ttf Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 02:40:12 UTC 2012 Responsible-Changed-Why: swills@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171935 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 04:30:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C17881065672 for ; Tue, 25 Sep 2012 04:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8E4708FC0C for ; Tue, 25 Sep 2012 04:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P4UBtW049916 for ; Tue, 25 Sep 2012 04:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P4UBf5049914; Tue, 25 Sep 2012 04:30:11 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 04:30:11 GMT Resent-Message-Id: <201209250430.q8P4UBf5049914@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas Abthorpe Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13879106564A for ; Tue, 25 Sep 2012 04:24:49 +0000 (UTC) (envelope-from tabthorpe@goodking.ca) Received: from rex.goodking.ca (unknown [IPv6:2001:470:1c:66::2]) by mx1.freebsd.org (Postfix) with ESMTP id 9A90D8FC14 for ; Tue, 25 Sep 2012 04:24:48 +0000 (UTC) Received: from goodking.goodking.ca (goodking-rex-tun.goodking.ca [172.31.17.1]) by rex.goodking.ca (8.14.5/8.14.5) with ESMTP id q8P4Oklp077101 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Tue, 25 Sep 2012 00:24:47 -0400 (EDT) (envelope-from tabthorpe@goodking.ca) Received: from goodking.goodking.ca (localhost [127.0.0.1]) by goodking.goodking.ca (8.14.5/8.14.5) with ESMTP id q8P4NUEb031404 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 25 Sep 2012 00:23:31 -0400 (EDT) (envelope-from tabthorpe@goodking.goodking.ca) Received: (from tabthorpe@localhost) by goodking.goodking.ca (8.14.5/8.14.5/Submit) id q8P4NULJ031403; Tue, 25 Sep 2012 00:23:30 -0400 (EDT) (envelope-from tabthorpe) Message-Id: <201209250423.q8P4NULJ031403@goodking.goodking.ca> Date: Tue, 25 Sep 2012 00:23:30 -0400 (EDT) From: Thomas Abthorpe To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: 5u623l20@gmail.com Subject: ports/171936: [PATCH] devel/p5-Test-Class-Most: update to 0.07 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 04:30:11 -0000 >Number: 171936 >Category: ports >Synopsis: [PATCH] devel/p5-Test-Class-Most: update to 0.07 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 04:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Thomas Abthorpe >Release: FreeBSD 9.1-STABLE i386 >Organization: The FreeBSD Project >Environment: System: FreeBSD goodking.goodking.ca 9.1-STABLE FreeBSD 9.1-STABLE #15 r240673: Thu Sep 20 21:29:06 EDT >Description: - Update to 0.07 Port maintainer (5u623l20@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- p5-Test-Class-Most-0.07.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-Test-Class-Most/Makefile ./Makefile --- /usr/ports/devel/p5-Test-Class-Most/Makefile 2012-09-06 03:28:21.000000000 -0400 +++ ./Makefile 2012-09-25 00:22:50.000000000 -0400 @@ -1,13 +1,8 @@ -# New ports collection makefile for: Mason -# Date created: 03 April, 2012 -# Whom: Muhammad Moinur Rahman <5u623l20@gmail.com> -# -# $FreeBSD: ports/devel/p5-Test-Class-Most/Makefile,v 1.2 2012/09/06 07:28:21 swills Exp $ -# +# Created by: Muhammad Moinur Rahman <5u623l20@gmail.com> +# $FreeBSD: head/devel/p5-Test-Class-Most/Makefile 303747 2012-09-06 07:28:21Z swills $ PORTNAME= Test-Class-Most -PORTVERSION= 0.06 -PORTREVISION= 1 +PORTVERSION= 0.07 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:OVID diff -ruN --exclude=CVS /usr/ports/devel/p5-Test-Class-Most/distinfo ./distinfo --- /usr/ports/devel/p5-Test-Class-Most/distinfo 2012-04-10 12:41:00.000000000 -0400 +++ ./distinfo 2012-09-24 23:56:45.000000000 -0400 @@ -1,2 +1,2 @@ -SHA256 (Test-Class-Most-0.06.tar.gz) = d4f7ce9af942ec5a5b75209e65c3a6c998cad4c96ebfd43d6cd93c0c22434fc6 -SIZE (Test-Class-Most-0.06.tar.gz) = 7483 +SHA256 (Test-Class-Most-0.07.tar.gz) = 5561de43d137bcb2f5fdd34a86352a2a85048bcb065aca01c96e9bc7cdb23395 +SIZE (Test-Class-Most-0.07.tar.gz) = 7615 --- p5-Test-Class-Most-0.07.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 04:30:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9B4C1065674; Tue, 25 Sep 2012 04:30:25 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7C2738FC0A; Tue, 25 Sep 2012 04:30:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P4UPS4051607; Tue, 25 Sep 2012 04:30:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P4UPW7051598; Tue, 25 Sep 2012 04:30:25 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 04:30:25 GMT Message-Id: <201209250430.q8P4UPW7051598@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171936: [PATCH] devel/p5-Test-Class-Most: update to 0.07 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 04:30:25 -0000 Synopsis: [PATCH] devel/p5-Test-Class-Most: update to 0.07 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 04:30:24 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171936 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 04:50:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1009A1065678 for ; Tue, 25 Sep 2012 04:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D26718FC0C for ; Tue, 25 Sep 2012 04:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P4o9bF069907 for ; Tue, 25 Sep 2012 04:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P4o99A069906; Tue, 25 Sep 2012 04:50:09 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 04:50:09 GMT Resent-Message-Id: <201209250450.q8P4o99A069906@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas Abthorpe Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0CBD8106566B for ; Tue, 25 Sep 2012 04:47:36 +0000 (UTC) (envelope-from tabthorpe@goodking.ca) Received: from rex.goodking.ca (unknown [IPv6:2001:470:1c:66::2]) by mx1.freebsd.org (Postfix) with ESMTP id 81FC98FC0C for ; Tue, 25 Sep 2012 04:47:35 +0000 (UTC) Received: from goodking.goodking.ca (goodking-rex-tun.goodking.ca [172.31.17.1]) by rex.goodking.ca (8.14.5/8.14.5) with ESMTP id q8P4lXei077235 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Tue, 25 Sep 2012 00:47:34 -0400 (EDT) (envelope-from tabthorpe@goodking.ca) Received: from goodking.goodking.ca (localhost [127.0.0.1]) by goodking.goodking.ca (8.14.5/8.14.5) with ESMTP id q8P4lK5q079295 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 25 Sep 2012 00:47:20 -0400 (EDT) (envelope-from tabthorpe@goodking.goodking.ca) Received: (from tabthorpe@localhost) by goodking.goodking.ca (8.14.5/8.14.5/Submit) id q8P4lKVu079294; Tue, 25 Sep 2012 00:47:20 -0400 (EDT) (envelope-from tabthorpe) Message-Id: <201209250447.q8P4lKVu079294@goodking.goodking.ca> Date: Tue, 25 Sep 2012 00:47:20 -0400 (EDT) From: Thomas Abthorpe To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: alexey@renatasystems.org Subject: ports/171938: [PATCH] devel/p5-File-ChangeNotify: update to 0.22 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 04:50:10 -0000 >Number: 171938 >Category: ports >Synopsis: [PATCH] devel/p5-File-ChangeNotify: update to 0.22 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 04:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Thomas Abthorpe >Release: FreeBSD 9.1-STABLE i386 >Organization: The FreeBSD Project >Environment: System: FreeBSD goodking.goodking.ca 9.1-STABLE FreeBSD 9.1-STABLE #15 r240673: Thu Sep 20 21:29:06 EDT >Description: - Update to 0.22 Port maintainer (alexey@renatasystems.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- p5-File-ChangeNotify-0.22.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-File-ChangeNotify/Makefile ./Makefile --- /usr/ports/devel/p5-File-ChangeNotify/Makefile 2012-02-14 21:58:46.000000000 -0500 +++ ./Makefile 2012-09-25 00:24:47.000000000 -0400 @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-File-ChangeNotify -# Date created: Fri 14 Aug 2009 -# Whom: Alexey V. Degtyarev -# -# $FreeBSD: ports/devel/p5-File-ChangeNotify/Makefile,v 1.11 2012/02/15 02:58:46 swills Exp $ -# +# Created by: Alexey V. Degtyarev +# $FreeBSD: head/devel/p5-File-ChangeNotify/Makefile 300896 2012-07-14 13:54:48Z beat $ PORTNAME= File-ChangeNotify -PORTVERSION= 0.21 +PORTVERSION= 0.22 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff -ruN --exclude=CVS /usr/ports/devel/p5-File-ChangeNotify/distinfo ./distinfo --- /usr/ports/devel/p5-File-ChangeNotify/distinfo 2012-02-14 21:58:46.000000000 -0500 +++ ./distinfo 2012-09-25 00:26:13.000000000 -0400 @@ -1,2 +1,2 @@ -SHA256 (File-ChangeNotify-0.21.tar.gz) = d89cc03a12b4f4f5d42c6d679a20a768207f50b74f0a4ff470ca0b0a70db322f -SIZE (File-ChangeNotify-0.21.tar.gz) = 19103 +SHA256 (File-ChangeNotify-0.22.tar.gz) = 24152d954d3028e986f0de305be0e97c7f492cb7ef9de6fd8b95736febf98ff6 +SIZE (File-ChangeNotify-0.22.tar.gz) = 19103 --- p5-File-ChangeNotify-0.22.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 04:50:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 24C711065673; Tue, 25 Sep 2012 04:50:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ED61C8FC12; Tue, 25 Sep 2012 04:50:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P4oKO3071767; Tue, 25 Sep 2012 04:50:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P4oK92071760; Tue, 25 Sep 2012 04:50:20 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 04:50:20 GMT Message-Id: <201209250450.q8P4oK92071760@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171938: [PATCH] devel/p5-File-ChangeNotify: update to 0.22 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 04:50:21 -0000 Synopsis: [PATCH] devel/p5-File-ChangeNotify: update to 0.22 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 04:50:20 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171938 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 05:50:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99147106566C for ; Tue, 25 Sep 2012 05:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 056558FC0A for ; Tue, 25 Sep 2012 05:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P5o6dc025174 for ; Tue, 25 Sep 2012 05:50:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P5o6U8025173; Tue, 25 Sep 2012 05:50:06 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 05:50:06 GMT Resent-Message-Id: <201209250550.q8P5o6U8025173@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, olli hauer Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B4816106566B; Tue, 25 Sep 2012 05:41:32 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A1C458FC0A; Tue, 25 Sep 2012 05:41:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P5fWjt024490; Tue, 25 Sep 2012 05:41:32 GMT (envelope-from ohauer@freefall.freebsd.org) Received: (from ohauer@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P5fWlk024489; Tue, 25 Sep 2012 05:41:32 GMT (envelope-from ohauer) Message-Id: <201209250541.q8P5fWlk024489@freefall.freebsd.org> Date: Tue, 25 Sep 2012 05:41:32 GMT From: olli hauer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: wxs@FreeBSD.org Subject: ports/171939: devel/git leftovers if build without NLS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 05:50:12 -0000 >Number: 171939 >Category: ports >Synopsis: devel/git leftovers if build without NLS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 05:50:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: ohauer >Release: >Organization: >Environment: >Description: without NLS not honored, results in leftovers >How-To-Repeat: build git without NLS tinderbox log (trimmed) === Checking filesystem state after all packages deleted ================================================================ list of extra files and directories in / (not present on clean system but present after everything was deinstalled) ... Sep 25 05:29 usr/local/share/locale/da/LC_MESSAGES/git.mo ... Sep 25 05:29 usr/local/share/locale/de/LC_MESSAGES/git.mo ... Sep 25 05:29 usr/local/share/locale/is/LC_MESSAGES/git.mo ... Sep 25 05:29 usr/local/share/locale/it/LC_MESSAGES/git.mo ... Sep 25 05:29 usr/local/share/locale/nl/LC_MESSAGES/git.mo ... Sep 25 05:29 usr/local/share/locale/pt_PT/LC_MESSAGES/git.mo ... Sep 25 05:29 usr/local/share/locale/sv/LC_MESSAGES/git.mo ... Sep 25 05:29 usr/local/share/locale/vi/LC_MESSAGES/git.mo ... Sep 25 05:29 usr/local/share/locale/zh_CN/LC_MESSAGES/git.mo ================================================================ build of /usr/ports/devel/git ended at Tue Sep 25 05:29:19 UTC 2012 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 05:50:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9005C106564A; Tue, 25 Sep 2012 05:50:25 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 639478FC14; Tue, 25 Sep 2012 05:50:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P5oP1o027819; Tue, 25 Sep 2012 05:50:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P5oPTm027805; Tue, 25 Sep 2012 05:50:25 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 05:50:25 GMT Message-Id: <201209250550.q8P5oPTm027805@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wxs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171939: devel/git leftovers if build without NLS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 05:50:25 -0000 Synopsis: devel/git leftovers if build without NLS Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 05:50:24 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171939 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 06:40:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A6D4106564A for ; Tue, 25 Sep 2012 06:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6FDC58FC12 for ; Tue, 25 Sep 2012 06:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P6eBQP071933 for ; Tue, 25 Sep 2012 06:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P6eBWu071932; Tue, 25 Sep 2012 06:40:11 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 06:40:11 GMT Resent-Message-Id: <201209250640.q8P6eBWu071932@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andreas Nilsson Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0FF89106566B for ; Tue, 25 Sep 2012 06:39:07 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CFEEE8FC0C for ; Tue, 25 Sep 2012 06:39:06 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P6d6xQ047456 for ; Tue, 25 Sep 2012 06:39:06 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8P6d6vg047455; Tue, 25 Sep 2012 06:39:06 GMT (envelope-from nobody) Message-Id: <201209250639.q8P6d6vg047455@red.freebsd.org> Date: Tue, 25 Sep 2012 06:39:06 GMT From: Andreas Nilsson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171943: Build failures due to missing glproto.pc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 06:40:11 -0000 >Number: 171943 >Category: ports >Synopsis: Build failures due to missing glproto.pc >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 06:40:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Andreas Nilsson >Release: 9.1-PRERELASE >Organization: >Environment: FreeBSD jailer.netclean.com 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #3: Tue Aug 21 08:15:07 CEST 2012 root@jailer.netclean.com:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I've been trying out poudriere to build packages recently, and whenever I have WITH_NEW_XORG=YES builds fail. What happens is that most packages fails in build stage ( bad, should fail in configure ) due to reported missing cairo.h. This is due to configure not finding the CFLAGS needed for cairo, which in turn is caused by pkgconf failing a call like pkgconf --cflags cairo which reports missing glproto.pc ( however a call like pkgconf --libs cairo does succeed). >How-To-Repeat: Setup poudriere. Make poudriere use WITH_NEW_XORG Make a list of packages containing for example firefox, gtk-engines2, py-cairo, py-gobject, gstreamer-plugins-{cairo,pango}, pangomm, cairomm and dconf. Start build, watch failures. (You may need the same set of port-options, they are available at http://benriach.widell.net/~andrnils/poudriere-pc.tar.gz , with some logs as well. >Fix: --- Mk/bsd.xorg.mk.orig +++ Mk/bsd.xorg.mk @@ -166,7 +166,7 @@  fontenc_LIB_PC_DEPENDS=                ${LOCALBASE}/libdata/pkgconfig/fontenc.pc:${PORTSDIR}/x11-fonts/libfontenc  fontsproto_BUILD_DEPENDS=      ${LOCALBASE}/libdata/pkgconfig/fontsproto.pc:${PORTSDIR}/x11-fonts/fontsproto  fontutil_LIB_PC_DEPENDS=       ${LOCALBASE}/libdata/pkgconfig/fontutil.pc:${PORTSDIR}/x11-fonts/font-util -glproto_BUILD_DEPENDS=         ${LOCALBASE}/libdata/pkgconfig/glproto.pc:${PORTSDIR}/x11/glproto +glproto_LIB_PC_DEPENDS=                ${LOCALBASE}/libdata/pkgconfig/glproto.pc:${PORTSDIR}/x11/glproto  ice_LIB_PC_DEPENDS=            ${LOCALBASE}/libdata/pkgconfig/ice.pc:${PORTSDIR}/x11/libICE  inputproto_BUILD_DEPENDS=      ${LOCALBASE}/libdata/pkgconfig/inputproto.pc:${PORTSDIR}/x11/inputproto  kbproto_BUILD_DEPENDS=         ${LOCALBASE}/libdata/pkgconfig/kbproto.pc:${PORTSDIR}/x11/kbproto >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 07:50:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 383D41065740 for ; Tue, 25 Sep 2012 07:50:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 05EC48FC12 for ; Tue, 25 Sep 2012 07:50:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P7oF6L044947 for ; Tue, 25 Sep 2012 07:50:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P7oFFG044938; Tue, 25 Sep 2012 07:50:15 GMT (envelope-from gnats) Date: Tue, 25 Sep 2012 07:50:15 GMT Message-Id: <201209250750.q8P7oFFG044938@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Horance Chou Cc: Subject: Re: ports/171886: [PATCH] multimedia/gpac-mp4box: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Horance Chou List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 07:50:16 -0000 The following reply was made to PR ports/171886; it has been noted by GNATS. From: Horance Chou To: bug-followup@FreeBSD.org, horance@gmail.com Cc: Subject: Re: ports/171886: [PATCH] multimedia/gpac-mp4box: [SUMMARIZE CHANGES] Date: Tue, 25 Sep 2012 15:40:17 +0800 --20cf3074d4da4d44b504ca81d177 Content-Type: text/plain; charset=UTF-8 This will require ports/171888 to work. sorry & thanks! Regards, Horance --20cf3074d4da4d44b504ca81d177 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
This will require ports/171888 to work.
sorry & thanks!<= /div>
Regards,
=C2=A0 =C2=A0 Horance
--20cf3074d4da4d44b504ca81d177-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 08:00:37 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF8D0106564A for ; Tue, 25 Sep 2012 08:00:36 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AF91A8FC17 for ; Tue, 25 Sep 2012 08:00:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P80aLS054628 for ; Tue, 25 Sep 2012 08:00:36 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P80asP054625; Tue, 25 Sep 2012 08:00:36 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 08:00:36 GMT Resent-Message-Id: <201209250800.q8P80asP054625@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jinsong Zhao Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0890D106564A for ; Tue, 25 Sep 2012 07:59:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E93F28FC0A for ; Tue, 25 Sep 2012 07:59:29 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P7xT2J087902 for ; Tue, 25 Sep 2012 07:59:29 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8P7xTJ5087901; Tue, 25 Sep 2012 07:59:29 GMT (envelope-from nobody) Message-Id: <201209250759.q8P7xTJ5087901@red.freebsd.org> Date: Tue, 25 Sep 2012 07:59:29 GMT From: Jinsong Zhao To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171944: science/gamess can not fetch source code X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 08:00:37 -0000 >Number: 171944 >Category: ports >Synopsis: science/gamess can not fetch source code >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 08:00:35 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jinsong Zhao >Release: FreeBSD 9.0-RELEASE >Organization: Huazhong Agricultural University >Environment: FreeBSD see.hzau.edu.cn 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 01:47:53 UTC 2012 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: when execute the following command: cd /usr/ports/science/gamess make install clean error messages appear: => gamess-current.tar.gz doesn't seem to exist in /usr/ports/distfiles/gamess/20090112.3. => Attempting to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/gamess/20090112.3/gamess-current.tar.gz fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/gamess/20090112.3/gamess-current.tar.gz: File unavailable (e.g., file not found, no access) => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/gamess/20090112.3 and try again. *** Error code 1 Stop in /usr/ports/science/gamess. >How-To-Repeat: cd /usr/ports/science/gamess make install clean >Fix: I don't know how to fix it. BTW, the latest version of GAMESS is ``GAMESS version May 1, 2012 R1'' >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 08:01:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C8861065673; Tue, 25 Sep 2012 08:01:05 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D44BF8FC12; Tue, 25 Sep 2012 08:01:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P814Gh057065; Tue, 25 Sep 2012 08:01:04 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P814Me057057; Tue, 25 Sep 2012 08:01:04 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 08:01:04 GMT Message-Id: <201209250801.q8P814Me057057@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, maho@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171944: science/gamess can not fetch source code X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 08:01:05 -0000 Synopsis: science/gamess can not fetch source code Responsible-Changed-From-To: freebsd-ports-bugs->maho Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 08:01:03 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171944 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 08:40:04 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 161A9106566B for ; Tue, 25 Sep 2012 08:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DC1A08FC12 for ; Tue, 25 Sep 2012 08:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P8e3L4094651 for ; Tue, 25 Sep 2012 08:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P8e3W1094650; Tue, 25 Sep 2012 08:40:03 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 08:40:03 GMT Resent-Message-Id: <201209250840.q8P8e3W1094650@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dominic Fandrey Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4075C106566B for ; Tue, 25 Sep 2012 08:37:28 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 2B3F68FC08 for ; Tue, 25 Sep 2012 08:37:28 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P8bSZK057332 for ; Tue, 25 Sep 2012 08:37:28 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8P8bRGZ057331; Tue, 25 Sep 2012 08:37:27 GMT (envelope-from nobody) Message-Id: <201209250837.q8P8bRGZ057331@red.freebsd.org> Date: Tue, 25 Sep 2012 08:37:27 GMT From: Dominic Fandrey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171945: fusefs-smbnetfs crash since fusefs-libs update to 2.9.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 08:40:04 -0000 >Number: 171945 >Category: ports >Synopsis: fusefs-smbnetfs crash since fusefs-libs update to 2.9.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 08:40:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dominic Fandrey >Release: RELENG_9 >Organization: private >Environment: FreeBSD mobileKamikaze.norad 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0: Thu Sep 20 02:16:43 CEST 2012 root@mobileKamikaze.norad:/usr/obj/HP6510b-9/amd64/usr/src/sys/HP6510b-9 amd64 >Description: Since the fusefs-libs update , smbnetfs crashes for me. The only thing that works is listing the members of a workgroup. Accessing a shared folder or listing the shares of a server crash smbnetfs. A log of a debug session is attached. >How-To-Repeat: >Fix: Patch attached with submission follows: gdb -e /usr/local/bin/smbnetfs GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "amd64-marcel-freebsd". (gdb) run -o rw -o log_file=/var/log/smbnetfs.log -o uid=0 -o gid=5 -o umask=007 -o allow_other -o debug /mnt/smb Starting program: /usr/local/bin/smbnetfs -o rw -o log_file=/var/log/smbnetfs.log -o uid=0 -o gid=5 -o umask=007 -o allow_other -o debug /mnt/smb (no debugging symbols found)...[New LWP 100292] gnome-keyring is not available. FUSE library version: 2.9.1 nullpath_ok: 0 nopath: 0 utime_omit_ok: 0 unique: 0, opcode: INIT (26), nodeid: 0, insize: 56, pid: 37699 INIT: 7.19 flags=0x00000000 max_readahead=0x00000000 INIT: 7.19 flags=0x00000010 max_readahead=0x00000000 max_write=0x00020000 max_background=0 congestion_threshold=0 NOTIFY: code=0 length=40 unique: 0, opcode: GETATTR (3), nodeid: 1, insize: 40, pid: 2997 getattr / NOTIFY: code=0 length=120 unique: 0, opcode: LOOKUP (1), nodeid: 1, insize: 55, pid: 2997 LOOKUP /MOBILEKAMIKAZE getattr /MOBILEKAMIKAZE NODEID: 2 NOTIFY: code=0 length=144 unique: 0, opcode: ACCESS (34), nodeid: 2, insize: 48, pid: 2997 NOTIFY: code=-78 length=16 unique: 0, opcode: LOOKUP (1), nodeid: 1, insize: 55, pid: 2997 LOOKUP /MOBILEKAMIKAZE getattr /MOBILEKAMIKAZE NODEID: 2 NOTIFY: code=0 length=144 unique: 0, opcode: GETATTR (3), nodeid: 2, insize: 40, pid: 37706 fgetattr[76253944826189] /MOBILEKAMIKAZE [New Thread 805007400 (LWP 100292/smbnetfs)] [New Thread 805008800 (LWP 100392/smbnetfs)] [New Thread 8050e5c00 (LWP 100393/smbnetfs)] [New Thread 8050e6000 (LWP 100394/smbnetfs)] [New Thread 8050e6400 (LWP 100395/smbnetfs)] Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 8050e5c00 (LWP 100393/smbnetfs)] 0x0000000000413b9b in ?? () (gdb) bt #0 0x0000000000413b9b in ?? () #1 0x0000000000000000 in ?? () #2 0x000000000000037f in ?? () #3 0x00007fffff9fcc20 in ?? () #4 0x0000455a414b494d in ?? () #5 0x00007fffff9fcb90 in ?? () #6 0x00000000004160b5 in ?? () #7 0x000000000000934a in ?? () #8 0x00007fffff9fcce0 in ?? () #9 0x00007fffff9fcc20 in ?? () #10 0x0000000805c65100 in ?? () #11 0x00007fffff9fcc20 in ?? () #12 0x0000000805c21040 in ?? () #13 0x00007fffff9fcb90 in ?? () #14 0x0000455a414b494d in ?? () #15 0x00007fffff9fcbd0 in ?? () #16 0x0000000800f03c5d in fuse_fs_fgetattr (fs=0x455a414b494d, path=0x7fffff9fcc20 "", buf=0x37f, fi=0x0) at fuse.c:1555 Previous frame inner to this frame (corrupt stack?) (gdb) continue Continuing. 37696->sig_handler: signal 11 received 37696->common_print_backtrace: dumping ... srv(37700)->smb_conn_srv_listen: errno=0, No error: 0 Program exited with code 013. (gdb) quit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 09:20:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1BF27106568D; Tue, 25 Sep 2012 09:20:14 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E3EDD8FC14; Tue, 25 Sep 2012 09:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P9KDdQ031456; Tue, 25 Sep 2012 09:20:13 GMT (envelope-from fluffy@freefall.freebsd.org) Received: (from fluffy@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P9KDGd031447; Tue, 25 Sep 2012 09:20:13 GMT (envelope-from fluffy) Date: Tue, 25 Sep 2012 09:20:13 GMT Message-Id: <201209250920.q8P9KDGd031447@freefall.freebsd.org> To: bkoenig@alpha-tierchen.de, fluffy@freebsd.org, fluffy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: fluffy@FreeBSD.org Cc: Subject: Re: ports/171892: graphics/libvisual04-plugins: unbreak with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 09:20:14 -0000 Synopsis: graphics/libvisual04-plugins: unbreak with clang State-Changed-From-To: feedback->closed State-Changed-By: fluffy State-Changed-When: Tue Sep 25 09:20:13 UTC 2012 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=171892 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 09:30:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 593A71065670 for ; Tue, 25 Sep 2012 09:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4167D8FC1A for ; Tue, 25 Sep 2012 09:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8P9UGHq039458 for ; Tue, 25 Sep 2012 09:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8P9UGAF039446; Tue, 25 Sep 2012 09:30:16 GMT (envelope-from gnats) Date: Tue, 25 Sep 2012 09:30:16 GMT Message-Id: <201209250930.q8P9UGAF039446@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/171892: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 09:30:16 -0000 The following reply was made to PR ports/171892; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/171892: commit references a PR Date: Tue, 25 Sep 2012 09:20:16 +0000 (UTC) Author: fluffy Date: Tue Sep 25 09:19:43 2012 New Revision: 304826 URL: http://svn.freebsd.org/changeset/ports/304826 Log: - Fix mistyped return statements, which clang objects strenuously to PR: 171892 Submitted by: myself Approved by: bkoenig AT alpha-tierchen DOT de (maintainer) Obtained from: PkgSrc Added: head/graphics/libvisual04-plugins/files/ head/graphics/libvisual04-plugins/files/patch-plugins_morph_flash_morph__flash.c (contents, props changed) Added: head/graphics/libvisual04-plugins/files/patch-plugins_morph_flash_morph__flash.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libvisual04-plugins/files/patch-plugins_morph_flash_morph__flash.c Tue Sep 25 09:19:43 2012 (r304826) @@ -0,0 +1,13 @@ +- fix mistyped return statements, which clang objects strenuously to + +--- plugins/morph/flash/morph_flash.c~ 2006-01-27 20:19:18.000000000 +0000 ++++ plugins/morph/flash/morph_flash.c +@@ -116,7 +116,7 @@ int lv_morph_flash_palette (VisPluginDat + FlashPrivate *priv = visual_object_get_private (VISUAL_OBJECT (plugin)); + + if (src1->pal == NULL || src2->pal == NULL) +- return; ++ return 0; + + if (rate < 0.5) + visual_palette_blend (pal, src1->pal, &priv->whitepal, rate * 2); _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 10:56:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B188106566B; Tue, 25 Sep 2012 10:56:15 +0000 (UTC) (envelope-from jase@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7013E8FC14; Tue, 25 Sep 2012 10:56:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PAuFjS023329; Tue, 25 Sep 2012 10:56:15 GMT (envelope-from jase@freefall.freebsd.org) Received: (from jase@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PAuFJd023325; Tue, 25 Sep 2012 11:56:15 +0100 (BST) (envelope-from jase) Date: Tue, 25 Sep 2012 11:56:15 +0100 (BST) Message-Id: <201209251056.q8PAuFJd023325@freefall.freebsd.org> To: jase@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jase@FreeBSD.org From: jase@FreeBSD.org Cc: Subject: Re: ports/171926: [maintainer] lang/chicken: update to 4.8.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 10:56:15 -0000 Synopsis: [maintainer] lang/chicken: update to 4.8.0 Responsible-Changed-From-To: freebsd-ports-bugs->jase Responsible-Changed-By: jase Responsible-Changed-When: Tue 25 Sep 2012 11:56:15 BST Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171926 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 10:57:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 81668106566B; Tue, 25 Sep 2012 10:57:16 +0000 (UTC) (envelope-from jase@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 559458FC15; Tue, 25 Sep 2012 10:57:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PAvGOL023457; Tue, 25 Sep 2012 10:57:16 GMT (envelope-from jase@freefall.freebsd.org) Received: (from jase@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PAvGYF023453; Tue, 25 Sep 2012 11:57:16 +0100 (BST) (envelope-from jase) Date: Tue, 25 Sep 2012 11:57:16 +0100 (BST) Message-Id: <201209251057.q8PAvGYF023453@freefall.freebsd.org> To: jase@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jase@FreeBSD.org From: jase@FreeBSD.org Cc: Subject: Re: ports/171895: [maintainer update] devel/rubygem-awesomeprint: Update to 1.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 10:57:16 -0000 Synopsis: [maintainer update] devel/rubygem-awesomeprint: Update to 1.1.0 Responsible-Changed-From-To: freebsd-ports-bugs->jase Responsible-Changed-By: jase Responsible-Changed-When: Tue 25 Sep 2012 11:57:15 BST Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171895 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 10:59:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D7A41065780; Tue, 25 Sep 2012 10:59:08 +0000 (UTC) (envelope-from jase@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D6A278FC12; Tue, 25 Sep 2012 10:59:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PAx76S023599; Tue, 25 Sep 2012 10:59:07 GMT (envelope-from jase@freefall.freebsd.org) Received: (from jase@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PAx7Fj023595; Tue, 25 Sep 2012 11:59:07 +0100 (BST) (envelope-from jase) Date: Tue, 25 Sep 2012 11:59:07 +0100 (BST) Message-Id: <201209251059.q8PAx7Fj023595@freefall.freebsd.org> To: jase@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jase@FreeBSD.org From: jase@FreeBSD.org Cc: Subject: Re: ports/171826: Update audio/teamspeak3-server 3.0.5 -> 3.0.6.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 10:59:08 -0000 Synopsis: Update audio/teamspeak3-server 3.0.5 -> 3.0.6.1 Responsible-Changed-From-To: freebsd-ports-bugs->jase Responsible-Changed-By: jase Responsible-Changed-When: Tue 25 Sep 2012 11:59:07 BST Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171826 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 11:10:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E96BC106564A for ; Tue, 25 Sep 2012 11:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BA8A08FC12 for ; Tue, 25 Sep 2012 11:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PBAD01032765 for ; Tue, 25 Sep 2012 11:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PBADq3032758; Tue, 25 Sep 2012 11:10:13 GMT (envelope-from gnats) Date: Tue, 25 Sep 2012 11:10:13 GMT Message-Id: <201209251110.q8PBADq3032758@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dominic Fandrey Cc: Subject: Re: ports/171945: fusefs-smbnetfs crash since fusefs-libs update to 2.9.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dominic Fandrey List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 11:10:14 -0000 The following reply was made to PR ports/171945; it has been noted by GNATS. From: Dominic Fandrey To: bug-followup@FreeBSD.org, kamikaze@bsdforen.de Cc: Subject: Re: ports/171945: fusefs-smbnetfs crash since fusefs-libs update to 2.9.1 Date: Tue, 25 Sep 2012 13:04:06 +0200 I just tested smbnetfs-0.5.3a from upstream - no changes. -- A: Because it fouls the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail? From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 13:00:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 363D51065673 for ; Tue, 25 Sep 2012 13:00:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CF4688FC1A for ; Tue, 25 Sep 2012 13:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PD0OZ4035538 for ; Tue, 25 Sep 2012 13:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PD0Ooe035537; Tue, 25 Sep 2012 13:00:24 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 13:00:24 GMT Resent-Message-Id: <201209251300.q8PD0Ooe035537@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Hartmann Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ED9431065672 for ; Tue, 25 Sep 2012 12:52:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id D76D58FC14 for ; Tue, 25 Sep 2012 12:52:44 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PCqiLW001117 for ; Tue, 25 Sep 2012 12:52:44 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8PCqiaS001116; Tue, 25 Sep 2012 12:52:44 GMT (envelope-from nobody) Message-Id: <201209251252.q8PCqiaS001116@red.freebsd.org> Date: Tue, 25 Sep 2012 12:52:44 GMT From: Oliver Hartmann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171949: graphics/graphviz: install: Unable to find pthread_create symbol. Aborting. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 13:00:25 -0000 >Number: 171949 >Category: ports >Synopsis: graphics/graphviz: install: Unable to find pthread_create symbol. Aborting. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 13:00:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Hartmann >Release: FreeBSD 10.0-CURRENT/amd64 CLANG & FreeBSD 9.1-PRE/amd64 CLANG >Organization: FU Berlin >Environment: >Description: Installation of port graphics/graphviz fails du to the below shown error. Building, either with CLANG (3.1 and 3.2) or GCC46 works fine. But the final installation process, "make install", ends up with the following error: gmake[5]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.28.0/cmd/dot' (cd /usr/local/bin; if test -x dot; then for i in neato twopi fdp circo osage patchwork sfdp; do rm -f $i; ln -s dot $i; done; fi;) if test "x" = "x"; then if test -x /usr/local/bin/dot; then if test -x /sbin/ldconfig; then /sbin/ldconfig 2>/dev/null; fi; /usr/local/bin/dot -c; else /usr/local/bin/dot_static -c; fi; fi Unable to find pthread_create symbol. Aborting. gmake[5]: *** [install-exec-hook] Abort trap (core dumped) >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 13:00:42 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3FF42106567F; Tue, 25 Sep 2012 13:00:42 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 134ED8FC19; Tue, 25 Sep 2012 13:00:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PD0fSj037454; Tue, 25 Sep 2012 13:00:41 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PD0f1P037440; Tue, 25 Sep 2012 13:00:41 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 13:00:41 GMT Message-Id: <201209251300.q8PD0f1P037440@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171949: graphics/graphviz: install: Unable to find pthread_create symbol. Aborting. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 13:00:42 -0000 Synopsis: graphics/graphviz: install: Unable to find pthread_create symbol. Aborting. Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 13:00:41 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171949 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 13:06:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E8DA106566C; Tue, 25 Sep 2012 13:06:34 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 0FA178FC08; Tue, 25 Sep 2012 13:06:33 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.69) with esmtp (envelope-from ) id <1TGUqP-002XN9-0r>; Tue, 25 Sep 2012 15:06:33 +0200 Received: from e178013022.adsl.alicedsl.de ([85.178.13.22] helo=thor.walstatt.dyndns.org) by inpost2.zedat.fu-berlin.de (Exim 4.69) with esmtpsa (envelope-from ) id <1TGUqO-001ZEM-Sr>; Tue, 25 Sep 2012 15:06:33 +0200 Message-ID: <5061AC54.9080503@zedat.fu-berlin.de> Date: Tue, 25 Sep 2012 15:06:28 +0200 From: "O. Hartmann" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120910 Thunderbird/15.0.1 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <201209251300.q8PD0Owh035533@freefall.freebsd.org> In-Reply-To: <201209251300.q8PD0Owh035533@freefall.freebsd.org> X-Enigmail-Version: 1.4.3 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigCAE6D2EB345AD934E0A93CBE" X-Originating-IP: 85.178.13.22 Cc: Subject: Re: ports/171949: graphics/graphviz: install: Unable to find pthread_create symbol. Aborting. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 13:06:34 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigCAE6D2EB345AD934E0A93CBE Content-Type: multipart/mixed; boundary="------------060300050208040806070207" This is a multi-part message in MIME format. --------------060300050208040806070207 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable Am 09/25/12 15:00, schrieb FreeBSD-gnats-submit@FreeBSD.org: > Thank you very much for your problem report. > It has the internal identification `ports/171949'. > The individual assigned to look at your > report is: freebsd-ports-bugs.=20 >=20 > You can access the state of your problem report at any time > via this link: >=20 > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D171949 >=20 >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: graphics/graphviz: install: Unable to find pthread_cre= ate symbol. Aborting. >> Arrival-Date: Tue Sep 25 13:00:24 UTC 2012 I forgot to mention that I have fixed this by adding "-lpthread". Obviously, it is missing. Attached file contains the diff for the Makefile. oh --------------060300050208040806070207 Content-Type: text/plain; charset=us-ascii; name="Makefile.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Makefile.diff" --- Makefile.orig 2012-09-25 15:01:31.000000000 +0200 +++ Makefile 2012-09-25 15:01:35.000000000 +0200 @@ -26,7 +26,7 @@ USE_AUTOTOOLS=3D libltdl libtool WANT_GNOME=3D yes GNU_CONFIGURE=3D yes -LDFLAGS+=3D -L${LOCALBASE}/lib -lpthread +LDFLAGS+=3D -L${LOCALBASE}/lib CPPFLAGS+=3D -I${LOCALBASE}/include PLIST_SUB=3D PORTVERSION=3D"${PORTVERSION}" =20 --------------060300050208040806070207-- --------------enigCAE6D2EB345AD934E0A93CBE Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iQEcBAEBAgAGBQJQYaxYAAoJEOgBcD7A/5N8zQUH/A2vM113j2WA+8OP1hi4fOz3 Ij0pJeutmFyDe3nEglQVeRkYCKCvSnPK8xNVq2pC1JABbI666xQQ6x+pWbgjlZcc qKCo6n8C0x0kknBMxKYSbQ6i1wrjPOIvepap2NfsnAwVjkTIPBFX1wmh4RiLbD/D fAJGoS/OFYkfDHcSdZQstPO+JrUoaWJQ8rZoWJhKXOi2ABcZF4AejI9ado5vOy7x 0nE1hXm/bCB00Ljr6XWOUJAo9qJbZCt73asR3ocOOZR5RI0YfZFSbts0LbawApwv IZLUSxlsqv0ds2f22Q9xpXewprRSm4QvZN3IgTa1BMDC1CxaQ2hPsIGAe3XukEs= =QvSj -----END PGP SIGNATURE----- --------------enigCAE6D2EB345AD934E0A93CBE-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 13:50:04 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B63E1065670 for ; Tue, 25 Sep 2012 13:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B5EA78FC1E for ; Tue, 25 Sep 2012 13:50:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PDo34e081977 for ; Tue, 25 Sep 2012 13:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PDo3SQ081976; Tue, 25 Sep 2012 13:50:03 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 13:50:03 GMT Resent-Message-Id: <201209251350.q8PDo3SQ081976@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Hartmann Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DAF54106566B for ; Tue, 25 Sep 2012 13:49:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 8CA7E8FC0C for ; Tue, 25 Sep 2012 13:49:34 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PDnYqK025842 for ; Tue, 25 Sep 2012 13:49:34 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8PDnYwu025841; Tue, 25 Sep 2012 13:49:34 GMT (envelope-from nobody) Message-Id: <201209251349.q8PDnYwu025841@red.freebsd.org> Date: Tue, 25 Sep 2012 13:49:34 GMT From: Oliver Hartmann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171950: devel/tnt: include/tnt/tnt_sparse_matrix_csr.h:97:3: error: no matching constructor for initialization of 'Array1D' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 13:50:04 -0000 >Number: 171950 >Category: ports >Synopsis: devel/tnt: include/tnt/tnt_sparse_matrix_csr.h:97:3: error: no matching constructor for initialization of 'Array1D' >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 13:50:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Hartmann >Release: FreeBSD 10.0-CURRENT/amd64 CLANG & FreeBSD 9.1-PRE/amd64 CLANG >Organization: FU Berlin >Environment: >Description: Using devel/tnt with CLANG compiler and a software package, that utilises devel/tnt, ends up in the follwoing error, which renders devel/tnt useless with CLANG 9as far as I can see). Since I'm neither a C++ expert nor am I CLANG expert, I guess the error is due to a more restrict syntax check in CLANG than GCC does. GCC compiles the code without problems (I used gcc46). [...] In file included from /usr/local/include/tnt/jama_lu.h:4: In file included from /usr/local/include/tnt/tnt.h:55: /usr/local/include/tnt/tnt_sparse_matrix_csr.h:97:3: error: no matching constructor for initialization of 'Array1D' rowptr_(M, r), colind_(nz, c), dim1_(M), dim2_(N) {} ^ ~~~~ /usr/local/include/tnt/tnt_array1d.h:63:11: note: candidate constructor not viable: no known conversion from 'const int *' to 'const int' for 2nd argument; dereference the argument with * Array1D(int n, const T &a); ^ /usr/local/include/tnt/tnt_array1d.h:64:11: note: candidate constructor not viable: 2nd argument ('const int *') would lose const qualifier Array1D(int n, T *a); ^ /usr/local/include/tnt/tnt_array1d.h:61:11: note: candidate constructor not viable: requires 0 arguments, but 2 were provided Array1D(); ^ /usr/local/include/tnt/tnt_array1d.h:62:11: note: candidate constructor not viable: requires single argument 'n', but 2 arguments were provided explicit Array1D(int n); ^ /usr/local/include/tnt/tnt_array1d.h:65:14: note: candidate constructor not viable: requires single argument 'A', but 2 arguments were provided inline Array1D(const Array1D &A); ^ In file included from PrincipalComponentAnalysis.cpp:27: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 13:50:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A193106566C; Tue, 25 Sep 2012 13:50:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2BA7A8FC15; Tue, 25 Sep 2012 13:50:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PDoMhh085102; Tue, 25 Sep 2012 13:50:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PDoMMH085091; Tue, 25 Sep 2012 13:50:22 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 13:50:22 GMT Message-Id: <201209251350.q8PDoMMH085091@freefall.freebsd.org> To: ohartman@zedat.fu-berlin.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171950: devel/tnt: include/tnt/tnt_sparse_matrix_csr.h:97:3: error: no matching constructor for initialization of 'Array1D' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 13:50:22 -0000 Synopsis: devel/tnt: include/tnt/tnt_sparse_matrix_csr.h:97:3: error: no matching constructor for initialization of 'Array1D' State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Sep 25 13:50:21 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171950 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 14:00:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81F971065679 for ; Tue, 25 Sep 2012 14:00:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6A8E98FC0C for ; Tue, 25 Sep 2012 14:00:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PE0Qmw090392 for ; Tue, 25 Sep 2012 14:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PE0Q7x090384; Tue, 25 Sep 2012 14:00:26 GMT (envelope-from gnats) Date: Tue, 25 Sep 2012 14:00:26 GMT Message-Id: <201209251400.q8PE0Q7x090384@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/171950: devel/tnt: include/tnt/tnt_sparse_matrix_csr.h:97:3: error: no matching constructor for initialization of 'Array1D' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 14:00:26 -0000 The following reply was made to PR ports/171950; it has been noted by GNATS. From: Edwin Groothuis To: erik@bz.bzflag.bz Cc: bug-followup@FreeBSD.org Subject: Re: ports/171950: devel/tnt: include/tnt/tnt_sparse_matrix_csr.h:97:3: error: no matching constructor for initialization of 'Array1D' Date: Tue, 25 Sep 2012 13:50:18 UT Maintainer of devel/tnt, Please note that PR ports/171950 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171950 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 14:00:31 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2FF3C1065670 for ; Tue, 25 Sep 2012 14:00:31 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 172938FC15 for ; Tue, 25 Sep 2012 14:00:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PE0U34090587 for ; Tue, 25 Sep 2012 14:00:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PE0ULV090580; Tue, 25 Sep 2012 14:00:30 GMT (envelope-from gnats) Date: Tue, 25 Sep 2012 14:00:30 GMT Message-Id: <201209251400.q8PE0ULV090580@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "O. Hartmann" Cc: Subject: Re: ports/171019: [new port] science/isis3: USGS ISIS3 planetary mapping tool X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "O. Hartmann" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 14:00:31 -0000 The following reply was made to PR ports/171019; it has been noted by GNATS. From: "O. Hartmann" To: bug-followup@FreeBSD.org, ohartman@zedat.fu-berlin.de Cc: Subject: Re: ports/171019: [new port] science/isis3: USGS ISIS3 planetary mapping tool Date: Tue, 25 Sep 2012 15:51:59 +0200 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigD5C4A32F7C1F8E48DEB154A6 Content-Type: multipart/mixed; boundary="------------080904040108080205020100" This is a multi-part message in MIME format. --------------080904040108080205020100 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable Since the USGS does not provide a version scheme that is "port" friendly, the fact that version 3.4.1 of the ISIS3 suite is out was a bit a secret. Attached, I will provide a new port fileset created recently. there is still an issue using CLANG with devel/tnt which prevents the port to be built with CLANG 3.2 and 3.1 (see PR ports/171950). Most code portions compile with the new CLANg base compiler. --------------080904040108080205020100 Content-Type: text/plain; charset=us-ascii; name="isis3.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="isis3.txt" # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # isis3 # isis3/files # isis3/files/patch-make-isismake.apps # isis3/files/patch-make-isismake.macros # isis3/files/patch-src-docsys-Makefile # isis3/files/patch-src-base-objs-Affine-Affine.cpp # isis3/files/patch-src-base-objs-PrincipalComponentAnalysis-PrincipalCom= ponentAnalysis.cpp # isis3/files/patch-src-control-obj-BundleAdjust-BundleAdjust.h # isis3/files/patch-src-base-objs-ForstnerOpwerator-ForstnerOperator.cpp # isis3/files/patch-Makefile # isis3/files/patch-src-qisis-objs-RubberBandTool-RubberBandTool.cpp # isis3/files/config.freebsd # isis3/files/patch-src-base-apps-equalizer-equalizer.cpp # isis3/files/patch-src-base-objs-LeastSquares-LeastSquares.cpp # isis3/files/patch-src-base-objs-Matrix-Matrix.cpp # isis3/files/patch-config-Makefile # isis3/files/patch-src-base-objs-SpiceRotation-SpiceRotation.cpp # isis3/files/patch-src-base-objs-CollectorMap-CollectorMap.h # isis3/distinfo # isis3/pkg-descr # isis3/pkg-plist # isis3/Makefile # echo c - isis3 mkdir -p isis3 > /dev/null 2>&1 echo c - isis3/files mkdir -p isis3/files > /dev/null 2>&1 echo x - isis3/files/patch-make-isismake.apps sed 's/^X//' >isis3/files/patch-make-isismake.apps << 'a0f1dcc88aeed93c6d= 064020ddb5209c' X--- make/isismake.apps.orig 2011-08-25 17:33:46.000000000 +0200 X+++ make/isismake.apps 2012-02-03 01:21:09.000000000 +0100 X@@ -76,12 +76,12 @@ X $(CXX) $(ALLLIBDIRS) $(ISISLDFLAGS) $(ISISLDRPATH) -o $@ $(OBJS) $(ALL= LIBS) X=20 X .cpp.o: qtmoc X- $(CXX) $(ALLINCDIRS) $(ISISCPPFLAGS) $(CPPFLAGS) -c -o $@ $? X+ $(CXX) $(ALLINCDIRS) $(ISISCPPFLAGS) -c -o $@ $? X=20 X .c.o : X- $(CC) $(ALLINCDIRS) $(ISISCFLAGS) $(CFLAGS) -c -o $@ $? X+ $(CC) $(ALLINCDIRS) $(ISISCFLAGS) -c -o $@ $? X=20 X-.cc.o:=20 X+.cc.o: X $(CXX) $(ALLINCDIRS) $(ISISCPPFLAGS) -c -o $@ $? X=20 X .xml.html : a0f1dcc88aeed93c6d064020ddb5209c echo x - isis3/files/patch-make-isismake.macros sed 's/^X//' >isis3/files/patch-make-isismake.macros << '2308e02393c2e50b= 7ff94cfd4c877f29' X--- make/isismake.macros.orig 2012-08-15 03:57:46.000000000 +0200 X+++ make/isismake.macros 2012-09-25 01:00:29.000000000 +0200 X@@ -22,6 +22,10 @@ X HOST_PROC =3D unknown X endif X=20 X+ifeq ($(HOST_ARCH),FreeBSD) X+ include $(ISISROOT)/make/config.freebsd X+endif X+ X ifeq ($(HOST_ARCH),SunOS) X include $(ISISROOT)/make/config.solaris X endif X@@ -41,21 +45,22 @@ X #----------------------------------------------------------------------= ----- X # Set up some basic commands X #----------------------------------------------------------------------= ----- X-CXX ?=3D g++ X-CC ?=3D gcc X-LDSHARED ?=3D $(CXX) X-MOC ?=3D moc X+CXX ?=3D $(CXX) X+CC ?=3D $(CC) X+CPP ?=3D $(CPP) X+LDSHARED ?=3D $(CXX) -Wl,-E -shared X+MOC ?=3D $(MOC) X PROTOC ?=3D protoc X-UIC ?=3D uic X-XALAN ?=3D Xalan X-LS ?=3D /bin/ls X-RM ?=3D /bin/rm -f X-CP ?=3D /bin/cp X+UIC ?=3D $(UIC) X+XALAN ?=3D xalan-j -FLAVOR d2d=3DDOM X+LS ?=3D ls X+RM ?=3D rm -f X+CP ?=3D cp X LN ?=3D ln -s X-CAT ?=3D /bin/cat X-RANLIB ?=3D /usr/bin/true X+CAT ?=3D cat X+RANLIB ?=3D ranlib X MACHINE ?=3D uname X-DIFF ?=3D /usr/bin/diff X+DIFF ?=3D diff X GREP ?=3D grep X EVAL ?=3D eval X WHICH ?=3D which X@@ -65,10 +70,10 @@ X MV ?=3D mv X RSYNC ?=3D rsync X SED ?=3D sed X-DATE ?=3D /bin/date X-PRINTF ?=3D /usr/bin/printf X-ECHO ?=3D /bin/echo X-CUT ?=3D /usr/bin/cut X+DATE ?=3D date X+PRINTF ?=3D printf X+ECHO ?=3D echo X+CUT ?=3D cut X PATCHELF ?=3D patchelf X=20 X CURTIMESTAMP ?=3D "[`date +'%Y-%m-%d %H:%M:%S'`]" X@@ -85,8 +90,10 @@ X=20 X ifeq ($(HOST_ARCH),SunOS) X AWK ?=3D /usr/xpg4/bin/awk X+else ifeq ($(HOST_ARCH),FreeBSD) X+ AWK ?=3D gawk X else X- AWK ?=3D awk X+ AWK ?=3D awk X endif X=20 X ifeq ($(HOST_ARCH),Darwin) X@@ -95,16 +102,19 @@ X LATEX ?=3D /opt/local/bin/latex X else X DOXYGEN ?=3D doxygen X+ DOT_PATH ?=3D /usr/local/bin/ X LATEX ?=3D latex X endif X=20 X-# Set up Xalan's command-line option names. Some version of Xalan use d= ifferent X-# option names (e.g. Ubuntu's and Debian's Xalan). X-XALAN_VALIDATE_OPTION :=3D -v X-XALAN_OUTFILE_OPTION :=3D -o X-XALAN_PARAM_OPTION :=3D -p X-XALAN_INFILE_OPTION :=3D X-XALAN_XSL_OPTION :=3D X+#XALAN_VALIDATE_OPTION :=3D X+XALAN_OUTFILE_OPTION :=3D -OUT X+XALAN_PARAM_OPTION :=3D -PARAM X+XALAN_INFILE_OPTION :=3D -IN X+XALAN_XSL_OPTION :=3D -XSL X+ X+ifeq ($(HOST_ARCH),FreeBSD) X+ HOST_OS :=3D FreeBSD X+endif X=20 X # set up HOST_OS X testFile =3D $(wildcard /etc/SuSE-release) 2308e02393c2e50b7ff94cfd4c877f29 echo x - isis3/files/patch-src-docsys-Makefile sed 's/^X//' >isis3/files/patch-src-docsys-Makefile << 'bdca3f5d04f1158f9= bff0bf72a52f810' X--- src/docsys/Makefile.orig 2012-02-04 12:27:12.000000000 +0100 X+++ src/docsys/Makefile 2012-02-04 12:40:35.000000000 +0100 X@@ -76,7 +76,7 @@ X=20 X echo " [home page]" X #rsync -lHptr --delete --rsh=3Dssh --cvs-exclude *.html $(DOCDIR)/ X- $(XALAN) $(XALAN_VALIDATE_OPTION) $(XALAN_PARAM_OPTION) menuPath "'./'= " $(XALAN_OUTFILE_OPTION) $(DOCDIR)/index.html $(XALAN_INFILE_OPTION) bui= ld/homepage.xml $(XALAN_XSL_OPTION) build/main.xsl X+ #$(XALAN) $(XALAN_VALIDATE_OPTION) $(XALAN_PARAM_OPTION) menuPath "'./= '" $(XALAN_OUTFILE_OPTION) $(DOCDIR)/index.html $(XALAN_INFILE_OPTION) bu= ild/homepage.xml $(XALAN_XSL_OPTION) build/main.xsl X=20 X echo " Finished Updating Directories" X=20 bdca3f5d04f1158f9bff0bf72a52f810 echo x - isis3/files/patch-src-base-objs-Affine-Affine.cpp sed 's/^X//' >isis3/files/patch-src-base-objs-Affine-Affine.cpp << '43277= d2afbc00e477b4d0e5e08bcbee3' X--- src/base/objs/Affine/Affine.cpp.orig 2010-11-19 22:20:35.168686503 += 0100 X+++ src/base/objs/Affine/Affine.cpp 2010-11-19 22:20:35.169688574 +0100 X@@ -23,7 +23,12 @@ X #include X #include X #include X+ X+#ifdef __FreeBSD__=20 X+#include "tnt/jama_svd.h" X+#else X #include "jama/jama_svd.h" X+#endif X=20 X #include "Affine.h" X #include "PolynomialBivariate.h" 43277d2afbc00e477b4d0e5e08bcbee3 echo x - isis3/files/patch-src-base-objs-PrincipalComponentAnalysis-Princ= ipalComponentAnalysis.cpp sed 's/^X//' >isis3/files/patch-src-base-objs-PrincipalComponentAnalysis-= PrincipalComponentAnalysis.cpp << 'f016f33a7b428c6558ae9fe3a5f04a15' X--- src/base/objs/PrincipalComponentAnalysis/PrincipalComponentAnalysis.= cpp.orig 2010-11-19 22:20:44.224827970 +0100 X+++ src/base/objs/PrincipalComponentAnalysis/PrincipalComponentAnalysis.= cpp 2010-11-19 22:20:44.224827970 +0100 X@@ -21,8 +21,14 @@ X */ X=20 X #include "PrincipalComponentAnalysis.h" X+ X+#ifdef __FreeBSD__=20 X+#include "tnt/jama_eig.h" X+#include "tnt/jama_lu.h" X+#else X #include "jama/jama_eig.h" X #include "jama/jama_lu.h" X+#endif X=20 X using namespace std; X=20 f016f33a7b428c6558ae9fe3a5f04a15 echo x - isis3/files/patch-src-control-obj-BundleAdjust-BundleAdjust.h sed 's/^X//' >isis3/files/patch-src-control-obj-BundleAdjust-BundleAdjust= =2Eh << 'ecb128cbca3d8dfc11a935c920814e35' X--- ./src/control/objs/BundleAdjust/BundleAdjust.h.orig 2011-11-11 20:55= :31.000000000 +0100 X+++ ./src/control/objs/BundleAdjust/BundleAdjust.h 2011-11-11 20:56:35.0= 00000000 +0100 X@@ -113,8 +113,13 @@ X #include "ControlMeasure.h" X #include "SparseBlockMatrix.h" X=20 X+#ifdef __FreeBSD__ X+#include X+#include X+#else X #include X #include X+#endif X=20 X template< typename T > class QList; X template< typename A, typename B > class QMap; ecb128cbca3d8dfc11a935c920814e35 echo x - isis3/files/patch-src-base-objs-ForstnerOpwerator-ForstnerOperat= or.cpp sed 's/^X//' >isis3/files/patch-src-base-objs-ForstnerOpwerator-ForstnerO= perator.cpp << '051779319e4af9201446b7f725e53090' X--- ./src/base/objs/ForstnerOperator/ForstnerOperator.cpp.orig 2010-11-0= 5 22:39:33.540435075 +0100 X+++ ./src/base/objs/ForstnerOperator/ForstnerOperator.cpp 2010-11-05 22:= 41:25.389989047 +0100 X@@ -2,7 +2,12 @@ X #include "Chip.h" X #include "FourierTransform.h" X #include "tnt/tnt_array2d.h" X+ X+#ifdef __FreeBSD__ X+#include "tnt/jama_lu.h" X+#else X #include "jama/jama_lu.h" X+#endif X #include X=20 X namespace Isis { 051779319e4af9201446b7f725e53090 echo x - isis3/files/patch-Makefile sed 's/^X//' >isis3/files/patch-Makefile << '6f7335794407f704cdf8deb79463= 7188' X--- Makefile.orig 2012-06-25 23:08:55.000000000 +0200 X+++ Makefile 2012-06-25 23:10:05.000000000 +0200 X@@ -37,7 +37,7 @@ X # After the API is created then the applications can be individually bu= ilt X # and installed. Finally create the web documentation for the entire sy= stem. X #----------------------------------------------------------------------= ------ X-all: config incs thirdParty api apps docs X+all: config incs api apps docs X=20 X #----------------------------------------------------------------------= ------ X # Target =3D config 6f7335794407f704cdf8deb794637188 echo x - isis3/files/patch-src-qisis-objs-RubberBandTool-RubberBandTool.c= pp sed 's/^X//' >isis3/files/patch-src-qisis-objs-RubberBandTool-RubberBandT= ool.cpp << '67f64b0cff17e95944f63991dfb9fa9a' X--- src/qisis/objs/RubberBandTool/RubberBandTool.cpp.orig 2011-09-20 21:= 42:25.000000000 +0200 X+++ src/qisis/objs/RubberBandTool/RubberBandTool.cpp 2012-01-30 22:43:51= =2E000000000 +0100 X@@ -2,6 +2,10 @@ X=20 X #include X=20 X+#ifdef __FreeBSD__ X+#include X+#endif X+ X #include X #include X #include 67f64b0cff17e95944f63991dfb9fa9a echo x - isis3/files/config.freebsd sed 's/^X//' >isis3/files/config.freebsd << 'ef5ccb07cd7b4adb9d25495aa243= 6e7a' X#-----------------------------------------------------------------------= ---- X# Compiler options, derived from config.linux-x86_64 X# CPP flags are CXX flags, but the USGS sources use CPP. X# If used within the ports repository framework, $(CXXFLAGS) X# should already be set properly. X# X# O. Hartmann (2010, 2011, 2012) X# X# ISIS 3.4.0 X#-----------------------------------------------------------------------= ---- X XISISCPPFLAGS=3D $(CXXFLAGS) XISISCPPFLAGS+=3D $(CPPFLAGS) XISISCPPFLAGS+=3D -ansi X#ISISCPPFLAGS+=3D -Wall XISISCPPFLAGS+=3D -w XISISCPPFLAGS+=3D -m64 XISISCPPFLAGS+=3D -fPIC XISISCPPFLAGS+=3D -DISIS_LITTLE_ENDIAN=3D1 XISISCPPFLAGS+=3D -DGMM_USES_SUPERLU X X X# Enable (1) or disable (0) usage of KAKADU X# Kakadu is a licens protected library! XISISCPPFLAGS +=3D -DENABLEJP2K=3D0 X Xifeq ($(findstring DEBUG, $(MODE)),DEBUG) X ISISCPPFLAGS +=3D -g=20 X ISISCPPFLAGS +=3D -O0 X ISISCPPFLAGS +=3D -DDEBUG X ISISCPPFLAGS +=3D -W X ifeq ($(findstring CWD, $(MODE)),CWD) X ISISCPPFLAGS +=3D -DCWDEBUG -DLIBCWD_THREAD_SAFE -D_REENTRANT X ifeq (,$(findstring MEMCHECK, $(MODE))) X ISISCPPFLAGS +=3D -DNOMEMCHECK X endif X endif Xelse X #ISISCPPFLAGS +=3D -O0 -g X ISISCPPFLAGS+=3D Xendif X XISISCFLAGS=3D $(CFLAGS) XISISCFLAGS=3D $(CPPFLAGS) XISISCFLAGS+=3D -ansi XISISCFLAGS+=3D -fPIC XISISCFLAGS+=3D -m64 X X#-----------------------------------------------------------------------= ---- X# Linker options X# Runtime paths for FreeBSD are rooted to $ISISROOT. X# $(LDFLAGS) should be already set with proper linker options X# by the ports repository framework. Not properly checked yet. X# X#-----------------------------------------------------------------------= ---- X#RANLIB =3D /usr/bin/ranlib XRANLIB=3D /usr/bin/true XSHAREDLIBEXT=3D so X XISISLDFLAGS =3D $(LDFLAGS) XISISLDFLAGS +=3D -L. -L.. -L/usr/local/lib X# XISISLDRPATH +=3D -Wl,-rpath,$(ISISROOT)/lib X# XISISSYSLIBS +=3D -lz -pthread X# XISISSTATIC =3D -Wl,-Bstatic XISISDYNAMIC =3D -Wl,-Bdynamic X Xifeq ($(findstring DEBUG, $(MODE)),DEBUG) X ifeq ($(findstring CWD, $(MODE)),CWD) X ISISSYSLIBS +=3D -lcwd_r -pthread X endif Xendif X X#-----------------------------------------------------------------------= ---- X# Shared library options X#-----------------------------------------------------------------------= ---- XISISSHAREDFLAGS =3D $(ISISLDFLAGS) -shared XISISSHAREDON =3D -Wl,-whole-archive=20 XISISSHAREDOFF =3D -Wl,-no-whole-archive XISISARFLAGS =3D X X#-----------------------------------------------------------------------= ---- X# Set up local library designations X#-----------------------------------------------------------------------= ---- XISIS3LOCAL ?=3D $(LOCALBASE) XISIS3SYSINC ?=3D $(ISIS3LOCAL)/include XISIS3SYSLIB ?=3D $(ISIS3LOCAL)/lib XISIS3CONTRIB ?=3D=20 X X#-----------------------------------------------------------------------= ---- X# Set up for cwd X#-----------------------------------------------------------------------= ---- XCWDINCDIR =3D -D_THREAD_SAFE -pthread -I$(ISIS3LOCAL)/include/libcwd XCWDLIBDIR =3D -L$(ISIS3LOCAL)/lib XCWDLIB =3D -lcwd X X X#-----------------------------------------------------------------------= ---- X# Set up for Qt on FreeBSD platform. X# Make environment and settings of CPPFLAGS are done via the ports X# framework. X#-----------------------------------------------------------------------= ---- XQTFLAGS +=3D $(QTCPPFLAGS) -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED X# XQTDIR =3D $(QT_PREFIX) X# XQTINCDIR=3D -I$(QMAKESPEC) XQTINCDIR+=3D -I$(QT_INCDIR)/Qt XQTINCDIR+=3D -I$(QT_INCDIR)/QtCore XQTINCDIR+=3D -I$(QT_INCDIR)/QtAssistant XQTINCDIR+=3D -I$(QT_INCDIR)/QtGui XQTINCDIR+=3D -I$(QT_INCDIR)/QtNetwork XQTINCDIR+=3D -I$(QT_INCDIR)/QtOpenGL XQTINCDIR+=3D -I$(QT_INCDIR)/QtScript XQTINCDIR+=3D -I$(QT_INCDIR)/QtScriptTools XQTINCDIR+=3D -I$(QT_INCDIR)/QtSql XQTINCDIR+=3D -I$(QT_INCDIR)/QtSvg XQTINCDIR+=3D -I$(QT_INCDIR)/QtTest XQTINCDIR+=3D -I$(QT_INCDIR)/QtWebKit XQTINCDIR+=3D -I$(QT_INCDIR)/QtXml XQTINCDIR+=3D -I$(QT_INCDIR)/QtXmlPatterns X X#QTINCDIR +=3D -I$(ISIS3LOCAL)/share/qt4/mkspecs/default X#QTINCDIR +=3D -I$(ISIS3LOCAL)/include/qt4 X X# X# Set by toplevel port's Makefile X# XQTLIBDIR =3D -L$(QT_LIBDIR) X# X#QTLIB =3D $(QTCFGLIBS) XQTLIB =3D $(QTCFGLIBS) -lQtXmlPatterns -lQtXml -lQtNetwork -l= QtSql -lQtGui -lQtCore -lQtSvg -lQtTest -lQtOpenGL -lQtWebKit X# XQTOPENGL =3D -lOpenGL -lAGL X# X#-----------------------------------------------------------------------= ---- X# Setup Qt4 moc compiler: should be provided by the ENV X#-----------------------------------------------------------------------= ---- X#MOC =3D $(ISIS3LOCAL)/bin/moc-qt4 XMOCDEFINES +=3D $(QTFLAGS) XMOCDEFINES +=3D $(QTINCDIR) X X#-----------------------------------------------------------------------= ---- X# Setup Qt4 uic compiler: should be provided by the ENV X#-----------------------------------------------------------------------= ---- X#UIC =3D $(ISIS3LOCAL)/bin/uic-qt4 XUICDEFINES +=3D $(QTCPPFLAGS) XUICDEFINES +=3D $(QTINCDIR) X X X#-----------------------------------------------------------------------= ---- X# Setup Qt4 qmake=20 X#-----------------------------------------------------------------------= ---- X#QMAKE =3D $(ISIS3LOCAL)/bin/qmake-qt4 X X#-----------------------------------------------------------------------= ---- X# Setup Qt4 rcc compiler X#-----------------------------------------------------------------------= ---- X#RCC =3D $(ISIS3LOCAL)/bin/rcc X X#-----------------------------------------------------------------------= ---- X# Set up for Qwt X#-----------------------------------------------------------------------= ---- XQWTINCDIR =3D -D_THREAD_SAFE -pthread -I$(ISIS3LOCAL)/include/qwt6 XQWTLIBDIR =3D -L$(ISIS3LOCAL)/lib XQWTLIB =3D -lqwt6 X X#-----------------------------------------------------------------------= ---- X# Set up for Xerces=20 X#-----------------------------------------------------------------------= ---- XXERCESINCDIR =3D `pkg-config --cflags xerces-c` XXERCESLIBDIR =3D `pkg-config --libs-only-L xerces-c` XXERCESLIB =3D `pkg-config --libs-only-l xerces-c` X X#-----------------------------------------------------------------------= ---- X# Set up for Tiff X#-----------------------------------------------------------------------= ---- XTIFFINCDIR =3D -I$(ISIS3LOCAL)/include XTIFFLIBDIR =3D -L$(ISIS3LOCAL)/lib XTIFFLIB =3D -ltiff X X#-----------------------------------------------------------------------= ---- X# Set up for naif X# This is a FreeBSD specific setting of a specific port X# not published yet. X#-----------------------------------------------------------------------= ---- XNAIFINCDIR =3D -I$(ISIS3LOCAL)/include/naif XNAIFLIBDIR =3D -L$(ISIS3LOCAL)/lib/ XNAIFLIB =3D -lcspice X X#-----------------------------------------------------------------------= ---- X# Set up for TNT X#-----------------------------------------------------------------------= ---- XTNTINCDIR =3D -I$(ISIS3LOCAL)/include/tnt XTNTLIBDIR =3D XTNTLIB =3D=20 X X#-----------------------------------------------------------------------= ---- X# Set up for JAMA X#-----------------------------------------------------------------------= ---- XJAMAINCDIR =3D $(TNTINCDIR) XJAMALIBDIR =3D $(TNTLIBDIR) XJAMALIB =3D $(TNTLIB)=20 X X#-----------------------------------------------------------------------= ---- X# Set up for GEOS X#-----------------------------------------------------------------------= ---- XGEOSINCDIR =3D -D_THREAD_SAFE -pthread -I$(ISIS3LOCAL)/include/geos XGEOSLIBDIR =3D -L$(ISIS3LOCAL)/lib XGEOSLIB =3D -lgeos X X#-----------------------------------------------------------------------= ---- X# Set up for the GNU Scientific Library (GSL). Note that this setup X# suppports include patterns such as . With this X# format, any other include spec that points to the general include X# directory, such as GEOS, will suffice. Therefore, an explicit X# include directive is ommitted but provided as an empty reference X# in cases where it may be located elsewhere. This also goes for the X# library reference. X#-----------------------------------------------------------------------= ---- XGSLINCDIR =3D -D_THREAD_SAFE -pthread -I$(ISIS3LOCAL)/include/gsl XGSLLIBDIR =3D -L$(ISIS3LOCAL)/lib XGSLLIB =3D -lgsl -lgslcblas X X#-----------------------------------------------------------------------= ---- X# Set up for X11 X#-----------------------------------------------------------------------= ---- XX11INCDIR =3D XX11LIBDIR =3D XX11LIB =3D -lX11 X X#-----------------------------------------------------------------------= ---- X# Set up for GMM X#-----------------------------------------------------------------------= ---- XGMMINCDIR =3D -D_THREAD_SAFE -I$(ISIS3LOCAL)/include XGMMLIBDIR =3D XGMMLIB =3D=20 X X#-----------------------------------------------------------------------= ---- X# Set up for SuperLU X#-----------------------------------------------------------------------= ---- XSUPERLUINCDIR =3D -D_THREAD_SAFE -pthread -I$(ISIS3LOCAL)/include/super= lu XSUPERLULIBDIR =3D -L$(ISIS3LOCAL)/lib XSUPERLULIB =3D -lsuperlu -lblas X X#-----------------------------------------------------------------------= ---- X# Set up for Google Protocol Buffers (ProtoBuf) X#-----------------------------------------------------------------------= ---- XPROTOBUFINCDIR =3D `pkg-config --cflags protobuf` XPROTOBUFLIBDIR =3D `pkg-config --libs-only-L protobuf` XPROTOBUFLIB =3D `pkg-config --libs-only-l protobuf` X X#-----------------------------------------------------------------------= ---- X# Set up for kakadu X# The Kakadu library is proprietary. The source files cannot be distribu= ted X# with ISIS3. If you need to rebuild ISIS3 on your system, then you will= X# need to modify the lines below that pertain to the location of the X# header files and library on your system. The compilation flag, ENABLEJ= P2K, X# should be set to true if you are building with the Kakadu library and X# you want to use the JPEG2000 specific code in the ISIS3 system. Otherw= ise, X# set the ENABLEJP2K flag to false. X#-----------------------------------------------------------------------= ---- Xifdef DENABLEJP2K Xifeq $( $HOST_ARCH, FreeBSD ) XKAKADUINCDIR =3D -I$(ISIS3LOCAL)/include/ XKAKADULIBDIR =3D -L$(ISIS3LOCAL)/lib XKAKADULIB =3D -lopenjpeg -llibecwj2 Xelse XKAKADUINCDIR =3D -I$(ISIS3LOCAL)/include/kakadu/ XKAKADULIBDIR =3D -L$(ISIS3LOCAL)/lib XKAKADULIB =3D -lkdu_a63R Xendif Xelse XKAKADUINCDIR =3D -I$(ISIS3LOCAL)/include/kakadu/ XKAKADULIBDIR =3D -L$(ISIS3LOCAL)/lib XKAKADULIB =3D Xendif X X#-----------------------------------------------------------------------= ---- X# Set up for BOOST X#-----------------------------------------------------------------------= ---- XBOOSTINCDIR =3D -D_THREAD_SAFE -pthread -I$(ISIS3LOCAL)/include/boost/ XBOOSTLIBDIR =3D XBOOSTLIB =3D X#BOOSTLIBDIR =3D -L$(ISIS3LOCAL)/lib X#BOOSTLIB =3D -lboost_date_time -lboost_filesystem -lboost_graph -lb= oost_math_c99f \ X# -lboost_math_c99l -lboost_math_c99 -lboost_math_tr1f -lb= oost_math_tr1l \ X# -lboost_math_tr1 -lboost_prg_exec_monitor -lboost_progra= m_options \ X# -lboost_regex -lboost_serialization -lboost_signals -lbo= ost_system \ X# -lboost_thread -lboost_unit_test_framework -lboost_wave = -lboost_wserialization X X#-----------------------------------------------------------------------= ---- X# Set up for Cholmod libraries=20 X#-----------------------------------------------------------------------= ---- XCHOLMODINCDIR =3D -D_THREAD_SAFE -pthread -I$(ISIS3LOCAL)/include XCHOLMODLIBDIR =3D -L$(ISIS3LOCAL)/lib XCHOLMODLIB =3D -lcholmod -lamd -lcolamd -llapack ef5ccb07cd7b4adb9d25495aa2436e7a echo x - isis3/files/patch-src-base-apps-equalizer-equalizer.cpp sed 's/^X//' >isis3/files/patch-src-base-apps-equalizer-equalizer.cpp << = '70972c341f22baadebb1285f3388011b' X--- src/base/apps/equalizer/equalizer.cpp.orig 2011-11-09 19:16:35.00000= 0000 +0100 X+++ src/base/apps/equalizer/equalizer.cpp 2011-11-09 19:17:22.000000000 = +0100 X@@ -2,7 +2,11 @@ X=20 X #include X=20 X+#ifdef __FreeBSD__ X+#include "tnt/jama_svd.h" X+#else X #include "jama/jama_svd.h" X+#endif X #include "tnt/tnt_array2d.h" X=20 X #include "CubeAttribute.h" 70972c341f22baadebb1285f3388011b echo x - isis3/files/patch-src-base-objs-LeastSquares-LeastSquares.cpp sed 's/^X//' >isis3/files/patch-src-base-objs-LeastSquares-LeastSquares.c= pp << '00c53ae950a49487ec911bbc7fca8489' X--- ./src/base/objs/LeastSquares/LeastSquares.cpp.orig 2011-03-26 23:39:= 56.000000000 +0100 X+++ ./src/base/objs/LeastSquares/LeastSquares.cpp 2012-01-30 22:39:17.00= 0000000 +0100 X@@ -20,8 +20,13 @@ X * http://isis.astrogeology.usgs.gov, and the USGS privacy and discla= imers on X * http://www.usgs.gov/privacy.html. X */ X+#if defined(__FreeBSD__) X+#include "tnt/jama_svd.h" X+#include "tnt/jama_qr.h" X+#else X #include "jama/jama_svd.h" X #include "jama/jama_qr.h" X+#endif X=20 X #if !defined(__sun__) X #include "gmm/gmm_superlu_interface.h" 00c53ae950a49487ec911bbc7fca8489 echo x - isis3/files/patch-src-base-objs-Matrix-Matrix.cpp sed 's/^X//' >isis3/files/patch-src-base-objs-Matrix-Matrix.cpp << '7c80a= 8b7ea27e5a7ce0fbce6275c8bf0' X--- src/base/objs/Matrix/Matrix.cpp.orig 2010-07-03 03:34:37.000000000 += 0200 X+++ src/base/objs/Matrix/Matrix.cpp 2012-01-30 22:57:07.000000000 +0100 X@@ -23,9 +23,16 @@ X #include X #include X #include X+ X+#ifdef __FreeBSD__ X+#include "tnt/jama_svd.h" X+#include "tnt/jama_eig.h" X+#include "tnt/jama_lu.h" X+#else X #include "jama/jama_svd.h" X #include "jama/jama_eig.h" X #include "jama/jama_lu.h" X+#endif X=20 X #include "Matrix.h" X #include "iException.h" 7c80a8b7ea27e5a7ce0fbce6275c8bf0 echo x - isis3/files/patch-config-Makefile sed 's/^X//' >isis3/files/patch-config-Makefile << 'b4b92d5a202b51a7789eb= 31e93d892d8' X--- config/Makefile.orig 2012-06-16 18:04:26.000000000 +0200 X+++ config/Makefile 2012-06-16 18:15:23.000000000 +0200 X@@ -8,18 +8,19 @@ X=20 X ####### Compiler, tools and options X=20 X-CC =3D gcc X-CXX =3D g++ X+CC ?=3D clang X+CXX ?=3D clang++ X DEFINES =3D -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED X-CFLAGS =3D -m64 -pipe -O2 -Wall -W -D_REENTRANT $(DEFINES) X-CXXFLAGS =3D -m64 -pipe -O2 -Wall -W -D_REENTRANT $(DEFINES) X-INCPATH =3D -I../../../local/v002/mkspecs/default -I. -I../../../= local/v002/include/qt/qt4.8.0/QtCore -I../../../local/v002/include/qt/qt4= =2E8.0/QtGui -I../../../local/v002/include/qt/qt4.8.0 -I. X-LINK =3D g++ X-LFLAGS =3D -m64 -Wl,-O1 -Wl,-rpath,/usgs/pkgs/local/v002/lib X-LIBS =3D $(SUBLIBS) -L/usgs/pkgs/local/v002//lib -lQtGui -L/u= sgs/pkgs/local/v002//lib -L/usr/X11R6/lib64 -lQtCore -lpthread=20 X+CFLAGS +=3D -Wall -W -D_REENTRANT $(DEFINES) X+CXXFLAGS +=3D -Wall -W -D_REENTRANT $(DEFINES) X+#INCPATH =3D -I../../../local/v002/mkspecs/default -I. -I../../..= /local/v002/include/qt/qt4.8.0/QtCore -I../../../local/v002/include/qt/qt= 4.8.0/QtGui -I../../../local/v002/include/qt/qt4.8.0 -I. X+INCPATH ?=3D ${CPPFLAGS} -I. X+LINK ?=3D clang++ X+LFLAGS =3D ${LDFLAGS} X+LIBS =3D $(SUBLIBS) -lQtGui -lQtCore -lpthread=20 X AR =3D ar cqs X RANLIB =3D=20 X-QMAKE =3D /usgs/pkgs/local/v002/bin/qmake X+QMAKE =3D qmake-qt4 X TAR =3D tar -cf X COMPRESS =3D gzip -9f X COPY =3D cp -f X@@ -45,31 +46,7 @@ X=20 X SOURCES =3D =20 X OBJECTS =3D=20 X-DIST =3D ../../../local/v002/mkspecs/common/unix.conf \ X- ../../../local/v002/mkspecs/common/linux.conf \ X- ../../../local/v002/mkspecs/common/gcc-base.conf \ X- ../../../local/v002/mkspecs/common/gcc-base-unix.conf \ X- ../../../local/v002/mkspecs/common/g++-base.conf \ X- ../../../local/v002/mkspecs/common/g++-unix.conf \ X- ../../../local/v002/mkspecs/qconfig.pri \ X- ../../../local/v002/mkspecs/modules/qt_webkit_version.pri \ X- ../../../local/v002/mkspecs/features/qt_functions.prf \ X- ../../../local/v002/mkspecs/features/qt_config.prf \ X- ../../../local/v002/mkspecs/features/exclusive_builds.prf \ X- ../../../local/v002/mkspecs/features/default_pre.prf \ X- ../../../local/v002/mkspecs/features/release.prf \ X- ../../../local/v002/mkspecs/features/default_post.prf \ X- ../../../local/v002/mkspecs/features/unix/gdb_dwarf_index.prf \ X- ../../../local/v002/mkspecs/features/warn_on.prf \ X- ../../../local/v002/mkspecs/features/qt.prf \ X- ../../../local/v002/mkspecs/features/unix/thread.prf \ X- ../../../local/v002/mkspecs/features/moc.prf \ X- ../../../local/v002/mkspecs/features/resources.prf \ X- ../../../local/v002/mkspecs/features/uic.prf \ X- ../../../local/v002/mkspecs/features/yacc.prf \ X- ../../../local/v002/mkspecs/features/lex.prf \ X- ../../../local/v002/mkspecs/features/include_source_dir.prf \ X- config.pro X+DIST =3D config.pro X QMAKE_TARGET =3D isis.conf X DESTDIR =3D $(ISISROOT)/make/ X TARGET =3D $(ISISROOT)/make/isis.conf X@@ -102,59 +79,10 @@ X @$(CHK_DIR_EXISTS) $(ISISROOT)/make/ || $(MKDIR) $(ISISROOT)/make/=20 X $(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS) X=20 X-Makefile: config.pro ../../../local/v002/mkspecs/default/qmake.conf ..= /../../local/v002/mkspecs/common/unix.conf \ X- ../../../local/v002/mkspecs/common/linux.conf \ X- ../../../local/v002/mkspecs/common/gcc-base.conf \ X- ../../../local/v002/mkspecs/common/gcc-base-unix.conf \ X- ../../../local/v002/mkspecs/common/g++-base.conf \ X- ../../../local/v002/mkspecs/common/g++-unix.conf \ X- ../../../local/v002/mkspecs/qconfig.pri \ X- ../../../local/v002/mkspecs/modules/qt_webkit_version.pri \ X- ../../../local/v002/mkspecs/features/qt_functions.prf \ X- ../../../local/v002/mkspecs/features/qt_config.prf \ X- ../../../local/v002/mkspecs/features/exclusive_builds.prf \ X- ../../../local/v002/mkspecs/features/default_pre.prf \ X- ../../../local/v002/mkspecs/features/release.prf \ X- ../../../local/v002/mkspecs/features/default_post.prf \ X- ../../../local/v002/mkspecs/features/unix/gdb_dwarf_index.prf \ X- ../../../local/v002/mkspecs/features/warn_on.prf \ X- ../../../local/v002/mkspecs/features/qt.prf \ X- ../../../local/v002/mkspecs/features/unix/thread.prf \ X- ../../../local/v002/mkspecs/features/moc.prf \ X- ../../../local/v002/mkspecs/features/resources.prf \ X- ../../../local/v002/mkspecs/features/uic.prf \ X- ../../../local/v002/mkspecs/features/yacc.prf \ X- ../../../local/v002/mkspecs/features/lex.prf \ X- ../../../local/v002/mkspecs/features/include_source_dir.prf \ X- /usgs/pkgs/local/v002/lib/libQtGui.prl \ X- /usgs/pkgs/local/v002/lib/libQtCore.prl X+Makefile: config.pro X+ =09 X $(QMAKE) -o Makefile config.pro X-../../../local/v002/mkspecs/common/unix.conf: X-../../../local/v002/mkspecs/common/linux.conf: X-../../../local/v002/mkspecs/common/gcc-base.conf: X-../../../local/v002/mkspecs/common/gcc-base-unix.conf: X-../../../local/v002/mkspecs/common/g++-base.conf: X-../../../local/v002/mkspecs/common/g++-unix.conf: X-../../../local/v002/mkspecs/qconfig.pri: X-../../../local/v002/mkspecs/modules/qt_webkit_version.pri: X-../../../local/v002/mkspecs/features/qt_functions.prf: X-../../../local/v002/mkspecs/features/qt_config.prf: X-../../../local/v002/mkspecs/features/exclusive_builds.prf: X-../../../local/v002/mkspecs/features/default_pre.prf: X-../../../local/v002/mkspecs/features/release.prf: X-../../../local/v002/mkspecs/features/default_post.prf: X-../../../local/v002/mkspecs/features/unix/gdb_dwarf_index.prf: X-../../../local/v002/mkspecs/features/warn_on.prf: X-../../../local/v002/mkspecs/features/qt.prf: X-../../../local/v002/mkspecs/features/unix/thread.prf: X-../../../local/v002/mkspecs/features/moc.prf: X-../../../local/v002/mkspecs/features/resources.prf: X-../../../local/v002/mkspecs/features/uic.prf: X-../../../local/v002/mkspecs/features/yacc.prf: X-../../../local/v002/mkspecs/features/lex.prf: X-../../../local/v002/mkspecs/features/include_source_dir.prf: X-/usgs/pkgs/local/v002/lib/libQtGui.prl: X-/usgs/pkgs/local/v002/lib/libQtCore.prl: X+ X qmake: FORCE X @$(QMAKE) -o Makefile config.pro X=20 b4b92d5a202b51a7789eb31e93d892d8 echo x - isis3/files/patch-src-base-objs-SpiceRotation-SpiceRotation.cpp sed 's/^X//' >isis3/files/patch-src-base-objs-SpiceRotation-SpiceRotation= =2Ecpp << 'b69f20bf8d8a5620558fd2a1c9399bd5' X--- ./src/base/objs/SpiceRotation/SpiceRotation.cpp.orig 2012-09-24 21:5= 7:17.000000000 +0200 X+++ ./src/base/objs/SpiceRotation/SpiceRotation.cpp 2012-09-24 21:57:50.= 000000000 +0200 X@@ -586,12 +586,12 @@ X if (p_source =3D=3D PolyFunctionOverSpice) { X LineCache(tableName); X=20 X- std::cout << "Full cache size is " << p_cache.size() << endl; X+ std::cout << "Full cache size is " << p_cache.size() << std::endl= ; X=20 X p_minimizeCache =3D Yes; X LoadTimeCache(); X=20 X- std::cout << "Minimized cache size is " << p_cache.size() << endl= ; X+ std::cout << "Minimized cache size is " << p_cache.size() << std:= :endl; X } X=20 X // Load the list of rotations and their corresponding times b69f20bf8d8a5620558fd2a1c9399bd5 echo x - isis3/files/patch-src-base-objs-CollectorMap-CollectorMap.h sed 's/^X//' >isis3/files/patch-src-base-objs-CollectorMap-CollectorMap.h= << 'c16aa2167753032ff749aa54dfd7f403' X--- ./src/base/objs/CollectorMap/CollectorMap.h.orig 2012-09-25 01:32:30= =2E000000000 +0200 X+++ ./src/base/objs/CollectorMap/CollectorMap.h 2012-09-25 01:36:09.0000= 00000 +0200 X@@ -696,7 +696,7 @@ X=20 X CollectorIter Itr2 =3D _list.upper_bound(key); X while(Itr1 !=3D Itr2) { X- destroy(&Itr1->second); X+ this->destroy(&Itr1->second); X ++Itr1; X } X return (_list.erase(key)); X@@ -753,7 +753,7 @@ X void selfDestruct() { X CollectorIter itr; X for(itr =3D _list.begin() ; itr !=3D _list.end() ; itr++) { X- destroy(&itr->second); X+ this->destroy(&itr->second); X } X _list.clear(); X } c16aa2167753032ff749aa54dfd7f403 echo x - isis3/distinfo sed 's/^X//' >isis3/distinfo << 'a088da048508577e5eeb49b32d1c8af5' XSHA256 (isis3-3.4.1.tar.gz) =3D 773e7bc22ad1d716f581f4eac4a14c645c472242= d89ab6d1241be78df7aa780e XSIZE (isis3-3.4.1.tar.gz) =3D 171494570 a088da048508577e5eeb49b32d1c8af5 echo x - isis3/pkg-descr sed 's/^X//' >isis3/pkg-descr << 'a55f3cf3fe7966bde184bb2a483f0e22' XISIS3 - Integrated Software for Imagers and Spectrometers Version 3 X XIsis, an image processing software package. The focus of the software=20 Xis to manipulate imagery collected by current and past NASA planetary=20 Xmissions sent to Mars, Jupiter, Saturn, and other solar system bodies. XFor more information on the software see Xhttp://isis.astrogeology.usgs.gov X a55f3cf3fe7966bde184bb2a483f0e22 echo x - isis3/pkg-plist sed 's/^X//' >isis3/pkg-plist << '65b134f0d82fc23433717f57e8aa4397' Xisis/3.4.1/IsisPreferences Xisis/3.4.1/bin/algebra Xisis/3.4.1/bin/apollo2isis Xisis/3.4.1/bin/apollocal Xisis/3.4.1/bin/apollofindrx Xisis/3.4.1/bin/apollopaninit Xisis/3.4.1/bin/apollopanstitcher Xisis/3.4.1/bin/apolloremrx Xisis/3.4.1/bin/apollowarp Xisis/3.4.1/bin/appjit Xisis/3.4.1/bin/ascii2isis Xisis/3.4.1/bin/automos Xisis/3.4.1/bin/autoregtemplate Xisis/3.4.1/bin/autoseed Xisis/3.4.1/bin/bandnorm Xisis/3.4.1/bin/bandtrim Xisis/3.4.1/bin/bit2bit Xisis/3.4.1/bin/blend Xisis/3.4.1/bin/blobdump Xisis/3.4.1/bin/butterworth Xisis/3.4.1/bin/cam2cam Xisis/3.4.1/bin/cam2map Xisis/3.4.1/bin/caminfo Xisis/3.4.1/bin/campt Xisis/3.4.1/bin/camrange Xisis/3.4.1/bin/camstats Xisis/3.4.1/bin/camtrim Xisis/3.4.1/bin/cathist Xisis/3.4.1/bin/catlab Xisis/3.4.1/bin/catoriglab Xisis/3.4.1/bin/circle Xisis/3.4.1/bin/ciss2isis Xisis/3.4.1/bin/cisscal Xisis/3.4.1/bin/ckwriter Xisis/3.4.1/bin/clem2isis Xisis/3.4.1/bin/clemhirescal Xisis/3.4.1/bin/clemnircal Xisis/3.4.1/bin/clemnirclean Xisis/3.4.1/bin/clemnirnoise Xisis/3.4.1/bin/clemuvviscal Xisis/3.4.1/bin/cnet2mat Xisis/3.4.1/bin/cnetadd Xisis/3.4.1/bin/cnetbin2pvl Xisis/3.4.1/bin/cnetcheck Xisis/3.4.1/bin/cnetdiff Xisis/3.4.1/bin/cnetedit Xisis/3.4.1/bin/cneteditor Xisis/3.4.1/bin/cnetextract Xisis/3.4.1/bin/cnethist Xisis/3.4.1/bin/cnetmerge Xisis/3.4.1/bin/cnetnewradii Xisis/3.4.1/bin/cnetpvl2bin Xisis/3.4.1/bin/cnetref Xisis/3.4.1/bin/cnetsplit Xisis/3.4.1/bin/cnetstats Xisis/3.4.1/bin/cnettable Xisis/3.4.1/bin/cnetwinnow Xisis/3.4.1/bin/copylabel Xisis/3.4.1/bin/coreg Xisis/3.4.1/bin/cosi Xisis/3.4.1/bin/crism2isis Xisis/3.4.1/bin/crop Xisis/3.4.1/bin/cropspecial Xisis/3.4.1/bin/csspckgen Xisis/3.4.1/bin/ctxcal Xisis/3.4.1/bin/ctxevenodd Xisis/3.4.1/bin/cubeatt Xisis/3.4.1/bin/cubeavg Xisis/3.4.1/bin/cubediff Xisis/3.4.1/bin/cubefunc Xisis/3.4.1/bin/cubeit Xisis/3.4.1/bin/cubenorm Xisis/3.4.1/bin/dawnfc2isis Xisis/3.4.1/bin/dawnvir2isis Xisis/3.4.1/bin/ddd2isis Xisis/3.4.1/bin/decorstretch Xisis/3.4.1/bin/deltack Xisis/3.4.1/bin/dempack Xisis/3.4.1/bin/demprep Xisis/3.4.1/bin/deriv Xisis/3.4.1/bin/desmear Xisis/3.4.1/bin/divfilter Xisis/3.4.1/bin/dstripe Xisis/3.4.1/bin/editlab Xisis/3.4.1/bin/edrget Xisis/3.4.1/bin/enlarge Xisis/3.4.1/bin/equalizer Xisis/3.4.1/bin/errors Xisis/3.4.1/bin/explode Xisis/3.4.1/bin/fakecube Xisis/3.4.1/bin/fft Xisis/3.4.1/bin/fillgap Xisis/3.4.1/bin/findgaps Xisis/3.4.1/bin/findimageoverlaps Xisis/3.4.1/bin/findrx Xisis/3.4.1/bin/fits2isis Xisis/3.4.1/bin/flip Xisis/3.4.1/bin/footprintinit Xisis/3.4.1/bin/footprintmerge Xisis/3.4.1/bin/fplanemap Xisis/3.4.1/bin/fx Xisis/3.4.1/bin/gauss Xisis/3.4.1/bin/gaussstretch Xisis/3.4.1/bin/getkey Xisis/3.4.1/bin/getsn Xisis/3.4.1/bin/gllssi2isis Xisis/3.4.1/bin/gllssical Xisis/3.4.1/bin/gradient Xisis/3.4.1/bin/greyscale Xisis/3.4.1/bin/grid Xisis/3.4.1/bin/handmos Xisis/3.4.1/bin/hi2isis Xisis/3.4.1/bin/hical Xisis/3.4.1/bin/hicalbeta Xisis/3.4.1/bin/hicalproc Xisis/3.4.1/bin/hiccdstitch Xisis/3.4.1/bin/hicolormos Xisis/3.4.1/bin/hicubeit Xisis/3.4.1/bin/hicubenorm Xisis/3.4.1/bin/hidestripe Xisis/3.4.1/bin/hidtmgen Xisis/3.4.1/bin/hiequal Xisis/3.4.1/bin/hifringe Xisis/3.4.1/bin/hifurrows Xisis/3.4.1/bin/highpass Xisis/3.4.1/bin/higlob Xisis/3.4.1/bin/hijitreg Xisis/3.4.1/bin/hijitter Xisis/3.4.1/bin/himos Xisis/3.4.1/bin/hinoise Xisis/3.4.1/bin/hirdr2isis Xisis/3.4.1/bin/hirdrgen Xisis/3.4.1/bin/hisharpen Xisis/3.4.1/bin/hist Xisis/3.4.1/bin/histat Xisis/3.4.1/bin/histeq Xisis/3.4.1/bin/histitch Xisis/3.4.1/bin/histmatch Xisis/3.4.1/bin/hrsc2isis Xisis/3.4.1/bin/hsv2rgb Xisis/3.4.1/bin/ifft Xisis/3.4.1/bin/interestcube Xisis/3.4.1/bin/isis2ascii Xisis/3.4.1/bin/isis2fits Xisis/3.4.1/bin/isis2gml Xisis/3.4.1/bin/isis2pds Xisis/3.4.1/bin/isis2raw Xisis/3.4.1/bin/isis2std Xisis/3.4.1/bin/isiscomplete Xisis/3.4.1/bin/isisui Xisis/3.4.1/bin/jigsaw Xisis/3.4.1/bin/kaguyatc2isis Xisis/3.4.1/bin/kerneldbgen Xisis/3.4.1/bin/kernfilter Xisis/3.4.1/bin/kuwahara Xisis/3.4.1/bin/lineeq Xisis/3.4.1/bin/lo2isis Xisis/3.4.1/bin/lopdsgen Xisis/3.4.1/bin/lowpass Xisis/3.4.1/bin/lronac2isis Xisis/3.4.1/bin/lronac2pds Xisis/3.4.1/bin/lronaccal Xisis/3.4.1/bin/lrowac2isis Xisis/3.4.1/bin/lrowac2pds Xisis/3.4.1/bin/lrowaccal Xisis/3.4.1/bin/lrowacpho Xisis/3.4.1/bin/makecube Xisis/3.4.1/bin/makeflat Xisis/3.4.1/bin/map2cam Xisis/3.4.1/bin/map2map Xisis/3.4.1/bin/mapgrid Xisis/3.4.1/bin/maplab Xisis/3.4.1/bin/mapmos Xisis/3.4.1/bin/mappt Xisis/3.4.1/bin/mapsize Xisis/3.4.1/bin/maptemplate Xisis/3.4.1/bin/maptrim Xisis/3.4.1/bin/mar102isis Xisis/3.4.1/bin/mar10cal Xisis/3.4.1/bin/mar10clean Xisis/3.4.1/bin/mar10nonoise Xisis/3.4.1/bin/mar10restore Xisis/3.4.1/bin/marci2isis Xisis/3.4.1/bin/marcical Xisis/3.4.1/bin/marciflip Xisis/3.4.1/bin/mask Xisis/3.4.1/bin/mat2cnet Xisis/3.4.1/bin/mdis2isis Xisis/3.4.1/bin/mdis2pds Xisis/3.4.1/bin/mdiscal Xisis/3.4.1/bin/mdisddr Xisis/3.4.1/bin/mdisedrinfo Xisis/3.4.1/bin/mdisproc Xisis/3.4.1/bin/median Xisis/3.4.1/bin/mer2isis Xisis/3.4.1/bin/messckgen Xisis/3.4.1/bin/messspkgen Xisis/3.4.1/bin/mical Xisis/3.4.1/bin/minmax Xisis/3.4.1/bin/mirror Xisis/3.4.1/bin/moc2isis Xisis/3.4.1/bin/moccal Xisis/3.4.1/bin/mocevenodd Xisis/3.4.1/bin/mocgap Xisis/3.4.1/bin/mocnoise50 Xisis/3.4.1/bin/mocproc Xisis/3.4.1/bin/mocuncompress Xisis/3.4.1/bin/mode Xisis/3.4.1/bin/mosrange Xisis/3.4.1/bin/mrf2isis Xisis/3.4.1/bin/mrf2pds Xisis/3.4.1/bin/mroctx2isis Xisis/3.4.1/bin/mvstats Xisis/3.4.1/bin/nocam2map Xisis/3.4.1/bin/noisefilter Xisis/3.4.1/bin/noproj Xisis/3.4.1/bin/noseam Xisis/3.4.1/bin/outline Xisis/3.4.1/bin/overlapstats Xisis/3.4.1/bin/pad Xisis/3.4.1/bin/pca Xisis/3.4.1/bin/pds2isis Xisis/3.4.1/bin/percent Xisis/3.4.1/bin/phocube Xisis/3.4.1/bin/phoempglobal Xisis/3.4.1/bin/phoemplocal Xisis/3.4.1/bin/phohillier Xisis/3.4.1/bin/photemplate Xisis/3.4.1/bin/photomet Xisis/3.4.1/bin/photrim Xisis/3.4.1/bin/pointreg Xisis/3.4.1/bin/poly Xisis/3.4.1/bin/prtloganalyzer Xisis/3.4.1/bin/pvldiff Xisis/3.4.1/bin/qmos Xisis/3.4.1/bin/qnet Xisis/3.4.1/bin/qtie Xisis/3.4.1/bin/qview Xisis/3.4.1/bin/ratio Xisis/3.4.1/bin/raw2isis Xisis/3.4.1/bin/reduce Xisis/3.4.1/bin/remrx Xisis/3.4.1/bin/rgb2hsv Xisis/3.4.1/bin/rolo2isis Xisis/3.4.1/bin/rotate Xisis/3.4.1/bin/seedgrid Xisis/3.4.1/bin/segment Xisis/3.4.1/bin/shade Xisis/3.4.1/bin/shadowtau Xisis/3.4.1/bin/sharpen Xisis/3.4.1/bin/sigmastretch Xisis/3.4.1/bin/skymap Xisis/3.4.1/bin/skypt Xisis/3.4.1/bin/skyrange Xisis/3.4.1/bin/slither Xisis/3.4.1/bin/slpmap Xisis/3.4.1/bin/smtk Xisis/3.4.1/bin/specadd Xisis/3.4.1/bin/specdivfilter Xisis/3.4.1/bin/spechighpass Xisis/3.4.1/bin/speclowpass Xisis/3.4.1/bin/specpix Xisis/3.4.1/bin/spicefit Xisis/3.4.1/bin/spiceinit Xisis/3.4.1/bin/spiceserver Xisis/3.4.1/bin/spkwriter Xisis/3.4.1/bin/stats Xisis/3.4.1/bin/std2isis Xisis/3.4.1/bin/stretch Xisis/3.4.1/bin/svfilter Xisis/3.4.1/bin/table2cube Xisis/3.4.1/bin/tabledump Xisis/3.4.1/bin/thm2isis Xisis/3.4.1/bin/thmbasemap1 Xisis/3.4.1/bin/thmdriftcor Xisis/3.4.1/bin/thmnoseam Xisis/3.4.1/bin/thmproc Xisis/3.4.1/bin/thmvisflat Xisis/3.4.1/bin/thmvistrim Xisis/3.4.1/bin/tonematch Xisis/3.4.1/bin/translate Xisis/3.4.1/bin/trim Xisis/3.4.1/bin/trimfilter Xisis/3.4.1/bin/uncrop Xisis/3.4.1/bin/vdcomp Xisis/3.4.1/bin/vicar2isis Xisis/3.4.1/bin/vik2isis Xisis/3.4.1/bin/vikcal Xisis/3.4.1/bin/vikclean Xisis/3.4.1/bin/vikfixtrx Xisis/3.4.1/bin/viknobutter Xisis/3.4.1/bin/viknonoodle Xisis/3.4.1/bin/viknopepper Xisis/3.4.1/bin/viknosalt Xisis/3.4.1/bin/vims2isis Xisis/3.4.1/bin/vimscal Xisis/3.4.1/bin/voy2isis Xisis/3.4.1/bin/voycal Xisis/3.4.1/bin/voyramp Xisis/3.4.1/bin/warp Xisis/3.4.1/bin/xml/algebra.xml Xisis/3.4.1/bin/xml/apollo2isis.xml Xisis/3.4.1/bin/xml/apollocal.xml Xisis/3.4.1/bin/xml/apollofindrx.xml Xisis/3.4.1/bin/xml/apollopaninit.xml Xisis/3.4.1/bin/xml/apollopanstitcher.xml Xisis/3.4.1/bin/xml/apolloremrx.xml Xisis/3.4.1/bin/xml/apollowarp.xml Xisis/3.4.1/bin/xml/appjit.xml Xisis/3.4.1/bin/xml/applicationTOC.xml Xisis/3.4.1/bin/xml/ascii2isis.xml Xisis/3.4.1/bin/xml/automos.xml Xisis/3.4.1/bin/xml/autoregtemplate.xml Xisis/3.4.1/bin/xml/autoseed.xml Xisis/3.4.1/bin/xml/bandnorm.xml Xisis/3.4.1/bin/xml/bandtrim.xml Xisis/3.4.1/bin/xml/bit2bit.xml Xisis/3.4.1/bin/xml/blend.xml Xisis/3.4.1/bin/xml/blobdump.xml Xisis/3.4.1/bin/xml/butterworth.xml Xisis/3.4.1/bin/xml/cam2cam.xml Xisis/3.4.1/bin/xml/cam2map.xml Xisis/3.4.1/bin/xml/caminfo.xml Xisis/3.4.1/bin/xml/campt.xml Xisis/3.4.1/bin/xml/camrange.xml Xisis/3.4.1/bin/xml/camstats.xml Xisis/3.4.1/bin/xml/camtrim.xml Xisis/3.4.1/bin/xml/cathist.xml Xisis/3.4.1/bin/xml/catlab.xml Xisis/3.4.1/bin/xml/catoriglab.xml Xisis/3.4.1/bin/xml/circle.xml Xisis/3.4.1/bin/xml/ciss2isis.xml Xisis/3.4.1/bin/xml/cisscal.xml Xisis/3.4.1/bin/xml/ckwriter.xml Xisis/3.4.1/bin/xml/clem2isis.xml Xisis/3.4.1/bin/xml/clemhirescal.xml Xisis/3.4.1/bin/xml/clemnircal.xml Xisis/3.4.1/bin/xml/clemnirclean.xml Xisis/3.4.1/bin/xml/clemnirnoise.xml Xisis/3.4.1/bin/xml/clemuvviscal.xml Xisis/3.4.1/bin/xml/cnet2mat.xml Xisis/3.4.1/bin/xml/cnetadd.xml Xisis/3.4.1/bin/xml/cnetbin2pvl.xml Xisis/3.4.1/bin/xml/cnetcheck.xml Xisis/3.4.1/bin/xml/cnetdiff.xml Xisis/3.4.1/bin/xml/cnetedit.xml Xisis/3.4.1/bin/xml/cneteditor.xml Xisis/3.4.1/bin/xml/cnetextract.xml Xisis/3.4.1/bin/xml/cnethist.xml Xisis/3.4.1/bin/xml/cnetmerge.xml Xisis/3.4.1/bin/xml/cnetnewradii.xml Xisis/3.4.1/bin/xml/cnetpvl2bin.xml Xisis/3.4.1/bin/xml/cnetref.xml Xisis/3.4.1/bin/xml/cnetsplit.xml Xisis/3.4.1/bin/xml/cnetstats.xml Xisis/3.4.1/bin/xml/cnettable.xml Xisis/3.4.1/bin/xml/cnetwinnow.xml Xisis/3.4.1/bin/xml/copylabel.xml Xisis/3.4.1/bin/xml/coreg.xml Xisis/3.4.1/bin/xml/cosi.xml Xisis/3.4.1/bin/xml/crism2isis.xml Xisis/3.4.1/bin/xml/crop.xml Xisis/3.4.1/bin/xml/cropspecial.xml Xisis/3.4.1/bin/xml/csspckgen.xml Xisis/3.4.1/bin/xml/ctxcal.xml Xisis/3.4.1/bin/xml/ctxevenodd.xml Xisis/3.4.1/bin/xml/cubeatt.xml Xisis/3.4.1/bin/xml/cubeavg.xml Xisis/3.4.1/bin/xml/cubediff.xml Xisis/3.4.1/bin/xml/cubefunc.xml Xisis/3.4.1/bin/xml/cubeit.xml Xisis/3.4.1/bin/xml/cubenorm.xml Xisis/3.4.1/bin/xml/dawnfc2isis.xml Xisis/3.4.1/bin/xml/dawnvir2isis.xml Xisis/3.4.1/bin/xml/ddd2isis.xml Xisis/3.4.1/bin/xml/decorstretch.xml Xisis/3.4.1/bin/xml/deltack.xml Xisis/3.4.1/bin/xml/dempack.xml Xisis/3.4.1/bin/xml/demprep.xml Xisis/3.4.1/bin/xml/deriv.xml Xisis/3.4.1/bin/xml/desmear.xml Xisis/3.4.1/bin/xml/divfilter.xml Xisis/3.4.1/bin/xml/dstripe.xml Xisis/3.4.1/bin/xml/editlab.xml Xisis/3.4.1/bin/xml/edrget.xml Xisis/3.4.1/bin/xml/enlarge.xml Xisis/3.4.1/bin/xml/equalizer.xml Xisis/3.4.1/bin/xml/errors.xml Xisis/3.4.1/bin/xml/explode.xml Xisis/3.4.1/bin/xml/fakecube.xml Xisis/3.4.1/bin/xml/fft.xml Xisis/3.4.1/bin/xml/fillgap.xml Xisis/3.4.1/bin/xml/findgaps.xml Xisis/3.4.1/bin/xml/findimageoverlaps.xml Xisis/3.4.1/bin/xml/findrx.xml Xisis/3.4.1/bin/xml/fits2isis.xml Xisis/3.4.1/bin/xml/flip.xml Xisis/3.4.1/bin/xml/footprintinit.xml Xisis/3.4.1/bin/xml/footprintmerge.xml Xisis/3.4.1/bin/xml/fplanemap.xml Xisis/3.4.1/bin/xml/fx.xml Xisis/3.4.1/bin/xml/gauss.xml Xisis/3.4.1/bin/xml/gaussstretch.xml Xisis/3.4.1/bin/xml/getkey.xml Xisis/3.4.1/bin/xml/getsn.xml Xisis/3.4.1/bin/xml/gllssi2isis.xml Xisis/3.4.1/bin/xml/gllssical.xml Xisis/3.4.1/bin/xml/gradient.xml Xisis/3.4.1/bin/xml/greyscale.xml Xisis/3.4.1/bin/xml/grid.xml Xisis/3.4.1/bin/xml/handmos.xml Xisis/3.4.1/bin/xml/hi2isis.xml Xisis/3.4.1/bin/xml/hical.xml Xisis/3.4.1/bin/xml/hicalbeta.xml Xisis/3.4.1/bin/xml/hicalproc.xml Xisis/3.4.1/bin/xml/hiccdstitch.xml Xisis/3.4.1/bin/xml/hicolormos.xml Xisis/3.4.1/bin/xml/hicubeit.xml Xisis/3.4.1/bin/xml/hicubenorm.xml Xisis/3.4.1/bin/xml/hidestripe.xml Xisis/3.4.1/bin/xml/hidtmgen.xml Xisis/3.4.1/bin/xml/hiequal.xml Xisis/3.4.1/bin/xml/hifringe.xml Xisis/3.4.1/bin/xml/hifurrows.xml Xisis/3.4.1/bin/xml/highpass.xml Xisis/3.4.1/bin/xml/higlob.xml Xisis/3.4.1/bin/xml/hijitreg.xml Xisis/3.4.1/bin/xml/hijitter.xml Xisis/3.4.1/bin/xml/himos.xml Xisis/3.4.1/bin/xml/hinoise.xml Xisis/3.4.1/bin/xml/hirdr2isis.xml Xisis/3.4.1/bin/xml/hirdrgen.xml Xisis/3.4.1/bin/xml/hisharpen.xml Xisis/3.4.1/bin/xml/hist.xml Xisis/3.4.1/bin/xml/histat.xml Xisis/3.4.1/bin/xml/histeq.xml Xisis/3.4.1/bin/xml/histitch.xml Xisis/3.4.1/bin/xml/histmatch.xml Xisis/3.4.1/bin/xml/hrsc2isis.xml Xisis/3.4.1/bin/xml/hsv2rgb.xml Xisis/3.4.1/bin/xml/ifft.xml Xisis/3.4.1/bin/xml/interestcube.xml Xisis/3.4.1/bin/xml/isis2ascii.xml Xisis/3.4.1/bin/xml/isis2fits.xml Xisis/3.4.1/bin/xml/isis2gml.xml Xisis/3.4.1/bin/xml/isis2pds.xml Xisis/3.4.1/bin/xml/isis2raw.xml Xisis/3.4.1/bin/xml/isis2std.xml Xisis/3.4.1/bin/xml/isiscomplete.xml Xisis/3.4.1/bin/xml/isisui.xml Xisis/3.4.1/bin/xml/jigsaw.xml Xisis/3.4.1/bin/xml/kaguyatc2isis.xml Xisis/3.4.1/bin/xml/kerneldbgen.xml Xisis/3.4.1/bin/xml/kernfilter.xml Xisis/3.4.1/bin/xml/kuwahara.xml Xisis/3.4.1/bin/xml/lineeq.xml Xisis/3.4.1/bin/xml/lo2isis.xml Xisis/3.4.1/bin/xml/lopdsgen.xml Xisis/3.4.1/bin/xml/lowpass.xml Xisis/3.4.1/bin/xml/lronac2isis.xml Xisis/3.4.1/bin/xml/lronac2pds.xml Xisis/3.4.1/bin/xml/lronaccal.xml Xisis/3.4.1/bin/xml/lrowac2isis.xml Xisis/3.4.1/bin/xml/lrowac2pds.xml Xisis/3.4.1/bin/xml/lrowaccal.xml Xisis/3.4.1/bin/xml/lrowacpho.xml Xisis/3.4.1/bin/xml/makecube.xml Xisis/3.4.1/bin/xml/makeflat.xml Xisis/3.4.1/bin/xml/map2cam.xml Xisis/3.4.1/bin/xml/map2map.xml Xisis/3.4.1/bin/xml/mapgrid.xml Xisis/3.4.1/bin/xml/maplab.xml Xisis/3.4.1/bin/xml/mapmos.xml Xisis/3.4.1/bin/xml/mappt.xml Xisis/3.4.1/bin/xml/mapsize.xml Xisis/3.4.1/bin/xml/maptemplate.xml Xisis/3.4.1/bin/xml/maptrim.xml Xisis/3.4.1/bin/xml/mar102isis.xml Xisis/3.4.1/bin/xml/mar10cal.xml Xisis/3.4.1/bin/xml/mar10clean.xml Xisis/3.4.1/bin/xml/mar10nonoise.xml Xisis/3.4.1/bin/xml/mar10restore.xml Xisis/3.4.1/bin/xml/marci2isis.xml Xisis/3.4.1/bin/xml/marcical.xml Xisis/3.4.1/bin/xml/marciflip.xml Xisis/3.4.1/bin/xml/mask.xml Xisis/3.4.1/bin/xml/mat2cnet.xml Xisis/3.4.1/bin/xml/mdis2isis.xml Xisis/3.4.1/bin/xml/mdis2pds.xml Xisis/3.4.1/bin/xml/mdiscal.xml Xisis/3.4.1/bin/xml/mdisddr.xml Xisis/3.4.1/bin/xml/mdisedrinfo.xml Xisis/3.4.1/bin/xml/mdisproc.xml Xisis/3.4.1/bin/xml/median.xml Xisis/3.4.1/bin/xml/mer2isis.xml Xisis/3.4.1/bin/xml/messckgen.xml Xisis/3.4.1/bin/xml/messspkgen.xml Xisis/3.4.1/bin/xml/mical.xml Xisis/3.4.1/bin/xml/minmax.xml Xisis/3.4.1/bin/xml/mirror.xml Xisis/3.4.1/bin/xml/moc2isis.xml Xisis/3.4.1/bin/xml/moccal.xml Xisis/3.4.1/bin/xml/mocevenodd.xml Xisis/3.4.1/bin/xml/mocgap.xml Xisis/3.4.1/bin/xml/mocnoise50.xml Xisis/3.4.1/bin/xml/mocproc.xml Xisis/3.4.1/bin/xml/mocuncompress.xml Xisis/3.4.1/bin/xml/mode.xml Xisis/3.4.1/bin/xml/mosrange.xml Xisis/3.4.1/bin/xml/mrf2isis.xml Xisis/3.4.1/bin/xml/mrf2pds.xml Xisis/3.4.1/bin/xml/mroctx2isis.xml Xisis/3.4.1/bin/xml/mvstats.xml Xisis/3.4.1/bin/xml/nocam2map.xml Xisis/3.4.1/bin/xml/noisefilter.xml Xisis/3.4.1/bin/xml/noproj.xml Xisis/3.4.1/bin/xml/noseam.xml Xisis/3.4.1/bin/xml/outline.xml Xisis/3.4.1/bin/xml/overlapstats.xml Xisis/3.4.1/bin/xml/pad.xml Xisis/3.4.1/bin/xml/pca.xml Xisis/3.4.1/bin/xml/pds2isis.xml Xisis/3.4.1/bin/xml/percent.xml Xisis/3.4.1/bin/xml/phocube.xml Xisis/3.4.1/bin/xml/phoempglobal.xml Xisis/3.4.1/bin/xml/phoemplocal.xml Xisis/3.4.1/bin/xml/phohillier.xml Xisis/3.4.1/bin/xml/photemplate.xml Xisis/3.4.1/bin/xml/photomet.xml Xisis/3.4.1/bin/xml/photrim.xml Xisis/3.4.1/bin/xml/pointreg.xml Xisis/3.4.1/bin/xml/poly.xml Xisis/3.4.1/bin/xml/prtloganalyzer.xml Xisis/3.4.1/bin/xml/pvldiff.xml Xisis/3.4.1/bin/xml/qmos.xml Xisis/3.4.1/bin/xml/qnet.xml Xisis/3.4.1/bin/xml/qtie.xml Xisis/3.4.1/bin/xml/qview.xml Xisis/3.4.1/bin/xml/ratio.xml Xisis/3.4.1/bin/xml/raw2isis.xml Xisis/3.4.1/bin/xml/reduce.xml Xisis/3.4.1/bin/xml/remrx.xml Xisis/3.4.1/bin/xml/rgb2hsv.xml Xisis/3.4.1/bin/xml/rolo2isis.xml Xisis/3.4.1/bin/xml/rotate.xml Xisis/3.4.1/bin/xml/seedgrid.xml Xisis/3.4.1/bin/xml/segment.xml Xisis/3.4.1/bin/xml/shade.xml Xisis/3.4.1/bin/xml/shadowtau.xml Xisis/3.4.1/bin/xml/sharpen.xml Xisis/3.4.1/bin/xml/sigmastretch.xml Xisis/3.4.1/bin/xml/skymap.xml Xisis/3.4.1/bin/xml/skypt.xml Xisis/3.4.1/bin/xml/skyrange.xml Xisis/3.4.1/bin/xml/slither.xml Xisis/3.4.1/bin/xml/slpmap.xml Xisis/3.4.1/bin/xml/smtk.xml Xisis/3.4.1/bin/xml/specadd.xml Xisis/3.4.1/bin/xml/specdivfilter.xml Xisis/3.4.1/bin/xml/spechighpass.xml Xisis/3.4.1/bin/xml/speclowpass.xml Xisis/3.4.1/bin/xml/specpix.xml Xisis/3.4.1/bin/xml/spicefit.xml Xisis/3.4.1/bin/xml/spiceinit.xml Xisis/3.4.1/bin/xml/spiceserver.xml Xisis/3.4.1/bin/xml/spkwriter.xml Xisis/3.4.1/bin/xml/stats.xml Xisis/3.4.1/bin/xml/std2isis.xml Xisis/3.4.1/bin/xml/stretch.xml Xisis/3.4.1/bin/xml/svfilter.xml Xisis/3.4.1/bin/xml/table2cube.xml Xisis/3.4.1/bin/xml/tabledump.xml Xisis/3.4.1/bin/xml/thm2isis.xml Xisis/3.4.1/bin/xml/thmbasemap1.xml Xisis/3.4.1/bin/xml/thmdriftcor.xml Xisis/3.4.1/bin/xml/thmnoseam.xml Xisis/3.4.1/bin/xml/thmproc.xml Xisis/3.4.1/bin/xml/thmvisflat.xml Xisis/3.4.1/bin/xml/thmvistrim.xml Xisis/3.4.1/bin/xml/tonematch.xml Xisis/3.4.1/bin/xml/translate.xml Xisis/3.4.1/bin/xml/trim.xml Xisis/3.4.1/bin/xml/trimfilter.xml Xisis/3.4.1/bin/xml/uncrop.xml Xisis/3.4.1/bin/xml/vdcomp.xml Xisis/3.4.1/bin/xml/vicar2isis.xml Xisis/3.4.1/bin/xml/vik2isis.xml Xisis/3.4.1/bin/xml/vikcal.xml Xisis/3.4.1/bin/xml/vikclean.xml Xisis/3.4.1/bin/xml/vikfixtrx.xml Xisis/3.4.1/bin/xml/viknobutter.xml Xisis/3.4.1/bin/xml/viknonoodle.xml Xisis/3.4.1/bin/xml/viknopepper.xml Xisis/3.4.1/bin/xml/viknosalt.xml Xisis/3.4.1/bin/xml/vims2isis.xml Xisis/3.4.1/bin/xml/vimscal.xml Xisis/3.4.1/bin/xml/voy2isis.xml Xisis/3.4.1/bin/xml/voycal.xml Xisis/3.4.1/bin/xml/voyramp.xml Xisis/3.4.1/bin/xml/warp.xml Xisis/3.4.1/include/AbstractPlotTool.h Xisis/3.4.1/include/AdaptiveGruen.h Xisis/3.4.1/include/AdvancedStretch.h Xisis/3.4.1/include/AdvancedStretchDialog.h Xisis/3.4.1/include/AdvancedTrackTool.h Xisis/3.4.1/include/Affine.h Xisis/3.4.1/include/Albedo.h Xisis/3.4.1/include/AlbedoAtm.h Xisis/3.4.1/include/AlphaCube.h Xisis/3.4.1/include/Angle.h Xisis/3.4.1/include/Anisotropic1.h Xisis/3.4.1/include/Anisotropic2.h Xisis/3.4.1/include/Apollo.h Xisis/3.4.1/include/ApolloMetricCamera.h Xisis/3.4.1/include/ApolloMetricDistortionMap.h Xisis/3.4.1/include/ApolloPanIO.h Xisis/3.4.1/include/ApolloPanoramicCamera.h Xisis/3.4.1/include/ApolloPanoramicDetectorMap.h Xisis/3.4.1/include/Application.h Xisis/3.4.1/include/Area3D.h Xisis/3.4.1/include/AtmosModel.h Xisis/3.4.1/include/AtmosModelFactory.h Xisis/3.4.1/include/AutoReg.h Xisis/3.4.1/include/AutoRegFactory.h Xisis/3.4.1/include/BandManager.h Xisis/3.4.1/include/BandSpinBox.h Xisis/3.4.1/include/BandTool.h Xisis/3.4.1/include/Basis1VariableFunction.h Xisis/3.4.1/include/BasisFunction.h Xisis/3.4.1/include/BinaryStretchType.h Xisis/3.4.1/include/BlinkTool.h Xisis/3.4.1/include/Blob.h Xisis/3.4.1/include/Blobber.h Xisis/3.4.1/include/BoxcarCachingAlgorithm.h Xisis/3.4.1/include/BoxcarManager.h Xisis/3.4.1/include/Brick.h Xisis/3.4.1/include/BrowseDialog.h Xisis/3.4.1/include/Buffer.h Xisis/3.4.1/include/BufferManager.h Xisis/3.4.1/include/BundleAdjust.h Xisis/3.4.1/include/CSVReader.h Xisis/3.4.1/include/CTXCamera.h Xisis/3.4.1/include/Calculator.h Xisis/3.4.1/include/Camera.h Xisis/3.4.1/include/CameraDetectorMap.h Xisis/3.4.1/include/CameraDistortionMap.h Xisis/3.4.1/include/CameraFactory.h Xisis/3.4.1/include/CameraFocalPlaneMap.h Xisis/3.4.1/include/CameraGroundMap.h Xisis/3.4.1/include/CameraPointInfo.h Xisis/3.4.1/include/CameraSkyMap.h Xisis/3.4.1/include/CameraStatistics.h Xisis/3.4.1/include/Centroid.h Xisis/3.4.1/include/CentroidApolloPan.h Xisis/3.4.1/include/Chip.h Xisis/3.4.1/include/ChipViewport.h Xisis/3.4.1/include/CissLabels.h Xisis/3.4.1/include/CisscalFile.h Xisis/3.4.1/include/CollectorMap.h Xisis/3.4.1/include/Column.h Xisis/3.4.1/include/ConcurrentControlNetReader.h Xisis/3.4.1/include/Constants.h Xisis/3.4.1/include/ControlCubeGraphNode.h Xisis/3.4.1/include/ControlGraph.h Xisis/3.4.1/include/ControlMeasure.h Xisis/3.4.1/include/ControlMeasureLogData.h Xisis/3.4.1/include/ControlNet.h Xisis/3.4.1/include/ControlNetDiff.h Xisis/3.4.1/include/ControlNetFile.h Xisis/3.4.1/include/ControlNetFileV0001.h Xisis/3.4.1/include/ControlNetFileV0001.pb.h Xisis/3.4.1/include/ControlNetFileV0002.h Xisis/3.4.1/include/ControlNetFileV0002.pb.h Xisis/3.4.1/include/ControlNetFilter.h Xisis/3.4.1/include/ControlNetGraphicsItem.h Xisis/3.4.1/include/ControlNetStatistics.h Xisis/3.4.1/include/ControlNetValidMeasure.h Xisis/3.4.1/include/ControlNetVersioner.h Xisis/3.4.1/include/ControlPoint.h Xisis/3.4.1/include/ControlPointEdit.h Xisis/3.4.1/include/ControlPointGraphicsItem.h Xisis/3.4.1/include/ControlPointList.h Xisis/3.4.1/include/Cube.h Xisis/3.4.1/include/CubeAttribute.h Xisis/3.4.1/include/CubeBsqHandler.h Xisis/3.4.1/include/CubeCachingAlgorithm.h Xisis/3.4.1/include/CubeCalculator.h Xisis/3.4.1/include/CubeDataThread.h Xisis/3.4.1/include/CubeDisplayProperties.h Xisis/3.4.1/include/CubeInfixToPostfix.h Xisis/3.4.1/include/CubeIoHandler.h Xisis/3.4.1/include/CubeManager.h Xisis/3.4.1/include/CubePlotCurve.h Xisis/3.4.1/include/CubePlotCurveConfigureDialog.h Xisis/3.4.1/include/CubeTileHandler.h Xisis/3.4.1/include/CubeViewport.h Xisis/3.4.1/include/Database.h Xisis/3.4.1/include/DatabaseFactory.h Xisis/3.4.1/include/DawnFcCamera.h Xisis/3.4.1/include/DawnFcDistortionMap.h Xisis/3.4.1/include/DawnVirCamera.h Xisis/3.4.1/include/DbAccess.h Xisis/3.4.1/include/DbProfile.h Xisis/3.4.1/include/Displacement.h Xisis/3.4.1/include/Distance.h Xisis/3.4.1/include/EditTool.h Xisis/3.4.1/include/Endian.h Xisis/3.4.1/include/EndianSwapper.h Xisis/3.4.1/include/Enlarge.h Xisis/3.4.1/include/Environment.h Xisis/3.4.1/include/Equalization.h Xisis/3.4.1/include/Equirectangular.h Xisis/3.4.1/include/ExportDescription.h Xisis/3.4.1/include/FeatureNomenclature.h Xisis/3.4.1/include/FeatureNomenclatureTool.h Xisis/3.4.1/include/FileDialog.h Xisis/3.4.1/include/FileList.h Xisis/3.4.1/include/FileName.h Xisis/3.4.1/include/FileTool.h Xisis/3.4.1/include/FilterCachingAlgorithm.h Xisis/3.4.1/include/FindSpotGraphicsItem.h Xisis/3.4.1/include/FindTool.h Xisis/3.4.1/include/ForstnerOperator.h Xisis/3.4.1/include/FourierTransform.h Xisis/3.4.1/include/FramingCamera.h Xisis/3.4.1/include/FunctionTools.h Xisis/3.4.1/include/GSLUtility.h Xisis/3.4.1/include/GaussianDistribution.h Xisis/3.4.1/include/GaussianStretch.h Xisis/3.4.1/include/GradientOperator.h Xisis/3.4.1/include/GraphicsView.h Xisis/3.4.1/include/GridGraphicsItem.h Xisis/3.4.1/include/GridPolygonSeeder.h Xisis/3.4.1/include/GroundGrid.h Xisis/3.4.1/include/GroupedStatistics.h Xisis/3.4.1/include/Gruen.h Xisis/3.4.1/include/GruenTypes.h Xisis/3.4.1/include/Gui.h Xisis/3.4.1/include/GuiBooleanParameter.h Xisis/3.4.1/include/GuiComboBoxParameter.h Xisis/3.4.1/include/GuiCubeParameter.h Xisis/3.4.1/include/GuiDoubleParameter.h Xisis/3.4.1/include/GuiEditFile.h Xisis/3.4.1/include/GuiFilenameParameter.h Xisis/3.4.1/include/GuiHelperAction.h Xisis/3.4.1/include/GuiInputAttribute.h Xisis/3.4.1/include/GuiIntegerParameter.h Xisis/3.4.1/include/GuiListParameter.h Xisis/3.4.1/include/GuiLog.h Xisis/3.4.1/include/GuiOutputAttribute.h Xisis/3.4.1/include/GuiParameter.h Xisis/3.4.1/include/GuiParameterFactory.h Xisis/3.4.1/include/GuiStringParameter.h Xisis/3.4.1/include/Hapke.h Xisis/3.4.1/include/HapkeAtm1.h Xisis/3.4.1/include/HapkeAtm2.h Xisis/3.4.1/include/HelpTool.h Xisis/3.4.1/include/HiEqualization.h Xisis/3.4.1/include/HiLab.h Xisis/3.4.1/include/HiresCamera.h Xisis/3.4.1/include/HiriseCamera.h Xisis/3.4.1/include/Histogram.h Xisis/3.4.1/include/HistogramItem.h Xisis/3.4.1/include/HistogramPlotWindow.h Xisis/3.4.1/include/HistogramTool.h Xisis/3.4.1/include/HistogramWidget.h Xisis/3.4.1/include/History.h Xisis/3.4.1/include/HrscCamera.h Xisis/3.4.1/include/ID.h Xisis/3.4.1/include/IException.h Xisis/3.4.1/include/IdealCamera.h Xisis/3.4.1/include/ImageExporter.h Xisis/3.4.1/include/ImageImporter.h Xisis/3.4.1/include/ImageOverlap.h Xisis/3.4.1/include/ImageOverlapSet.h Xisis/3.4.1/include/ImagePolygon.h Xisis/3.4.1/include/ImportPdsTable.h Xisis/3.4.1/include/IndependentCubeViewport.h Xisis/3.4.1/include/InfixToPostfix.h Xisis/3.4.1/include/InterestOperator.h Xisis/3.4.1/include/InterestOperatorFactory.h Xisis/3.4.1/include/Interpolator.h Xisis/3.4.1/include/Isis.h Xisis/3.4.1/include/IsisAml.h Xisis/3.4.1/include/IsisAmlData.h Xisis/3.4.1/include/IsisDebug.h Xisis/3.4.1/include/IsisXMLApplication.h Xisis/3.4.1/include/IsisXMLChTrans.h Xisis/3.4.1/include/IsisXMLGroup.h Xisis/3.4.1/include/IsisXMLGroups.h Xisis/3.4.1/include/IsisXMLHandler.h Xisis/3.4.1/include/IsisXMLHelper.h Xisis/3.4.1/include/IsisXMLHelpers.h Xisis/3.4.1/include/IsisXMLHistory.h Xisis/3.4.1/include/IsisXMLIgnore.h Xisis/3.4.1/include/IsisXMLList.h Xisis/3.4.1/include/IsisXMLMultipleValues.h Xisis/3.4.1/include/IsisXMLParameter.h Xisis/3.4.1/include/Isotropic1.h Xisis/3.4.1/include/Isotropic2.h Xisis/3.4.1/include/IssNACamera.h Xisis/3.4.1/include/IssWACamera.h Xisis/3.4.1/include/JP2Decoder.h Xisis/3.4.1/include/JP2Encoder.h Xisis/3.4.1/include/JP2Error.h Xisis/3.4.1/include/JP2Exporter.h Xisis/3.4.1/include/JP2Importer.h Xisis/3.4.1/include/KernelDb.h Xisis/3.4.1/include/Kernels.h Xisis/3.4.1/include/Lambert.h Xisis/3.4.1/include/LambertAzimuthalEqualArea.h Xisis/3.4.1/include/LambertConformal.h Xisis/3.4.1/include/Latitude.h Xisis/3.4.1/include/LeastSquares.h Xisis/3.4.1/include/LimitPolygonSeeder.h Xisis/3.4.1/include/LineEquation.h Xisis/3.4.1/include/LineManager.h Xisis/3.4.1/include/LineScanCamera.h Xisis/3.4.1/include/LineScanCameraDetectorMap.h Xisis/3.4.1/include/LineScanCameraGroundMap.h Xisis/3.4.1/include/LineScanCameraSkyMap.h Xisis/3.4.1/include/LinearStretchType.h Xisis/3.4.1/include/LoCameraFiducialMap.h Xisis/3.4.1/include/LoHighCamera.h Xisis/3.4.1/include/LoHighDistortionMap.h Xisis/3.4.1/include/LoMediumCamera.h Xisis/3.4.1/include/LoMediumDistortionMap.h Xisis/3.4.1/include/LommelSeeliger.h Xisis/3.4.1/include/Longitude.h Xisis/3.4.1/include/LroNarrowAngleCamera.h Xisis/3.4.1/include/LroNarrowAngleDistortionMap.h Xisis/3.4.1/include/LroWideAngleCamera.h Xisis/3.4.1/include/LroWideAngleCameraDistortionMap.h Xisis/3.4.1/include/LunarAzimuthalEqualArea.h Xisis/3.4.1/include/LunarLambert.h Xisis/3.4.1/include/LunarLambertEmpirical.h Xisis/3.4.1/include/LunarLambertMcEwen.h Xisis/3.4.1/include/LwirCamera.h Xisis/3.4.1/include/MainWindow.h Xisis/3.4.1/include/ManualStretchType.h Xisis/3.4.1/include/MarciCamera.h Xisis/3.4.1/include/MarciDistortionMap.h Xisis/3.4.1/include/Mariner10Camera.h Xisis/3.4.1/include/MatchTool.h Xisis/3.4.1/include/MatchToolDeletePointDialog.h Xisis/3.4.1/include/MatchToolNewPointDialog.h Xisis/3.4.1/include/Matrix.h Xisis/3.4.1/include/MaximumCorrelation.h Xisis/3.4.1/include/MaximumLikelihoodWFunctions.h Xisis/3.4.1/include/MdiCubeViewport.h Xisis/3.4.1/include/MdisCamera.h Xisis/3.4.1/include/MeasureTool.h Xisis/3.4.1/include/MeasureValidationResults.h Xisis/3.4.1/include/Mercator.h Xisis/3.4.1/include/Message.h Xisis/3.4.1/include/MiniRF.h Xisis/3.4.1/include/MinimumDifference.h Xisis/3.4.1/include/Minnaert.h Xisis/3.4.1/include/MinnaertEmpirical.h Xisis/3.4.1/include/Mixed.h Xisis/3.4.1/include/MocLabels.h Xisis/3.4.1/include/MocNarrowAngleCamera.h Xisis/3.4.1/include/MocNarrowAngleSumming.h Xisis/3.4.1/include/MocWideAngleCamera.h Xisis/3.4.1/include/MocWideAngleDetectorMap.h Xisis/3.4.1/include/MocWideAngleDistortionMap.h Xisis/3.4.1/include/MoonAlbedo.h Xisis/3.4.1/include/MoravecOperator.h Xisis/3.4.1/include/MosaicAreaTool.h Xisis/3.4.1/include/MosaicControlNetTool.h Xisis/3.4.1/include/MosaicController.h Xisis/3.4.1/include/MosaicFileListWidget.h Xisis/3.4.1/include/MosaicFindTool.h Xisis/3.4.1/include/MosaicGraphicsView.h Xisis/3.4.1/include/MosaicGridTool.h Xisis/3.4.1/include/MosaicGridToolConfigDialog.h Xisis/3.4.1/include/MosaicMainWindow.h Xisis/3.4.1/include/MosaicPanTool.h Xisis/3.4.1/include/MosaicSceneItem.h Xisis/3.4.1/include/MosaicSceneWidget.h Xisis/3.4.1/include/MosaicSelectTool.h Xisis/3.4.1/include/MosaicTool.h Xisis/3.4.1/include/MosaicTrackTool.h Xisis/3.4.1/include/MosaicTreeWidget.h Xisis/3.4.1/include/MosaicTreeWidgetItem.h Xisis/3.4.1/include/MosaicZoomTool.h Xisis/3.4.1/include/MultivariateStatistics.h Xisis/3.4.1/include/NaifStatus.h Xisis/3.4.1/include/NirCamera.h Xisis/3.4.1/include/NoNormalization.h Xisis/3.4.1/include/NoOperator.h Xisis/3.4.1/include/NomenclatureToolConfigDialog.h Xisis/3.4.1/include/NormModel.h Xisis/3.4.1/include/NormModelFactory.h Xisis/3.4.1/include/NumericalApproximation.h Xisis/3.4.1/include/NumericalAtmosApprox.h Xisis/3.4.1/include/ObliqueCylindrical.h Xisis/3.4.1/include/ObservationNumber.h Xisis/3.4.1/include/ObservationNumberList.h Xisis/3.4.1/include/OriginalLabel.h Xisis/3.4.1/include/Orthographic.h Xisis/3.4.1/include/OverlapNormalization.h Xisis/3.4.1/include/OverlapStatistics.h Xisis/3.4.1/include/PaletteWindow.h Xisis/3.4.1/include/PanTool.h Xisis/3.4.1/include/Parabola.h Xisis/3.4.1/include/PhotoModel.h Xisis/3.4.1/include/PhotoModelFactory.h Xisis/3.4.1/include/Photometry.h Xisis/3.4.1/include/Pipeline.h Xisis/3.4.1/include/PipelineApplication.h Xisis/3.4.1/include/Pixel.h Xisis/3.4.1/include/PixelType.h Xisis/3.4.1/include/PlotCurve.h Xisis/3.4.1/include/PlotWindow.h Xisis/3.4.1/include/PlotWindowBestFitDialog.h Xisis/3.4.1/include/Plugin.h Xisis/3.4.1/include/PointPerspective.h Xisis/3.4.1/include/PolarStereographic.h Xisis/3.4.1/include/PolygonSeeder.h Xisis/3.4.1/include/PolygonSeederFactory.h Xisis/3.4.1/include/PolygonTools.h Xisis/3.4.1/include/PolynomialBivariate.h Xisis/3.4.1/include/PolynomialUnivariate.h Xisis/3.4.1/include/Portal.h Xisis/3.4.1/include/Preference.h Xisis/3.4.1/include/PrincipalComponentAnalysis.h Xisis/3.4.1/include/Process.h Xisis/3.4.1/include/ProcessByBoxcar.h Xisis/3.4.1/include/ProcessByBrick.h Xisis/3.4.1/include/ProcessByLine.h Xisis/3.4.1/include/ProcessByQuickFilter.h Xisis/3.4.1/include/ProcessBySample.h Xisis/3.4.1/include/ProcessBySpectra.h Xisis/3.4.1/include/ProcessByTile.h Xisis/3.4.1/include/ProcessExport.h Xisis/3.4.1/include/ProcessExportPds.h Xisis/3.4.1/include/ProcessGroundPolygons.h Xisis/3.4.1/include/ProcessImport.h Xisis/3.4.1/include/ProcessImportPds.h Xisis/3.4.1/include/ProcessImportVicar.h Xisis/3.4.1/include/ProcessMapMosaic.h Xisis/3.4.1/include/ProcessMosaic.h Xisis/3.4.1/include/ProcessPolygons.h Xisis/3.4.1/include/ProcessRubberSheet.h Xisis/3.4.1/include/ProfileDialog.h Xisis/3.4.1/include/ProgramLauncher.h Xisis/3.4.1/include/Progress.h Xisis/3.4.1/include/ProgressBar.h Xisis/3.4.1/include/Projection.h Xisis/3.4.1/include/ProjectionFactory.h Xisis/3.4.1/include/PushFrameCamera.h Xisis/3.4.1/include/PushFrameCameraDetectorMap.h Xisis/3.4.1/include/PushFrameCameraGroundMap.h Xisis/3.4.1/include/Pvl.h Xisis/3.4.1/include/PvlContainer.h Xisis/3.4.1/include/PvlEditDialog.h Xisis/3.4.1/include/PvlFormat.h Xisis/3.4.1/include/PvlFormatPds.h Xisis/3.4.1/include/PvlGroup.h Xisis/3.4.1/include/PvlKeyword.h Xisis/3.4.1/include/PvlObject.h Xisis/3.4.1/include/PvlSequence.h Xisis/3.4.1/include/PvlToken.h Xisis/3.4.1/include/PvlTokenizer.h Xisis/3.4.1/include/PvlTranslationManager.h Xisis/3.4.1/include/PvlTranslationTable.h Xisis/3.4.1/include/QHistogram.h Xisis/3.4.1/include/QIsisApplication.h Xisis/3.4.1/include/QStretch.h Xisis/3.4.1/include/QtExporter.h Xisis/3.4.1/include/QtImporter.h Xisis/3.4.1/include/Quaternion.h Xisis/3.4.1/include/QuickFilter.h Xisis/3.4.1/include/RadarCamera.h Xisis/3.4.1/include/RadarGroundMap.h Xisis/3.4.1/include/RadarGroundRangeMap.h Xisis/3.4.1/include/RadarPulseMap.h Xisis/3.4.1/include/RadarSkyMap.h Xisis/3.4.1/include/RadarSlantRangeMap.h Xisis/3.4.1/include/RadialDistortionMap.h Xisis/3.4.1/include/Ransac.h Xisis/3.4.1/include/RawCubeChunk.h Xisis/3.4.1/include/Reduce.h Xisis/3.4.1/include/RegionalCachingAlgorithm.h Xisis/3.4.1/include/ReseauDistortionMap.h Xisis/3.4.1/include/RubberBandComboBox.h Xisis/3.4.1/include/RubberBandTool.h Xisis/3.4.1/include/SampleManager.h Xisis/3.4.1/include/SaveAsDialog.h Xisis/3.4.1/include/SawtoothStretchType.h Xisis/3.4.1/include/ScatterPlotAlarmConfigDialog.h Xisis/3.4.1/include/ScatterPlotConfigDialog.h Xisis/3.4.1/include/ScatterPlotData.h Xisis/3.4.1/include/ScatterPlotTool.h Xisis/3.4.1/include/ScatterPlotWindow.h Xisis/3.4.1/include/Selection.h Xisis/3.4.1/include/Sensor.h Xisis/3.4.1/include/SerialNumber.h Xisis/3.4.1/include/SerialNumberList.h Xisis/3.4.1/include/SessionLog.h Xisis/3.4.1/include/Shade.h Xisis/3.4.1/include/ShadeAtm.h Xisis/3.4.1/include/SimpleCylindrical.h Xisis/3.4.1/include/Sinusoidal.h Xisis/3.4.1/include/SmtkMatcher.h Xisis/3.4.1/include/SmtkPoint.h Xisis/3.4.1/include/SmtkStack.h Xisis/3.4.1/include/SocketThread.h Xisis/3.4.1/include/SparseBlockMatrix.h Xisis/3.4.1/include/SpatialPlotTool.h Xisis/3.4.1/include/SpecialPixel.h Xisis/3.4.1/include/SpecialPixelTool.h Xisis/3.4.1/include/SpectralPlotTool.h Xisis/3.4.1/include/SpectralPlotWindow.h Xisis/3.4.1/include/Spice.h Xisis/3.4.1/include/SpicePosition.h Xisis/3.4.1/include/SpiceRotation.h Xisis/3.4.1/include/SqlQuery.h Xisis/3.4.1/include/SqlRecord.h Xisis/3.4.1/include/SsiCamera.h Xisis/3.4.1/include/StandardDeviationOperator.h Xisis/3.4.1/include/StatCumProbDistDynCalc.h Xisis/3.4.1/include/Statistics.h Xisis/3.4.1/include/StatisticsTool.h Xisis/3.4.1/include/Stereo.h Xisis/3.4.1/include/StereoTool.h Xisis/3.4.1/include/StreamExporter.h Xisis/3.4.1/include/Stretch.h Xisis/3.4.1/include/StretchTool.h Xisis/3.4.1/include/StretchType.h Xisis/3.4.1/include/StripPolygonSeeder.h Xisis/3.4.1/include/SubArea.h Xisis/3.4.1/include/SunShadowTool.h Xisis/3.4.1/include/SurfaceModel.h Xisis/3.4.1/include/SurfacePoint.h Xisis/3.4.1/include/Tab.h Xisis/3.4.1/include/TabBar.h Xisis/3.4.1/include/Table.h Xisis/3.4.1/include/TableField.h Xisis/3.4.1/include/TableMainWindow.h Xisis/3.4.1/include/TableRecord.h Xisis/3.4.1/include/TaylorCameraDistortionMap.h Xisis/3.4.1/include/TextFile.h Xisis/3.4.1/include/ThemisIrCamera.h Xisis/3.4.1/include/ThemisIrDistortionMap.h Xisis/3.4.1/include/ThemisVisCamera.h Xisis/3.4.1/include/ThemisVisDistortionMap.h Xisis/3.4.1/include/TiffExporter.h Xisis/3.4.1/include/TiffImporter.h Xisis/3.4.1/include/TileManager.h Xisis/3.4.1/include/Tool.h Xisis/3.4.1/include/ToolPad.h Xisis/3.4.1/include/Topo.h Xisis/3.4.1/include/TopoAtm.h Xisis/3.4.1/include/TrackTool.h Xisis/3.4.1/include/Transform.h Xisis/3.4.1/include/TransverseMercator.h Xisis/3.4.1/include/UniqueIOCachingAlgorithm.h Xisis/3.4.1/include/UniversalGroundMap.h Xisis/3.4.1/include/UserInterface.h Xisis/3.4.1/include/UvvisCamera.h Xisis/3.4.1/include/VariableLineScanCameraDetectorMap.h Xisis/3.4.1/include/VecFilter.h Xisis/3.4.1/include/ViewportBuffer.h Xisis/3.4.1/include/ViewportBufferAction.h Xisis/3.4.1/include/ViewportBufferFill.h Xisis/3.4.1/include/ViewportBufferStretch.h Xisis/3.4.1/include/ViewportBufferTransform.h Xisis/3.4.1/include/ViewportMainWindow.h Xisis/3.4.1/include/ViewportMdiSubWindow.h Xisis/3.4.1/include/VikingCamera.h Xisis/3.4.1/include/VimsCamera.h Xisis/3.4.1/include/VimsGroundMap.h Xisis/3.4.1/include/VimsSkyMap.h Xisis/3.4.1/include/VoyagerCamera.h Xisis/3.4.1/include/WarningWidget.h Xisis/3.4.1/include/WindowTool.h Xisis/3.4.1/include/Workspace.h Xisis/3.4.1/include/WorldMapper.h Xisis/3.4.1/include/ZoomTool.h Xisis/3.4.1/include/iString.h Xisis/3.4.1/include/iTime.h Xisis/3.4.1/include/mocxtrack.h Xisis/3.4.1/lib/AtmosModel.plugin Xisis/3.4.1/lib/AutoReg.plugin Xisis/3.4.1/lib/Camera.plugin Xisis/3.4.1/lib/InterestOperator.plugin Xisis/3.4.1/lib/NormModel.plugin Xisis/3.4.1/lib/PhotoModel.plugin Xisis/3.4.1/lib/PolygonSeeder.plugin Xisis/3.4.1/lib/Projection.plugin Xisis/3.4.1/lib/libAdaptiveGruen.so Xisis/3.4.1/lib/libAlbedo.so Xisis/3.4.1/lib/libAlbedoAtm.so Xisis/3.4.1/lib/libAnisotropic1.so Xisis/3.4.1/lib/libAnisotropic2.so Xisis/3.4.1/lib/libApolloMetricCamera.so Xisis/3.4.1/lib/libApolloPanoramicCamera.so Xisis/3.4.1/lib/libCTXCamera.so Xisis/3.4.1/lib/libDawnFcCamera.so Xisis/3.4.1/lib/libDawnVirCamera.so Xisis/3.4.1/lib/libEquirectangular.so Xisis/3.4.1/lib/libForstnerOperator.so Xisis/3.4.1/lib/libGradientOperator.so Xisis/3.4.1/lib/libGridPolygonSeeder.so Xisis/3.4.1/lib/libHapke.so Xisis/3.4.1/lib/libHapkeAtm1.so Xisis/3.4.1/lib/libHapkeAtm2.so Xisis/3.4.1/lib/libHiresCamera.so Xisis/3.4.1/lib/libHiriseCamera.so Xisis/3.4.1/lib/libHrscCamera.so Xisis/3.4.1/lib/libIdealCamera.so Xisis/3.4.1/lib/libIsotropic1.so Xisis/3.4.1/lib/libIsotropic2.so Xisis/3.4.1/lib/libIssNACamera.so Xisis/3.4.1/lib/libIssWACamera.so Xisis/3.4.1/lib/libLambert.so Xisis/3.4.1/lib/libLambertAzimuthalEqualArea.so Xisis/3.4.1/lib/libLambertConformal.so Xisis/3.4.1/lib/libLimitPolygonSeeder.so Xisis/3.4.1/lib/libLoHighCamera.so Xisis/3.4.1/lib/libLoMediumCamera.so Xisis/3.4.1/lib/libLommelSeeliger.so Xisis/3.4.1/lib/libLroNarrowAngleCamera.so Xisis/3.4.1/lib/libLroWideAngleCamera.so Xisis/3.4.1/lib/libLunarAzimuthalEqualArea.so Xisis/3.4.1/lib/libLunarLambert.so Xisis/3.4.1/lib/libLunarLambertEmpirical.so Xisis/3.4.1/lib/libLunarLambertMcEwen.so Xisis/3.4.1/lib/libLwirCamera.so Xisis/3.4.1/lib/libMarciCamera.so Xisis/3.4.1/lib/libMariner10Camera.so Xisis/3.4.1/lib/libMaximumCorrelation.so Xisis/3.4.1/lib/libMdisCamera.so Xisis/3.4.1/lib/libMercator.so Xisis/3.4.1/lib/libMiniRF.so Xisis/3.4.1/lib/libMinimumDifference.so Xisis/3.4.1/lib/libMinnaert.so Xisis/3.4.1/lib/libMinnaertEmpirical.so Xisis/3.4.1/lib/libMixed.so Xisis/3.4.1/lib/libMocNarrowAngleCamera.so Xisis/3.4.1/lib/libMocWideAngleCamera.so Xisis/3.4.1/lib/libMoonAlbedo.so Xisis/3.4.1/lib/libMoravecOperator.so Xisis/3.4.1/lib/libNirCamera.so Xisis/3.4.1/lib/libNoNormalization.so Xisis/3.4.1/lib/libNoOperator.so Xisis/3.4.1/lib/libObliqueCylindrical.so Xisis/3.4.1/lib/libOrthographic.so Xisis/3.4.1/lib/libPointPerspective.so Xisis/3.4.1/lib/libPolarStereographic.so Xisis/3.4.1/lib/libShade.so Xisis/3.4.1/lib/libShadeAtm.so Xisis/3.4.1/lib/libSimpleCylindrical.so Xisis/3.4.1/lib/libSinusoidal.so Xisis/3.4.1/lib/libSsiCamera.so Xisis/3.4.1/lib/libStandardDeviationOperator.so Xisis/3.4.1/lib/libStripPolygonSeeder.so Xisis/3.4.1/lib/libThemisIrCamera.so Xisis/3.4.1/lib/libThemisVisCamera.so Xisis/3.4.1/lib/libTopo.so Xisis/3.4.1/lib/libTopoAtm.so Xisis/3.4.1/lib/libTransverseMercator.so Xisis/3.4.1/lib/libUvvisCamera.so Xisis/3.4.1/lib/libVikingCamera.so Xisis/3.4.1/lib/libVimsCamera.so Xisis/3.4.1/lib/libVoyagerCamera.so Xisis/3.4.1/lib/libisis3.4.1.a Xisis/3.4.1/lib/libisis3.4.1.so Xisis/3.4.1/lib/libisis3.4.1.so.3 Xisis/3.4.1/lib/libisis3.4.so Xisis/3.4.1/lib/libisis3.so Xisis/3.4.1/templates/gui/basictemplate.xml Xisis/3.4.1/templates/gui/comparisontemplate.xml Xisis/3.4.1/templates/gui/defaulttemplate.xml Xisis/3.4.1/templates/gui/listtemplate.xml Xisis/3.4.1/templates/gui/typetemplate.xml Xisis/3.4.1/version X@dirrm isis/3.4.1/templates/gui X@dirrm isis/3.4.1/templates X@dirrm isis/3.4.1/lib X@dirrm isis/3.4.1/include X@dirrm isis/3.4.1/bin/xml X@dirrm isis/3.4.1/bin X@dirrm isis/3.4.1 X@dirrm isis 65b134f0d82fc23433717f57e8aa4397 echo x - isis3/Makefile sed 's/^X//' >isis3/Makefile << 'de0c704a7a1cfe07904b1ca1a4fba3a3' XPORTNAME=3D isis3 XPORTVERSION=3D 3.4.1 XCATEGORIES=3D science X XMAINTAINER=3D ohartman@zedat.fu-berlin.de X XMASTER_SITES=3D # http://isis.astrogeology.usgs.gov/documents/InstallGu= ide/index.html X XLICENSE_FILE=3D ${WRKSRC}/license.txt X XCOMMENT=3D Integrated Software for Imagers and Spectrometers X#COMMENT+=3D SOURCE: rsync -azv --delete --partial isisdist.astrogeolog= y.usgs.gov::x86-64_linux_DEBIAN/isis . X#COMMENT+=3D DATA: rsync -azv --delete --partial isisdist.astrogeology.= usgs.gov::isis3data/data . X XUSE_QT4=3D corelib network linguist opengl qtestlib script scripttools XUSE_QT4+=3D graphicssystems-opengl gui imageformats inputmethods XUSE_QT4+=3D sql sql-odbc sql-mysql sql-pgsql svg webkit assistant assis= tantclient=20 XUSE_QT4+=3D designer xml xmlpatterns xmlpatterns-tool=20 XUSE_QT4+=3D moc qmake rcc uic X XUSE_X11=3D x11 XUSE_GL=3D yes XUSE_LDCONFIG=3D yes XUSE_GMAKE=3D yes XUSE_MYSQL=3D yes XUSE_PGSQL=3D yes X XMAKE_ARGS=3D config incs api apps X XOPTIONS_DEFINE=3D DOCS GCC XDOCS_DESC=3D Make and install docs XGCC_DESC=3D Use gcc (4.6+) compiler XOPTIONS_DEFAULT=3D GCC X X.include X X.if ${PORT_OPTIONS:MGCC} XUSE_GCC=3D 4.6+ X.endif X.if ${PORT_OPTIONS:MDOCS} XMAKE_ARGS+=3D docs X.endif X XBUILD_DEPENDS+=3D ${LOCALBASE}/bin/latex:${PORTSDIR}/print/teTeX XBUILD_DEPENDS+=3D ${LOCALBASE}/bin/doxygen:${PORTSDIR}/devel/doxygen XBUILD_DEPENDS+=3D ${LOCALBASE}/include/tnt/jama_lu.h:${PORTSDIR}/math/j= ama XBUILD_DEPENDS+=3D ${LOCALBASE}/include/gmm/gmm.h:${PORTSDIR}/math/gmm++= XBUILD_DEPENDS+=3D ${LOCALBASE}/bin/gawk:${PORTSDIR}/lang/gawk XBUILD_DEPENDS+=3D ${LOCALBASE}/bin/xalan-j:${PORTSDIR}/textproc/xalan-j= X# XLIB_DEPENDS+=3D qwt6.6:${PORTSDIR}/x11-toolkits/qwt6 XLIB_DEPENDS+=3D boost_thread.4:${PORTSDIR}/devel/boost-libs XLIB_DEPENDS+=3D cwd.2:${PORTSDIR}/devel/libcwd XLIB_DEPENDS+=3D gsl.16:${PORTSDIR}/math/gsl XLIB_DEPENDS+=3D cholmod.1:${PORTSDIR}/math/suitesparse XLIB_DEPENDS+=3D jpeg.11:${PORTSDIR}/graphics/jpeg XLIB_DEPENDS+=3D tiff.4:${PORTSDIR}/graphics/tiff XLIB_DEPENDS+=3D png15.15:${PORTSDIR}/graphics/png XLIB_DEPENDS+=3D geos.0:${PORTSDIR}/graphics/geos XLIB_DEPENDS+=3D gdal.17:${PORTSDIR}/graphics/gdal XLIB_DEPENDS+=3D protobuf.7:${PORTSDIR}/devel/protobuf XLIB_DEPENDS+=3D phonon:${PORTSDIR}/multimedia/phonon XLIB_DEPENDS+=3D superlu.4:${PORTSDIR}/math/superlu XLIB_DEPENDS+=3D cspice.6:${PORTSDIR}/astro/cspice XLIB_DEPENDS+=3D xerces-c.3:${PORTSDIR}/textproc/xerces-c3 X# XISIS3_LIB_VERSION=3D ${PORTVERSION:C/\.[0-9]*\.[0-9]*$//}=09 XISIS3_LIB_STATIC_FULL=3D lib${PORTNAME:C/[0-9]*$//}${PORTVERSION}.a X XISIS3_LIB_MAIN=3D lib${PORTNAME:C/[0-9]*$//}${PORTVERSION}.so.${ISIS3_L= IB_VERSION} XISIS3_LIB_1LN=3D lib${PORTNAME:C/[0-9]*$//}${PORTVERSION}.so XISIS3_LIB_2LN=3D lib${PORTNAME:C/[0-9]*$//}${PORTVERSION:C/\.[0-9]+[0-9= ]*$//}.so XISIS3_LIB_3LN=3D lib${PORTNAME:C/[0-9]*$//}${PORTVERSION:C/\.[0-9]+[0-9= ]*\.[0-9][0-9]*$//}.so X XISIS3_ROOT=3D ${PREFIX}/${PORTNAME:C/[0-9]*$//}/${PORTVERSION} X XMAKE_ENV+=3D ISISROOT=3D${WRKSRC} \ X ${CONFIGURE_ENV} \ X QT_INCDIR=3D${QT_INCDIR} \ X QT_LIBDIR=3D${QT_LIBDIR} \ X QMAKESPEC=3D${QMAKESPEC} \ X RCC=3D$(RCC) \ X UIC=3D$(UIC) \ X MOC=3D$(MOC) \ X QMAKE=3D$(QMAKE) X X# necessary for CLANG XCPPFLAGS+=3D -I{LOCALBASE}/include \ X -I${QT_INCDIR} X X.include X Xpre-configure: X unset ISISROOT X export ISISROOT=3D${WRKSRC} X ${INSTALL_DATA} ${FILESDIR}/config.freebsd ${WRKSRC}/make/ X Xdo-install: X# Install the shared libraries X.if !exists(${ISIS3_ROOT}/lib) X ${MKDIR} ${ISIS3_ROOT}/lib X.endif X ${INSTALL_PROGRAM} ${WRKSRC}/lib/${ISIS3_LIB_1LN} ${ISIS3_ROOT}/lib/${I= SIS3_LIB_MAIN} X ${INSTALL_PROGRAM} ${WRKSRC}/lib/lib[A-Z]*.so ${ISIS3_ROOT}/lib/ X X ${INSTALL_DATA} ${WRKSRC}/lib/${ISIS3_LIB_STATIC_FULL} ${ISIS3_ROOT}/li= b/ X ${INSTALL_DATA} ${WRKSRC}/lib/*.plugin ${ISIS3_ROOT}/lib/ X X.if !exists(${ISIS3_ROOT}/include) X ${MKDIR} ${ISIS3_ROOT}/include X.endif X ${INSTALL_DATA} ${WRKSRC}/inc/*.h ${ISIS3_ROOT}/include/ X X.if !exists(${ISIS3_ROOT}/templates/gui/) X ${MKDIR} ${ISIS3_ROOT}/templates/gui X.endif X X ${INSTALL_DATA} ${WRKSRC}/templates/gui/*.xml ${ISIS3_ROOT}/templates/g= ui/ X X.if !exists(${ISIS3_ROOT}/bin) X ${MKDIR} ${ISIS3_ROOT}/bin X.endif X ${INSTALL_PROGRAM} ${WRKSRC}/bin/[a-wz]* ${ISIS3_ROOT}/bin/ X X.if !exists(${ISIS3_ROOT}/bin/xml/) X ${MKDIR} ${ISIS3_ROOT}/bin/xml X.endif X ${INSTALL_DATA} ${WRKSRC}/bin/xml/* ${ISIS3_ROOT}/bin/xml/ X ${INSTALL_DATA} ${WRKSRC}/IsisPreferences ${ISIS3_ROOT}/ X=09 Xpost-install: X @${ECHO} "post-install:"; \ X cd ${ISIS3_ROOT}/lib &&\ X ${LN} -fs ${ISIS3_LIB_MAIN} ${ISIS3_LIB_1LN} &&\ X ${LN} -fs ${ISIS3_LIB_1LN} ${ISIS3_LIB_2LN} &&\ X ${LN} -fs ${ISIS3_LIB_2LN} ${ISIS3_LIB_3LN} &&\ X ${ECHO} ${PORTVERSION} > ${ISIS3_ROOT}/version X X.include de0c704a7a1cfe07904b1ca1a4fba3a3 exit --------------080904040108080205020100-- --------------enigD5C4A32F7C1F8E48DEB154A6 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iQEcBAEBAgAGBQJQYbcAAAoJEOgBcD7A/5N8SmcH/ihyp4QqK8v7s0kcdTZzj1zd KcTO7VvKcz85QP28CSdUUtWMKfw5Qtnv+8t6LYX0c7b8BtA7fpO4jIiR4Qua60bN g4IRdHMZy/wMz59Peb84LXPRMXP5mbB9e3BTOgaf6PNL+rWZXx8f2ia7ZPIh2bbf p6yci6krM3702HlX0CNjqD3ENpDucRESRiErF737qeJSn2ZfYSDK8DTNSUkETr62 uSTKAX3lRZRjARj0Ll+9S5FYXplJzNC+FM39KHpkSOAltWsCLhpUc/T6mYqIlCK/ BW0yCyNcUM/j5sqHFlLanIWmHo43wCPLmnAPo+Scd6/m4iFk23khyPQgC4ADOB0= =ykt/ -----END PGP SIGNATURE----- --------------enigD5C4A32F7C1F8E48DEB154A6-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 14:00:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 399F1106564A for ; Tue, 25 Sep 2012 14:00:32 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 126E78FC19 for ; Tue, 25 Sep 2012 14:00:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PE0Vw2090649 for ; Tue, 25 Sep 2012 14:00:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PE0VxS090638; Tue, 25 Sep 2012 14:00:31 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 14:00:31 GMT Resent-Message-Id: <201209251400.q8PE0VxS090638@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sean Greven Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0B4FE106566C for ; Tue, 25 Sep 2012 13:53:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id DE2D08FC08 for ; Tue, 25 Sep 2012 13:53:22 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PDrMVD026339 for ; Tue, 25 Sep 2012 13:53:22 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8PDrMEo026338; Tue, 25 Sep 2012 13:53:22 GMT (envelope-from nobody) Message-Id: <201209251353.q8PDrMEo026338@red.freebsd.org> Date: Tue, 25 Sep 2012 13:53:22 GMT From: Sean Greven To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171951: update port: security/fwknop FireWall KNock OPerator X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 14:00:32 -0000 >Number: 171951 >Category: ports >Synopsis: update port: security/fwknop FireWall KNock OPerator >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 14:00:31 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Sean Greven >Release: 9.0 >Organization: Private >Environment: >Description: Updated the port from 1.8.3 to 2.0.3, changes include a migration from perl to C, support for ipfw and pf. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # fwknop # fwknop/Makefile # fwknop/pkg-descr # fwknop/files # fwknop/files/fwknopd.in # fwknop/distinfo # fwknop/pkg-plist # echo c - fwknop mkdir -p fwknop > /dev/null 2>&1 echo x - fwknop/Makefile sed 's/^X//' >fwknop/Makefile << '32b12b67eb0e26ad796b15a92793de9a' X# New ports collection makefile for: fwknop X# X# Date created: 23 Nov 2007 X# Whom: Sean Greven X# X# $FreeBSD: ports/security/fwknop/Makefile,v 1.6 2012/07/25 11:24:09 cs Exp $ X# X XPORTNAME= fwknop XPORTVERSION= 2.0.3 XPORTREVISION= 2 XCATEGORIES= security XMASTER_SITES= http://www.cipherdyne.org/fwknop/download/ X XMAINTAINER= sean.greven@gmail.com XCOMMENT= SPA implementation for Linux and FreeBSD X XOPTIONS_DEFINE= GPGME XOPTIONS_DEFAULT= GPGME XGPGME_DESC= Build support for gpgme XMAN8= fwknop.8 fwknopd.8 XMANCOMPRESSED= no XGNU_CONFIGURE= yes XUSE_RC_SUBR= fwknopd X X.include X X.if ${PORT_OPTIONS:MGPGME} XBUILD_DEPENDS+= gpgme:${PORTSDIR}/security/gpgme X.endif X X.include 32b12b67eb0e26ad796b15a92793de9a echo x - fwknop/pkg-descr sed 's/^X//' >fwknop/pkg-descr << '13964009feac0ad08251c1452d402a44' Xfwknop,"FireWall KNock OPerator", implements Single Packet Authorization (SPA). XWWW: http://www.cipherdyne.org/fwknop/ 13964009feac0ad08251c1452d402a44 echo c - fwknop/files mkdir -p fwknop/files > /dev/null 2>&1 echo x - fwknop/files/fwknopd.in sed 's/^X//' >fwknop/files/fwknopd.in << 'bd83b5a2110c5ae1f9e7fa38c0d855fe' X#!/bin/sh X# X# $FreeBSD: ports/security/fwknop X# X X# X# Add the following lines to /etc/rc.conf to enable fwknopd: X# X#fwknopd_enable="YES" X# X# See fwknopd(8) for flags X# X X. /etc/rc.subr X Xname=fwknopd Xrcvar=fwknopd_enable X Xcommand=/usr/local/sbin/fwknopd Xrequired_files=/usr/local/etc/fwknop/access.conf X Xstart_precmd=start_precmd Xstop_postcmd=stop_postcmd X Xextra_commands="reload" X Xstart_precmd() X{ X} X Xstop_postcmd() X{ X} X X# read settings, set default values Xload_rc_config $name X: ${fwknopd_enable="NO"} X Xrun_rc_command "$1" bd83b5a2110c5ae1f9e7fa38c0d855fe echo x - fwknop/distinfo sed 's/^X//' >fwknop/distinfo << 'bf6907faa0a1dae87540bb613cfc0d66' XSHA256 (fwknop-2.0.3.tar.gz) = f7f306a66c641020e7c7a820eaa3743e2700ddee6e26cca37440db95df56b986 XSIZE (fwknop-2.0.3.tar.gz) = 904769 bf6907faa0a1dae87540bb613cfc0d66 echo x - fwknop/pkg-plist sed 's/^X//' >fwknop/pkg-plist << 'b899a2992e3cfe7ddf20f6368e8ddfc6' Xbin/fwknop X%%ETCDIR%%/access.conf X%%ETCDIR%%/fwknopd.conf Xinclude/fko.h Xinfo/dir Xinfo/libfko.info Xlib/libfko.a Xlib/libfko.la Xlib/libfko.so Xlib/libfko.so.0 Xsbin/fwknopd X@dirrm %%ETCDIR%% b899a2992e3cfe7ddf20f6368e8ddfc6 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 14:01:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E40E41065672; Tue, 25 Sep 2012 14:01:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B73408FC14; Tue, 25 Sep 2012 14:01:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PE1SFD097243; Tue, 25 Sep 2012 14:01:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PE1Sl8097234; Tue, 25 Sep 2012 14:01:28 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 14:01:28 GMT Message-Id: <201209251401.q8PE1Sl8097234@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171951: update port: security/fwknop FireWall KNock OPerator X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 14:01:29 -0000 Synopsis: update port: security/fwknop FireWall KNock OPerator Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: edwin Class-Changed-When: Tue Sep 25 14:01:27 UTC 2012 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171951 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 14:10:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5AFB01065670; Tue, 25 Sep 2012 14:10:19 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F0DA8FC0C; Tue, 25 Sep 2012 14:10:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PEAJ9m000883; Tue, 25 Sep 2012 14:10:19 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PEAJAH000871; Tue, 25 Sep 2012 14:10:19 GMT (envelope-from makc) Date: Tue, 25 Sep 2012 14:10:19 GMT Message-Id: <201209251410.q8PEAJAH000871@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/171918: New port: biology/plink X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 14:10:19 -0000 Synopsis: New port: biology/plink Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Tue Sep 25 14:10:18 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171918 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 14:10:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8047106564A; Tue, 25 Sep 2012 14:10:22 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ACD638FC17; Tue, 25 Sep 2012 14:10:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PEAMWo001631; Tue, 25 Sep 2012 14:10:22 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PEAMgR001617; Tue, 25 Sep 2012 14:10:22 GMT (envelope-from makc) Date: Tue, 25 Sep 2012 14:10:22 GMT Message-Id: <201209251410.q8PEAMgR001617@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/171922: New port: biology/plinkseq X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 14:10:22 -0000 Synopsis: New port: biology/plinkseq Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Tue Sep 25 14:10:22 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171922 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 14:12:47 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 116C9106564A; Tue, 25 Sep 2012 14:12:47 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DB5938FC18; Tue, 25 Sep 2012 14:12:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PECkcd007484; Tue, 25 Sep 2012 14:12:46 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PECkSr007480; Tue, 25 Sep 2012 14:12:46 GMT (envelope-from makc) Date: Tue, 25 Sep 2012 14:12:46 GMT Message-Id: <201209251412.q8PECkSr007480@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/166726: New port: science/fvcom X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 14:12:47 -0000 Synopsis: New port: science/fvcom Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Tue Sep 25 14:12:46 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=166726 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 14:12:49 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76B34106566C; Tue, 25 Sep 2012 14:12:49 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4B7638FC23; Tue, 25 Sep 2012 14:12:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PECnuv007549; Tue, 25 Sep 2012 14:12:49 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PECnJx007545; Tue, 25 Sep 2012 14:12:49 GMT (envelope-from makc) Date: Tue, 25 Sep 2012 14:12:49 GMT Message-Id: <201209251412.q8PECnJx007545@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/166728: New port: science/fvcom-mpi X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 14:12:49 -0000 Synopsis: New port: science/fvcom-mpi Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Tue Sep 25 14:12:48 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=166728 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 14:40:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D491106564A for ; Tue, 25 Sep 2012 14:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 304F98FC1A for ; Tue, 25 Sep 2012 14:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PEe13k027831 for ; Tue, 25 Sep 2012 14:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PEe14j027830; Tue, 25 Sep 2012 14:40:01 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 14:40:01 GMT Resent-Message-Id: <201209251440.q8PEe14j027830@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 806E8106566B for ; Tue, 25 Sep 2012 14:31:47 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id F416F8FC0C for ; Tue, 25 Sep 2012 14:31:46 +0000 (UTC) Received: (qmail invoked by alias); 25 Sep 2012 14:31:39 -0000 Received: from 201-230.4-85.cust.bluewin.ch (EHLO something.email.com) [85.4.230.201] by mail.gmx.net (mp036) with SMTP; 25 Sep 2012 16:31:39 +0200 Received: by something.email.com (sSMTP sendmail emulation); Tue, 25 Sep 2012 16:31:38 +0200 Message-Id: <20120925143147.806E8106566B@hub.freebsd.org> Date: Tue, 25 Sep 2012 16:31:38 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/171952: [PATCH] multimedia/dvdauthor: update to 0.7.1, take maintainership, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 14:40:01 -0000 >Number: 171952 >Category: ports >Synopsis: [PATCH] multimedia/dvdauthor: update to 0.7.1, take maintainership, OptionsNG >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 14:40:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed - OptionsNG - Clean install Documentation - Update to 0.7.1 - Take maintainership Added file(s): - files/README.FreeBSD.in Removed file(s): - files/README.FreeBSD - files/patch-spuunmux.c In new Version is included #include if (setjmp(png_jmpbuf(png_ptr))) Generated and tested manually, tested with port test and with RedPorts (all RELEASES, CLANG), sent with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: portlint -A WARN: Makefile: for new port, make $FreeBSD$ tag in comment section empty, to make SVN happy. 0 fatal errors and 1 warning found. Build log RedPorts https://redports.org/buildarchive/20120925084454-7407/ >Fix: --- dvdauthor-0.7.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/multimedia/dvdauthor/Makefile ./Makefile --- /usr/ports/multimedia/dvdauthor/Makefile 2012-06-01 07:22:27.000000000 +0200 +++ ./Makefile 2012-09-25 16:19:58.000000000 +0200 @@ -6,64 +6,70 @@ # PORTNAME= dvdauthor -PORTVERSION= 0.7.0 -PORTREVISION= 3 +PORTVERSION= 0.7.1 CATEGORIES= multimedia MASTER_SITES= SF -MAINTAINER= ports@FreeBSD.org +MAINTAINER= nemysis@gmx.ch COMMENT= Makes a DVD file structure from one or more MPEG2 streams -LIB_DEPENDS= dvdread.4:${PORTSDIR}/multimedia/libdvdread \ - fribidi.3:${PORTSDIR}/converters/fribidi \ - xml2.5:${PORTSDIR}/textproc/libxml2 \ - freetype.9:${PORTSDIR}/print/freetype2 +LICENSE= GPLv2 -USE_BISON= build -USE_GMAKE= yes +LIB_DEPENDS= dvdread:${PORTSDIR}/multimedia/libdvdread \ + fribidi:${PORTSDIR}/converters/fribidi \ + iconv:${PORTSDIR}/converters/libiconv \ + freetype:${PORTSDIR}/print/freetype2 \ + png15:${PORTSDIR}/graphics/png + +WRKSRC= ${WRKDIR}/${PORTNAME} + +USE_GNOME= libxml2 GNU_CONFIGURE= yes -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -WRKSRC= ${WRKDIR}/dvdauthor -MAN1= dvdauthor.1 dvddirdel.1 dvdunauthor.1 mpeg2desc.1 spumux.1 spuunmux.1 +USE_GMAKE= yes +CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib -.include +DOCSRCDIR1= ${WRKSRC} +DOC_FILES1= AUTHORS ChangeLog README TODO -.if exists(${LOCALBASE}/lib/libfreetype.so.9) -WITH_FREETYPE= yes -.endif -.if exists(${LOCALBASE}/lib/libiconv.so) -WITH_ICONV= yes +DOCSRCDIR2= ${WRKDIR} +DOC_FILES2= README.FreeBSD + +MAN1= dvdauthor.1 dvddirdel.1 dvdunauthor.1 mpeg2desc.1 spumux.1 spuunmux.1 + +OPTIONS_DEFINE= VIDEO-FORMAT IMAGEMAGICK + +OPTIONS_SINGLE= VIDEO-FORMAT +OPTIONS_SINGLE_VIDEO-FORMAT= NTSC PAL + +VIDEO-FORMAT_DESC= Use default video format +NTSC_DESC= Default video format NTSC +PAL_DESC= Default video format PAL + +SUB_FILES= README.FreeBSD + +.include + +.if ${PORT_OPTIONS:MNTSC} +.if ${PORT_OPTIONS:MVIDEO-FORMAT} +CONFIGURE_ENV+= --enable-default-video-format=NTSC .endif -.if exists(${LOCALBASE}/lib/libMagickWand.so.5) -WITH_IMAGEMAGICK= yes .endif -.if defined(WITH_ICONV) -USE_ICONV= yes -CFLAGS+= -DICONV_CONV=yes +.if ${PORT_OPTIONS:MPAL} +.if ${PORT_OPTIONS:MVIDEO-FORMAT} +CONFIGURE_ENV+= --enable-default-video-format=PAL .endif -.if defined(WITH_IMAGEMAGICK) -LIB_DEPENDS+= MagickWand.5:${PORTSDIR}/graphics/ImageMagick -.else -LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png .endif -pre-everything:: -.if !defined(WITH_ICONV) - @${ECHO_MSG} "You can enable Iconv support by defining WITH_ICONV." - @${ECHO_MSG} -.endif -.if !defined(WITH_IMAGEMAGICK) - @${ECHO_MSG} "You can enable ImageMagick support by defining WITH_IMAGEMAGICK." - @${ECHO_MSG} +.if ${PORT_OPTIONS:MIMAGEMAGICK} +LIB_DEPENDS+= Magick:${PORTSDIR}/graphics/ImageMagick .endif post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/dvdauthor - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/dvdauthor - ${INSTALL_DATA} ${FILESDIR}/README.FreeBSD ${PREFIX}/share/doc/dvdauthor +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${DOCSDIR} + ${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${DOCSDIR} .endif -.include +.include diff -ruN --exclude=CVS /usr/ports/multimedia/dvdauthor/distinfo ./distinfo --- /usr/ports/multimedia/dvdauthor/distinfo 2011-09-16 20:40:27.000000000 +0200 +++ ./distinfo 2012-09-25 00:06:22.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (dvdauthor-0.7.0.tar.gz) = aea6af7b99eba38ffa9dc5ad1521c2cc652e043cea0e7482e239d2a3fc2f34d0 -SIZE (dvdauthor-0.7.0.tar.gz) = 414191 +SHA256 (dvdauthor-0.7.1.tar.gz) = 501fb11b09c6eb9c5a229dcb400bd81e408cc78d34eab6749970685023c51fe9 +SIZE (dvdauthor-0.7.1.tar.gz) = 421324 diff -ruN --exclude=CVS /usr/ports/multimedia/dvdauthor/files/README.FreeBSD ./files/README.FreeBSD --- /usr/ports/multimedia/dvdauthor/files/README.FreeBSD 2003-10-22 23:20:02.000000000 +0200 +++ ./files/README.FreeBSD 1970-01-01 01:00:00.000000000 +0100 @@ -1,43 +0,0 @@ -To create mpeg files suitable for a DVD, you can use the -multimedia/transcode port. - -To encode video, use the following: - transcode -i .... -y mpeg2enc,null -w 9500 -F '8,-q6 -N -P' -o output - -This creates output.m2v, MPEG2 video at 9500Kbps (peak bitrate). -Please refer to the man page of mpeg2desc for various encoder options -(to be put after "-F '8,"), and to the MJPEG Tools Howto for useful -hints. - -You can add "-J yuvdenoise" to reduce video noise before encoding, -this yields very substantial gains in required bit rate. - -For audio: - transcode -i .... -y null,toolame -E 48000 -b 224 -o output -This creates output.mp2, MPEG 1 Layer II audio, 48KHz, bitrate 224Kbps. - -Then multiplex the streams: - mplex -f 8 -o output.mpeg output.m2v output.mp2 - -You can then use the resulting output.mpeg file with dvdauthor. - -Alternatively, you can use the bbmpeg codec which is faster but not -as good in terms of quality, especially at low birates: - transcode -i .... -y mpeg -F d -E 48000 -b 224 -o output - tcmplex -i output.m2v -p output.mpa -m d -o output.mpeg - -Once your DVD is ready, you can use sysutils/dvd+rw-tools to burn -it, or burncd(8) if it is a DVD+RW or DVD-RW. - - Pierre Beyssac (pb@freebsd.org) - -Recommended reading: -- mjpegtools home page - http://mjpeg.sourceforge.net/ -- mjpegtools howto - https://sourceforge.net/docman/display_doc.php?docid=3456&group_id=5776 -- transcode examples - http://www.theorie.physik.uni-goettingen.de/~ostreich/transcode/html/index.html -- "some thoughts on DVD authoring" - http://www.tappin.me.uk/Linux/dvd.html - diff -ruN --exclude=CVS /usr/ports/multimedia/dvdauthor/files/README.FreeBSD.in ./files/README.FreeBSD.in --- /usr/ports/multimedia/dvdauthor/files/README.FreeBSD.in 1970-01-01 01:00:00.000000000 +0100 +++ ./files/README.FreeBSD.in 2003-10-22 23:20:02.000000000 +0200 @@ -0,0 +1,43 @@ +To create mpeg files suitable for a DVD, you can use the +multimedia/transcode port. + +To encode video, use the following: + transcode -i .... -y mpeg2enc,null -w 9500 -F '8,-q6 -N -P' -o output + +This creates output.m2v, MPEG2 video at 9500Kbps (peak bitrate). +Please refer to the man page of mpeg2desc for various encoder options +(to be put after "-F '8,"), and to the MJPEG Tools Howto for useful +hints. + +You can add "-J yuvdenoise" to reduce video noise before encoding, +this yields very substantial gains in required bit rate. + +For audio: + transcode -i .... -y null,toolame -E 48000 -b 224 -o output +This creates output.mp2, MPEG 1 Layer II audio, 48KHz, bitrate 224Kbps. + +Then multiplex the streams: + mplex -f 8 -o output.mpeg output.m2v output.mp2 + +You can then use the resulting output.mpeg file with dvdauthor. + +Alternatively, you can use the bbmpeg codec which is faster but not +as good in terms of quality, especially at low birates: + transcode -i .... -y mpeg -F d -E 48000 -b 224 -o output + tcmplex -i output.m2v -p output.mpa -m d -o output.mpeg + +Once your DVD is ready, you can use sysutils/dvd+rw-tools to burn +it, or burncd(8) if it is a DVD+RW or DVD-RW. + + Pierre Beyssac (pb@freebsd.org) + +Recommended reading: +- mjpegtools home page + http://mjpeg.sourceforge.net/ +- mjpegtools howto + https://sourceforge.net/docman/display_doc.php?docid=3456&group_id=5776 +- transcode examples + http://www.theorie.physik.uni-goettingen.de/~ostreich/transcode/html/index.html +- "some thoughts on DVD authoring" + http://www.tappin.me.uk/Linux/dvd.html + diff -ruN --exclude=CVS /usr/ports/multimedia/dvdauthor/files/patch-spuunmux.c ./files/patch-spuunmux.c --- /usr/ports/multimedia/dvdauthor/files/patch-spuunmux.c 2012-06-01 07:22:27.000000000 +0200 +++ ./files/patch-spuunmux.c 1970-01-01 01:00:00.000000000 +0100 @@ -1,19 +0,0 @@ ---- src/spuunmux.c.orig 2010-05-10 09:27:55.000000000 +0200 -+++ src/spuunmux.c 2012-04-27 10:44:31.000000000 +0200 -@@ -39,6 +39,7 @@ - #include - - #include -+#include - - #include "rgb.h" - #include "common.h" -@@ -610,7 +611,7 @@ - png_destroy_write_struct(&png_ptr, (png_infopp)NULL); - return -1; - } /*if*/ -- if (setjmp(png_ptr->jmpbuf)) -+ if (setjmp(png_jmpbuf(png_ptr))) - { - png_destroy_write_struct(&png_ptr, &info_ptr); - fclose(fp); diff -ruN --exclude=CVS /usr/ports/multimedia/dvdauthor/pkg-plist ./pkg-plist --- /usr/ports/multimedia/dvdauthor/pkg-plist 2005-12-27 03:14:54.000000000 +0100 +++ ./pkg-plist 2012-09-25 00:06:57.000000000 +0200 @@ -4,9 +4,13 @@ bin/mpeg2desc bin/spumux bin/spuunmux -share/dvdauthor/dvdauthor.xsd -share/dvdauthor/spumux.xsd -@dirrm share/dvdauthor +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/README.FreeBSD +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%DATADIR%%/common.xsd +%%DATADIR%%/dvdauthor.xsd +%%DATADIR%%/spumux.xsd +@dirrm %%DATADIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%% --- dvdauthor-0.7.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 17:38:41 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 222441065672; Tue, 25 Sep 2012 17:38:41 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EAD3F8FC0C; Tue, 25 Sep 2012 17:38:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PHce3V090595; Tue, 25 Sep 2012 17:38:40 GMT (envelope-from bapt@freefall.freebsd.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PHceqS090591; Tue, 25 Sep 2012 17:38:40 GMT (envelope-from bapt) Date: Tue, 25 Sep 2012 17:38:40 GMT Message-Id: <201209251738.q8PHceqS090591@freefall.freebsd.org> To: bapt@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, office@FreeBSD.org From: bapt@FreeBSD.org Cc: Subject: Re: ports/171791: libreoffice-3.5.6_1 display corruption [unusable] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 17:38:41 -0000 Synopsis: libreoffice-3.5.6_1 display corruption [unusable] Responsible-Changed-From-To: freebsd-ports-bugs->office Responsible-Changed-By: bapt Responsible-Changed-When: Tue Sep 25 17:38:25 UTC 2012 Responsible-Changed-Why: Over to office@ http://www.freebsd.org/cgi/query-pr.cgi?pr=171791 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:00:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15A9F106567C for ; Tue, 25 Sep 2012 18:00:27 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C7C178FC1B for ; Tue, 25 Sep 2012 18:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PI0ObL008151 for ; Tue, 25 Sep 2012 18:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PI0OSI008143; Tue, 25 Sep 2012 18:00:24 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:00:24 GMT Resent-Message-Id: <201209251800.q8PI0OSI008143@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C807B106564A for ; Tue, 25 Sep 2012 18:00:14 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id 622D38FC0A for ; Tue, 25 Sep 2012 18:00:13 +0000 (UTC) Received: from msa106lp.auone-net.jp (MSA106lp [172.27.12.184]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 11C1B50033D for ; Wed, 26 Sep 2012 03:00:13 +0900 (JST) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 9C69523C031 for ; Wed, 26 Sep 2012 03:00:03 +0900 (JST) Message-Id: <20120926022003.400f12bdd3324d14d6fe5e4e@yahoo.com> Date: Wed, 26 Sep 2012 02:20:03 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171954: astro/cfitsio: Update to version 3.310 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:00:27 -0000 >Number: 171954 >Category: ports >Synopsis: astro/cfitsio: Update to version 3.310 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:00:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 3.310 New file: files/patch-Makefile.in files/patch-fpackutil.c >How-To-Repeat: >Fix: diff -urN /usr/ports/astro/cfitsio/Makefile astro/cfitsio/Makefile --- /usr/ports/astro/cfitsio/Makefile 2012-07-26 14:40:22.000000000 +0900 +++ astro/cfitsio/Makefile 2012-09-25 03:15:28.000000000 +0900 @@ -1,34 +1,38 @@ -# New ports collection makefile for: cfitsio -# Date created: Fri Apr 30 16:49:36 CEST 2004 -# Whom: Markus Brueffer -# +# Created by: Markus Brueffer # $FreeBSD: ports/astro/cfitsio/Makefile,v 1.19 2012/07/26 05:40:22 bapt Exp $ -# PORTNAME= cfitsio -PORTVERSION= 3.300 +PORTVERSION= 3.310 CATEGORIES= astro -MASTER_SITES= ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/ \ - ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/oldvers/ +MASTER_SITES= ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/%SUBDIR%/ \ + http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/%SUBDIR%/ +MASTER_SITE_SUBDIR= . oldvers DISTNAME= ${PORTNAME}${PORTVERSION:S/.//} MAINTAINER= ports@FreeBSD.org COMMENT= Library for reading and writing files in FITS data format +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/License.txt + LIB_DEPENDS= f2c:${PORTSDIR}/lang/f2c OPTIONS_DEFINE= DOCS WRKSRC= ${WRKDIR}/${PORTNAME} +USE_PKGCONFIG= build GNU_CONFIGURE= yes CONFIGURE_ARGS= ac_cv_prog_FC="f2c" ALL_TARGET= shared USE_LDCONFIG= yes -USE_PKGCONFIG= yes +MAKE_JOBS_SAFE= yes .include +post-extract: + @cd ${WRKSRC} && ${MV} zlib.h zlib.h.dist + post-patch: @${GREP} -lR "" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \ 's|||g' diff -urN /usr/ports/astro/cfitsio/distinfo astro/cfitsio/distinfo --- /usr/ports/astro/cfitsio/distinfo 2012-07-11 16:42:19.000000000 +0900 +++ astro/cfitsio/distinfo 2012-08-10 00:49:30.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (cfitsio3300.tar.gz) = 7a2b5401c184297df1e44a4f4de564feff74d64d038918213526aa454db03f3e -SIZE (cfitsio3300.tar.gz) = 4660623 +SHA256 (cfitsio3310.tar.gz) = e8a70bca202caa4773c4a50288622ef5398752de5a5e8fcfc232859f928ff5d9 +SIZE (cfitsio3310.tar.gz) = 4664559 diff -urN /usr/ports/astro/cfitsio/files/patch-Makefile.in astro/cfitsio/files/patch-Makefile.in --- /usr/ports/astro/cfitsio/files/patch-Makefile.in 1970-01-01 09:00:00.000000000 +0900 +++ astro/cfitsio/files/patch-Makefile.in 2012-08-10 01:18:32.000000000 +0900 @@ -0,0 +1,22 @@ +--- Makefile.in.orig 2012-07-18 05:38:34.000000000 +0900 ++++ Makefile.in 2012-08-10 01:18:07.000000000 +0900 +@@ -52,9 +52,7 @@ + putcolj.c putcolk.c putcoluk.c putcoll.c putcols.c putcolsb.c \ + putcolu.c putcolui.c putcoluj.c putkey.c region.c scalnull.c \ + swapproc.c wcssub.c wcsutil.c imcompress.c quantize.c ricecomp.c \ +- pliocomp.c fits_hcompress.c fits_hdecompress.c zuncompress.c zcompress.c \ +- adler32.c crc32.c inffast.c inftrees.c trees.c zutil.c \ +- deflate.c infback.c inflate.c uncompr.c \ ++ pliocomp.c fits_hcompress.c fits_hdecompress.c zuncompress.c zcompress.c + + SOURCES = ${CORE_SOURCES} @F77_WRAPPERS@ + +@@ -87,7 +85,7 @@ + shared: libcfitsio${SHLIB_SUFFIX} + + libcfitsio${SHLIB_SUFFIX}: ${OBJECTS} +- ${SHLIB_LD} ${LDFLAGS} -o $@ ${OBJECTS} -lm ${LIBS} ++ ${SHLIB_LD} ${LDFLAGS} -o $@ ${OBJECTS} -lm -lz ${LIBS} + + install: libcfitsio.a $(INSTALL_DIRS) + @if [ -f libcfitsio.a ]; then \ diff -urN /usr/ports/astro/cfitsio/files/patch-fpackutil.c astro/cfitsio/files/patch-fpackutil.c --- /usr/ports/astro/cfitsio/files/patch-fpackutil.c 1970-01-01 09:00:00.000000000 +0900 +++ astro/cfitsio/files/patch-fpackutil.c 2012-08-10 01:29:14.000000000 +0900 @@ -0,0 +1,10 @@ +--- fpackutil.c.orig 2012-07-18 05:36:42.000000000 +0900 ++++ fpackutil.c 2012-08-10 01:28:12.000000000 +0900 +@@ -5,6 +5,7 @@ + #include + #include + #include ++#include + + /* #include "bzlib.h" only for experimental purposes */ + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:00:48 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85C29106564A; Tue, 25 Sep 2012 18:00:48 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 59B678FC27; Tue, 25 Sep 2012 18:00:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PI0mD1011913; Tue, 25 Sep 2012 18:00:48 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PI0mHm011907; Tue, 25 Sep 2012 18:00:48 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:00:48 GMT Message-Id: <201209251800.q8PI0mHm011907@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171954: astro/cfitsio: Update to version 3.310 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:00:48 -0000 Synopsis: astro/cfitsio: Update to version 3.310 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:00:47 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171954 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4FE46106567F for ; Tue, 25 Sep 2012 18:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 24BF38FC21 for ; Tue, 25 Sep 2012 18:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIA9Mp016822 for ; Tue, 25 Sep 2012 18:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIA98o016817; Tue, 25 Sep 2012 18:10:09 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:09 GMT Resent-Message-Id: <201209251810.q8PIA98o016817@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6761E1065690 for ; Tue, 25 Sep 2012 18:00:36 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id C988B8FC18 for ; Tue, 25 Sep 2012 18:00:35 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 5B0C023C036 for ; Wed, 26 Sep 2012 03:00:32 +0900 (JST) Message-Id: <20120926022022.5ccc323de07252a93485730b@yahoo.com> Date: Wed, 26 Sep 2012 02:20:22 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171958: audio/fluidsynth: Update to version 1.1.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:09 -0000 >Number: 171958 >Category: ports >Synopsis: audio/fluidsynth: Update to version 1.1.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.1.6 New file: files/patch-src__drivers__fluid_oss.c Remove file: files/patch-src__CMakeLists.txt >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/fluidsynth/Makefile audio/fluidsynth/Makefile --- /usr/ports/audio/fluidsynth/Makefile 2012-05-30 20:14:34.000000000 +0900 +++ audio/fluidsynth/Makefile 2012-09-25 03:16:03.000000000 +0900 @@ -1,52 +1,49 @@ -# ports collection makefile for: fluidsynth -# Date created: 27 Nov 2003 -# Whom: Juha Nygard -# +# Created by: Juha Nygard # $FreeBSD: ports/audio/fluidsynth/Makefile,v 1.23 2012/05/30 11:14:34 bapt Exp $ -# PORTNAME= fluidsynth -PORTVERSION= 1.1.5 +PORTVERSION= 1.1.6 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION} MAINTAINER= multimedia@FreeBSD.org COMMENT= Real-time software synthesizer based on the SoundFont 2 specifications -LICENSE= GPLv2 # (or later) -LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE= LGPL20 OPTIONS_DEFINE= JACK ALSA DBUS LADSPA LASH PORTAUDIO PULSEAUDIO SNDFILE OPTIONS_DEFAULT= JACK USE_BZIP2= yes -USE_GNOME= glib20 pkgconfig +USE_GNOME= glib20 +USE_PKGCONFIG= build USE_CMAKE= yes CMAKE_ARGS= -Denable-ladcca:BOOL=FALSE \ -Denable-midishare:BOOL=FALSE USE_LDCONFIG= yes +MAKE_JOBS_SAFE= yes -CFLAGS+= ${PTHREAD_CFLAGS} -LDFLAGS+= ${PTHREAD_LIBS} +CFLAGS+= ${PA_CFLAGS} -I${LOCALBASE}/include ${PTHREAD_CFLAGS} +LDFLAGS+= ${PA_LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS} MAN1= fluidsynth.1 .include .if ${PORT_OPTIONS:MJACK} -LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack +LIB_DEPENDS+= jack:${PORTSDIR}/audio/jack .else CMAKE_ARGS+= -Denable-jack:BOOL=FALSE .endif .if ${PORT_OPTIONS:MALSA} -LIB_DEPENDS+= asound.2:${PORTSDIR}/audio/alsa-lib +LIB_DEPENDS+= asound:${PORTSDIR}/audio/alsa-lib .else CMAKE_ARGS+= -Denable-alsa:BOOL=FALSE .endif .if ${PORT_OPTIONS:MDBUS} -LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus +LIB_DEPENDS+= dbus-1:${PORTSDIR}/devel/dbus .else CMAKE_ARGS+= -Denable-dbus:BOOL=FALSE .endif @@ -67,16 +64,18 @@ BUILD_DEPENDS+= ${LOCALBASE}/include/portaudio2/portaudio.h:${PORTSDIR}/audio/portaudio2 RUN_DEPENDS+= ${LOCALBASE}/include/portaudio2/portaudio.h:${PORTSDIR}/audio/portaudio2 CMAKE_ARGS+= -Denable-portaudio:BOOL=TRUE +PA_CFLAGS= -I${LOCALBASE}/include/portaudio2 +PA_LDFLAGS= -L${LOCALBASE}/lib/portaudio2 .endif .if ${PORT_OPTIONS:MPULSEAUDIO} -LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio +LIB_DEPENDS+= pulse:${PORTSDIR}/audio/pulseaudio .else CMAKE_ARGS+= -Denable-pulseaudio:BOOL=FALSE .endif .if ${PORT_OPTIONS:MSNDFILE} -LIB_DEPENDS+= sndfile.1:${PORTSDIR}/audio/libsndfile +LIB_DEPENDS+= sndfile:${PORTSDIR}/audio/libsndfile .else CMAKE_ARGS+= -Denable-libsndfile:BOOL=FALSE .endif diff -urN /usr/ports/audio/fluidsynth/distinfo audio/fluidsynth/distinfo --- /usr/ports/audio/fluidsynth/distinfo 2011-11-19 05:07:19.000000000 +0900 +++ audio/fluidsynth/distinfo 2012-08-16 21:43:38.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (fluidsynth-1.1.5.tar.bz2) = 44b40ee28f0ed1718c924d8a175e30381431edfb9320026480d56daf7351e3f4 -SIZE (fluidsynth-1.1.5.tar.bz2) = 800195 +SHA256 (fluidsynth-1.1.6.tar.bz2) = d28b47dfbf7f8e426902ae7fa2981d821fbf84f41da9e1b85be933d2d748f601 +SIZE (fluidsynth-1.1.6.tar.bz2) = 823783 diff -urN /usr/ports/audio/fluidsynth/files/patch-src__CMakeLists.txt audio/fluidsynth/files/patch-src__CMakeLists.txt --- /usr/ports/audio/fluidsynth/files/patch-src__CMakeLists.txt 2011-11-19 05:08:25.000000000 +0900 +++ audio/fluidsynth/files/patch-src__CMakeLists.txt 1970-01-01 09:00:00.000000000 +0900 @@ -1,59 +0,0 @@ ---- src/CMakeLists.txt.orig 2011-09-04 16:38:58.000000000 +0900 -+++ src/CMakeLists.txt 2011-09-05 16:30:18.000000000 +0900 -@@ -42,6 +42,11 @@ - include_directories ( ${READLINE_INCLUDE_DIR} ) - endif ( READLINE_SUPPORT ) - -+if ( PORTAUDIO_SUPPORT ) -+ set ( fluid_portaudio_SOURCES drivers/fluid_portaudio.c ) -+ include_directories ( ${PORTAUDIO_INCLUDEDIR} ${PORTAUDIO_INCLUDE_DIRS} ) -+endif ( PORTAUDIO_SUPPORT ) -+ - if ( PULSE_SUPPORT ) - set ( fluid_pulse_SOURCES drivers/fluid_pulse.c ) - include_directories ( ${PULSE_INCLUDEDIR} ${PULSE_INCLUDE_DIRS} ) -@@ -70,11 +75,6 @@ - include_directories ( ${JACK_INCLUDEDIR} ${JACK_INCLUDE_DIRS} ) - endif ( JACK_SUPPORT ) - --if ( PORTAUDIO_SUPPORT ) -- set ( fluid_portaudio_SOURCES drivers/fluid_portaudio.c ) -- include_directories ( ${PORTAUDIO_INCLUDEDIR} ${PORTAUDIO_INCLUDE_DIRS} ) --endif ( PORTAUDIO_SUPPORT ) -- - if ( WINDOWS_SUPPORT ) - set ( fluid_windows_SOURCES fluid_dll.c drivers/fluid_dsound.c drivers/fluid_winmidi.c ) - endif ( WINDOWS_SUPPORT ) -@@ -207,6 +207,8 @@ - ) - - link_directories ( -+ ${PORTAUDIO_LIBDIR} -+ ${PORTAUDIO_LIBRARY_DIRS} - ${GLIB_LIBDIR} - ${GLIB_LIBRARY_DIRS} - ${LASH_LIBDIR} -@@ -219,8 +221,6 @@ - ${ALSA_LIBRARY_DIRS} - ${PULSE_LIBDIR} - ${PULSE_LIBRARY_DIRS} -- ${PORTAUDIO_LIBDIR} -- ${PORTAUDIO_LIBRARY_DIRS} - ${LIBSNDFILE_LIBDIR} - ${LIBSNDFILE_LIBRARY_DIRS} - ${DBUS_LIBDIR} -@@ -280,13 +280,13 @@ - endif ( LIBFLUID_CPPFLAGS ) - - target_link_libraries ( libfluidsynth -+ ${PORTAUDIO_LIBRARIES} - ${GLIB_LIBRARIES} - ${LASH_LIBRARIES} - ${LADCCA_LIBRARIES} - ${JACK_LIBRARIES} - ${ALSA_LIBRARIES} - ${PULSE_LIBRARIES} -- ${PORTAUDIO_LIBRARIES} - ${LIBSNDFILE_LIBRARIES} - ${DBUS_LIBRARIES} - ${READLINE_LIBS} diff -urN /usr/ports/audio/fluidsynth/files/patch-src__drivers__fluid_oss.c audio/fluidsynth/files/patch-src__drivers__fluid_oss.c --- /usr/ports/audio/fluidsynth/files/patch-src__drivers__fluid_oss.c 1970-01-01 09:00:00.000000000 +0900 +++ audio/fluidsynth/files/patch-src__drivers__fluid_oss.c 2012-08-18 04:16:22.000000000 +0900 @@ -0,0 +1,15 @@ +--- src/drivers/fluid_oss.c.orig 2012-08-16 13:01:13.000000000 +0900 ++++ src/drivers/fluid_oss.c 2012-08-18 04:12:09.000000000 +0900 +@@ -45,9 +45,9 @@ + #define BUFFER_LENGTH 512 + + // Build issue on some systems (OSS 4.0)? +-#ifdef SNDCTL_DSP_CHANNELS +- #define SOUND_PCM_WRITE_CHANNELS SNDCTL_DSP_CHANNELS +-#endif ++// #ifdef SNDCTL_DSP_CHANNELS ++// #define SOUND_PCM_WRITE_CHANNELS SNDCTL_DSP_CHANNELS ++// #endif + + /** fluid_oss_audio_driver_t + * diff -urN /usr/ports/audio/fluidsynth/pkg-plist audio/fluidsynth/pkg-plist --- /usr/ports/audio/fluidsynth/pkg-plist 2011-11-19 05:07:19.000000000 +0900 +++ audio/fluidsynth/pkg-plist 2012-08-18 04:28:33.000000000 +0900 @@ -19,6 +19,6 @@ include/fluidsynth/voice.h lib/libfluidsynth.so lib/libfluidsynth.so.1 -lib/libfluidsynth.so.1.5.1 +lib/libfluidsynth.so.1.5.2 libdata/pkgconfig/fluidsynth.pc @dirrm include/fluidsynth >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BF73D1065670 for ; Tue, 25 Sep 2012 18:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 797108FC1A for ; Tue, 25 Sep 2012 18:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIA9sV016896 for ; Tue, 25 Sep 2012 18:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIA97Q016888; Tue, 25 Sep 2012 18:10:09 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:09 GMT Resent-Message-Id: <201209251810.q8PIA97Q016888@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D7F710656E4 for ; Tue, 25 Sep 2012 18:00:36 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 146E18FC23 for ; Tue, 25 Sep 2012 18:00:36 +0000 (UTC) Received: from msa105lp.auone-net.jp (MSA105lp [172.27.12.183]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 9E0EB5702D4 for ; Wed, 26 Sep 2012 03:00:35 +0900 (JST) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 538A950037 for ; Wed, 26 Sep 2012 03:00:28 +0900 (JST) Message-Id: <20120926022019.f36c663c00203ea91217ce4e@yahoo.com> Date: Wed, 26 Sep 2012 02:20:19 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171959: audio/ecasound: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:09 -0000 >Number: 171959 >Category: ports >Synopsis: audio/ecasound: Support USE_READLINE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Support USE_READLINE >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/ecasound/Makefile audio/ecasound/Makefile --- /usr/ports/audio/ecasound/Makefile 2012-06-18 05:07:46.000000000 +0900 +++ audio/ecasound/Makefile 2012-09-25 03:15:51.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: ecasound -# Date created: 22 dec 2000 -# Whom: The Anarcat -# +# Created by: The Anarcat # $FreeBSD: ports/audio/ecasound/Makefile,v 1.47 2012/06/17 20:07:46 sylvio Exp $ -# PORTNAME= ecasound PORTVERSION= 2.9.0 @@ -26,6 +22,7 @@ LO_DESC= Enable liblo support OIL_DESC= Enable liboil support +USE_READLINE= yes USE_GMAKE= yes USE_AUTOTOOLS= libtool CONFIGURE_ARGS= --disable-liblilv \ @@ -44,10 +41,6 @@ .include -.if exists(${LOCALBASE}/lib/libreadline.so) -LIB_DEPENDS+= readline:${PORTSDIR}/devel/readline -.endif - .if ${PORT_OPTIONS:MALSA} LIB_DEPENDS+= asound:${PORTSDIR}/audio/alsa-lib .else >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 053F71065679 for ; Tue, 25 Sep 2012 18:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CC50D8FC23 for ; Tue, 25 Sep 2012 18:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIA9ic016974 for ; Tue, 25 Sep 2012 18:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIA9vF016968; Tue, 25 Sep 2012 18:10:09 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:09 GMT Resent-Message-Id: <201209251810.q8PIA9vF016968@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 01C6D106566C for ; Tue, 25 Sep 2012 18:00:45 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id C6AA88FC17 for ; Tue, 25 Sep 2012 18:00:44 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 2B20223C031 for ; Wed, 26 Sep 2012 03:00:42 +0900 (JST) Message-Id: <20120926022029.c3b31ea89cad3766451f1911@yahoo.com> Date: Wed, 26 Sep 2012 02:20:29 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171960: audio/ices: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:10 -0000 >Number: 171960 >Category: ports >Synopsis: audio/ices: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Add LICENSE - Add MAKE_JOBS_SAFE - Add option for ALSA support >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/ices/Makefile audio/ices/Makefile --- /usr/ports/audio/ices/Makefile 2012-09-20 09:01:35.000000000 +0900 +++ audio/ices/Makefile 2012-09-25 03:16:19.000000000 +0900 @@ -1,28 +1,39 @@ -# New ports collection makefile for: ices -# Date created: 11 Nov 2002 -# Whom: Michael Nottebrock -# +# Created by: Michael Nottebrock # $FreeBSD: ports/audio/ices/Makefile,v 1.25 2012/09/20 00:01:35 jase Exp $ -# PORTNAME= ices PORTVERSION= 2.0.2 PORTEPOCH= 1 CATEGORIES= audio net -MASTER_SITES= http://svn.xiph.org/releases/ices/ +MASTER_SITES= http://downloads.xiph.org/releases/ices/ \ + http://svn.xiph.org/releases/ices/ MAINTAINER= ports@FreeBSD.org COMMENT= A vorbis streaming source client for icecast 2 +LICENSE= GPLv2 + LIB_DEPENDS= shout:${PORTSDIR}/audio/libshout2 \ - vorbis:${PORTSDIR}/audio/libvorbis \ - xml2:${PORTSDIR}/textproc/libxml2 + vorbis:${PORTSDIR}/audio/libvorbis + +OPTIONS_DEFINE= ALSA -CFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include -LDFLAGS+= ${PTHREAD_LIBS} -L${LOCALBASE}/lib -CONFIGURE_ARGS+= --disable-alsa --disable-roaraudio --disable-sun-audio +USE_BZIP2= yes +USE_GNOME= libxml2 USE_GMAKE= yes GNU_CONFIGURE= yes -USE_BZIP2= yes +CONFIGURE_ARGS= --disable-roaraudio --disable-sun-audio +MAKE_JOBS_SAFE= yes + +CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} +LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} + +.include + +.if ${PORT_OPTIONS:MALSA} +LIB_DEPENDS+= asound:${PORTSDIR}/audio/alsa-lib +.else +CONFIGURE_ARGS+=--disable-alsa +.endif .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 592DE1065688 for ; Tue, 25 Sep 2012 18:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2B5FB8FC25 for ; Tue, 25 Sep 2012 18:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAAeu017049 for ; Tue, 25 Sep 2012 18:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAADS017043; Tue, 25 Sep 2012 18:10:10 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:10 GMT Resent-Message-Id: <201209251810.q8PIAADS017043@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 01ACB1065670 for ; Tue, 25 Sep 2012 18:00:48 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id B39678FC18 for ; Tue, 25 Sep 2012 18:00:47 +0000 (UTC) Received: from msa101lp.auone-net.jp (MSA101lp [172.27.12.179]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id BF96F2E0306 for ; Wed, 26 Sep 2012 03:00:46 +0900 (JST) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 308BA34034 for ; Wed, 26 Sep 2012 03:00:37 +0900 (JST) Message-Id: <20120926022025.ba705f7fd49807670ecaeec1@yahoo.com> Date: Wed, 26 Sep 2012 02:20:25 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171961: audio/icecast: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:10 -0000 >Number: 171961 >Category: ports >Synopsis: audio/icecast: Support USE_READLINE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Add LICENSE - Add MAKE_JOBS_SAFE - Support USE_READLINE - Support PORTDOCS >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/icecast/Makefile audio/icecast/Makefile --- /usr/ports/audio/icecast/Makefile 2010-01-08 10:29:12.000000000 +0900 +++ audio/icecast/Makefile 2012-09-25 03:16:13.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: icecast -# Date created: 28 Jan 1999 -# Whom: Chip Marshall -# +# Created by: Chip Marshall # $FreeBSD: ports/audio/icecast/Makefile,v 1.32 2010/01/08 01:29:12 pgollucci Exp $ -# PORTNAME= icecast PORTVERSION= 1.3.12 @@ -14,32 +10,46 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A streaming mp3 audio server -HAS_CONFIGURE= yes +LICENSE= GPLv2 # (or later) + +OPTIONS_DEFINE= DOCS + +USE_READLINE= yes +GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-libwrap +MAKE_JOBS_SAFE= yes + +CPPFLAGS+= ${PTHREAD_CFLAGS} +LDFLAGS+= ${PTHREAD_LIBS} + SUB_FILES= pkg-message +.include + pre-patch: - @${REINPLACE_CMD} -e 's|||' \ - -e 's|||' \ - ${WRKSRC}/src/admin.c - @${REINPLACE_CMD} -e 's|#undef HAVE_HISTORY_H|#undef HAVE_READLINE_HISTORY_H|g' \ - ${WRKSRC}/config.h.in + @${REINPLACE_CMD} -e \ + 's||| ; \ + s|||' ${WRKSRC}/src/admin.c + @${REINPLACE_CMD} -e \ + 's|HAVE_HISTORY_H|HAVE_READLINE_HISTORY_H|g' ${WRKSRC}/config.h.in do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/icecast ${PREFIX}/sbin - ${MKDIR} ${PREFIX}/etc/icecast/conf - ${MKDIR} ${PREFIX}/etc/icecast/templates + @${MKDIR} ${ETCDIR}/conf .for CONF in groups.aut.dist icecast.conf.dist mounts.aut.dist users.aut.dist - ${INSTALL_DATA} ${WRKSRC}/conf/${CONF} ${PREFIX}/etc/icecast/conf + ${INSTALL_DATA} ${WRKSRC}/conf/${CONF} ${ETCDIR}/conf .endfor -.for TEMPL in 306.html 400.html 403.html 404.html 504.html bodytag.html info.html \ - list_directory.html mountlist.html statistics.html admin_describe.html \ - admin.html alias_add.html manual.html alias_del.html header.html \ - footer.html admin_change.html - ${INSTALL_DATA} ${WRKSRC}/templates/${TEMPL} ${PREFIX}/etc/icecast/templates + @${MKDIR} ${ETCDIR}/templates +.for TEMPL in 306.html 400.html 403.html 404.html 504.html bodytag.html \ + info.html list_directory.html mountlist.html statistics.html \ + admin_describe.html admin.html alias_add.html manual.html \ + alias_del.html header.html footer.html admin_change.html + ${INSTALL_DATA} ${WRKSRC}/templates/${TEMPL} ${ETCDIR}/templates .endfor - ${MKDIR} ${PREFIX}/share/doc/icecast/ - ${INSTALL_DATA} ${WRKSRC}/doc/manual.html ${PREFIX}/share/doc/icecast/ - @${CAT} ${PKGMESSAGE} | ${SED} -e 's,%%PREFIX%%,${PREFIX},g' +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/manual.html ${DOCSDIR} +.endif + @${CAT} ${PKGMESSAGE} .include diff -urN /usr/ports/audio/icecast/pkg-plist audio/icecast/pkg-plist --- /usr/ports/audio/icecast/pkg-plist 2003-10-21 20:23:58.000000000 +0900 +++ audio/icecast/pkg-plist 2012-09-08 22:30:54.000000000 +0900 @@ -1,28 +1,28 @@ -etc/icecast/conf/groups.aut.dist -etc/icecast/conf/icecast.conf.dist -etc/icecast/conf/mounts.aut.dist -etc/icecast/conf/users.aut.dist -etc/icecast/templates/306.html -etc/icecast/templates/400.html -etc/icecast/templates/403.html -etc/icecast/templates/404.html -etc/icecast/templates/504.html -etc/icecast/templates/admin.html -etc/icecast/templates/admin_change.html -etc/icecast/templates/admin_describe.html -etc/icecast/templates/alias_add.html -etc/icecast/templates/alias_del.html -etc/icecast/templates/bodytag.html -etc/icecast/templates/footer.html -etc/icecast/templates/header.html -etc/icecast/templates/info.html -etc/icecast/templates/list_directory.html -etc/icecast/templates/manual.html -etc/icecast/templates/mountlist.html -etc/icecast/templates/statistics.html +%%ETCDIR%%/conf/groups.aut.dist +%%ETCDIR%%/conf/icecast.conf.dist +%%ETCDIR%%/conf/mounts.aut.dist +%%ETCDIR%%/conf/users.aut.dist +%%ETCDIR%%/templates/306.html +%%ETCDIR%%/templates/400.html +%%ETCDIR%%/templates/403.html +%%ETCDIR%%/templates/404.html +%%ETCDIR%%/templates/504.html +%%ETCDIR%%/templates/admin.html +%%ETCDIR%%/templates/admin_change.html +%%ETCDIR%%/templates/admin_describe.html +%%ETCDIR%%/templates/alias_add.html +%%ETCDIR%%/templates/alias_del.html +%%ETCDIR%%/templates/bodytag.html +%%ETCDIR%%/templates/footer.html +%%ETCDIR%%/templates/header.html +%%ETCDIR%%/templates/info.html +%%ETCDIR%%/templates/list_directory.html +%%ETCDIR%%/templates/manual.html +%%ETCDIR%%/templates/mountlist.html +%%ETCDIR%%/templates/statistics.html sbin/icecast -%%DOCSDIR%%/manual.html -@dirrm etc/icecast/conf -@dirrm etc/icecast/templates -@dirrm etc/icecast -@dirrm %%DOCSDIR%% +%%PORTDOCS%%%%DOCSDIR%%/manual.html +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm %%ETCDIR%%/templates +@dirrm %%ETCDIR%%/conf +@dirrm %%ETCDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1F10106564A for ; Tue, 25 Sep 2012 18:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7E0768FC0C for ; Tue, 25 Sep 2012 18:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAACA017123 for ; Tue, 25 Sep 2012 18:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAAr3017116; Tue, 25 Sep 2012 18:10:10 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:10 GMT Resent-Message-Id: <201209251810.q8PIAAr3017116@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A9F9106566B for ; Tue, 25 Sep 2012 18:00:49 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 2AEC48FC28 for ; Tue, 25 Sep 2012 18:00:49 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 22FD550036 for ; Wed, 26 Sep 2012 03:00:46 +0900 (JST) Message-Id: <20120926022032.7ac41ae4f79597cd1705163f@yahoo.com> Date: Wed, 26 Sep 2012 02:20:32 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171962: audio/lash: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:10 -0000 >Number: 171962 >Category: ports >Synopsis: audio/lash: Support USE_READLINE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Support USE_READLINE >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/lash/Makefile audio/lash/Makefile --- /usr/ports/audio/lash/Makefile 2012-08-19 06:23:24.000000000 +0900 +++ audio/lash/Makefile 2012-09-25 03:16:25.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: lash -# Date created: 2007-01-13 -# Whom: Edward Tomasz Napierala -# +# Created by: Edward Tomasz Napierala # $FreeBSD: ports/audio/lash/Makefile,v 1.21 2012/08/18 21:23:24 danfe Exp $ -# PORTNAME= lash PORTVERSION= 0.5.4 @@ -18,37 +14,50 @@ LICENSE_COMB= dual LIB_DEPENDS= jack:${PORTSDIR}/audio/jack \ - uuid:${PORTSDIR}/misc/e2fsprogs-libuuid \ - dssialsacompat:${PORTSDIR}/audio/libdssialsacompat + dssialsacompat:${PORTSDIR}/audio/libdssialsacompat \ + uuid:${PORTSDIR}/misc/e2fsprogs-libuuid -GNU_CONFIGURE= yes +OPTIONS_DEFINE= READLINE DOCS +OPTIONS_DEFAULT=READLINE +READLINE_DESC= Enable readline support + +USE_GNOME= gnomehack gtk20 libxml2 USE_GMAKE= yes +GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-alsa-midi -USE_GNOME= gnomehack gtk20 libxml2 USE_LDCONFIG= yes MAKE_JOBS_SAFE= yes CPPFLAGS+= -I${LOCALBASE}/include/dssi -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -PORTDOCS= * - .include +.if ${PORT_OPTIONS:MREADLINE} +USE_READLINE= yes +PLIST_SUB+= READLINE="" +.else +CONFIGURE_ENV+= vl_cv_lib_readline=no +PLIST_SUB+= READLINE="@comment " +.endif + .if ${PORT_OPTIONS:MDOCS} -BUILD_DEPENDS= texi2html:${PORTSDIR}/textproc/texi2html +BUILD_DEPENDS+= texi2html:${PORTSDIR}/textproc/texi2html +.else +CONFIGURE_ENV+= ac_cv_prog_lash_texi2html=no .endif -post-extract: - @${REINPLACE_CMD} -e 's|texi2html --number|texi2html|' \ - ${WRKSRC}/docs/Makefile.in +post-patch: + @${REINPLACE_CMD} -e \ + '/if test/s|==|=|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e \ + '/texi2html/s|--number||' ${WRKSRC}/docs/Makefile.in post-install: .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} \ - ${WRKSRC}/docs/lash-manual-html-one-page/lash-manual.html \ - ${DOCSDIR} + cd ${WRKSRC}/docs/lash-manual-html-one-page \ + && ${INSTALL_DATA} lash-manual.html ${DOCSDIR} .endif .include diff -urN /usr/ports/audio/lash/pkg-plist audio/lash/pkg-plist --- /usr/ports/audio/lash/pkg-plist 2007-06-05 05:41:24.000000000 +0900 +++ audio/lash/pkg-plist 2012-09-20 18:23:24.000000000 +0900 @@ -1,5 +1,5 @@ bin/lashd -bin/lash_control +%%READLINE%%bin/lash_control bin/lash_save_button bin/lash_panel include/lash-1.0/lash/lash.h @@ -13,6 +13,7 @@ lib/liblash.la lib/liblash.a libdata/pkgconfig/lash-1.0.pc +%%PORTDOCS%%%%DOCSDIR%%/lash-manual.html %%DATADIR%%/dtds/lash-project-1.0.dtd %%DATADIR%%/icons/lash_16px.png %%DATADIR%%/icons/lash_24px.png @@ -23,5 +24,6 @@ @dirrm %%DATADIR%%/icons @dirrm %%DATADIR%%/dtds @dirrm %%DATADIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm include/lash-1.0/lash @dirrm include/lash-1.0 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 018081065675 for ; Tue, 25 Sep 2012 18:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D10948FC27 for ; Tue, 25 Sep 2012 18:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAAvP017201 for ; Tue, 25 Sep 2012 18:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAAWK017194; Tue, 25 Sep 2012 18:10:10 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:10 GMT Resent-Message-Id: <201209251810.q8PIAAWK017194@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6079B1065674 for ; Tue, 25 Sep 2012 18:00:53 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 31C9F8FC1F for ; Tue, 25 Sep 2012 18:00:53 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id 88C032BC03C for ; Wed, 26 Sep 2012 03:00:51 +0900 (JST) Message-Id: <20120926022035.2fb00bd57c3f4f2988dee24b@yahoo.com> Date: Wed, 26 Sep 2012 02:20:35 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171963: audio/libmtp: Update to version 1.1.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:11 -0000 >Number: 171963 >Category: ports >Synopsis: audio/libmtp: Update to version 1.1.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.1.5 >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/libmtp/Makefile audio/libmtp/Makefile --- /usr/ports/audio/libmtp/Makefile 2012-09-03 00:52:06.000000000 +0900 +++ audio/libmtp/Makefile 2012-09-25 03:16:32.000000000 +0900 @@ -1,12 +1,8 @@ -# New ports collection makefile for: libmtp -# Date created: 3 December 2006 -# Whom: Petar Zhivkov Petrov (pesho.petrov@gmail.com) -# +# Created by: Petar Zhivkov Petrov (pesho.petrov@gmail.com) # $FreeBSD: ports/audio/libmtp/Makefile,v 1.32 2012/09/02 15:52:06 rakuco Exp $ -# PORTNAME= libmtp -PORTVERSION= 1.1.4 +PORTVERSION= 1.1.5 CATEGORIES= audio MASTER_SITES= SF @@ -21,9 +17,9 @@ USE_GNOME= gnomehack USE_ICONV= yes +USE_PKGCONFIG= build GNU_CONFIGURE= yes USE_LDCONFIG= yes -USE_PKGCONFIG= yes MAKE_JOBS_SAFE= yes CPPFLAGS+= -I${LOCALBASE}/include @@ -51,8 +47,11 @@ '/^SUBDIRS/s|doc||' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e \ '/if test/s|==|=| ; \ - /LIBUSB_REQUIRES/s|libusb-1.0||' ${WRKSRC}/configure + /LIBUSB_REQUIRES/s|libusb-1.0|| ; \ + /endian.h/s|machine|sys|' ${WRKSRC}/configure @${REINPLACE_CMD} -e \ 's| diff -urN /usr/ports/audio/libmtp/distinfo audio/libmtp/distinfo --- /usr/ports/audio/libmtp/distinfo 2012-09-03 00:52:06.000000000 +0900 +++ audio/libmtp/distinfo 2012-09-13 18:15:13.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (libmtp-1.1.4.tar.gz) = 4c6c5cdb46959d9903e98c22e906407909b5bff996b7e1970dc2ee228e3e1460 -SIZE (libmtp-1.1.4.tar.gz) = 696838 +SHA256 (libmtp-1.1.5.tar.gz) = 787679171baf8b3cf2fcc03196c705ab4d7cbc969bd71f9d3696be1ce7f1c63a +SIZE (libmtp-1.1.5.tar.gz) = 723925 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 571F8106567E for ; Tue, 25 Sep 2012 18:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 319108FC29 for ; Tue, 25 Sep 2012 18:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIABXS017277 for ; Tue, 25 Sep 2012 18:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIABM6017270; Tue, 25 Sep 2012 18:10:11 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:11 GMT Resent-Message-Id: <201209251810.q8PIABM6017270@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B18881065675 for ; Tue, 25 Sep 2012 18:01:00 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 23AA88FC1D for ; Tue, 25 Sep 2012 18:01:00 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 9BAEB4AC038 for ; Wed, 26 Sep 2012 03:00:55 +0900 (JST) Message-Id: <20120926022039.782c5fd3286e4aa6780ab836@yahoo.com> Date: Wed, 26 Sep 2012 02:20:39 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171964: audio/libnjb: Fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:11 -0000 >Number: 171964 >Category: ports >Synopsis: audio/libnjb: Fix build >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Fix build - Add LICENSE - Add MAKE_JOBS_SAFE >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/libnjb/Makefile audio/libnjb/Makefile --- /usr/ports/audio/libnjb/Makefile 2012-08-22 03:20:49.000000000 +0900 +++ audio/libnjb/Makefile 2012-09-25 03:16:38.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: libnjb -# Date created: 16 July 2006 -# Whom: adrianm -# +# Created by: adrianm # $FreeBSD: ports/audio/libnjb/Makefile,v 1.22 2012/08/21 18:20:49 beat Exp $ -# PORTNAME= libnjb PORTVERSION= 2.2.7 @@ -14,30 +10,39 @@ MAINTAINER= ports@FreeBSD.org COMMENT= C library, API for communicating with Creative and Dell audio players -BROKEN= incomplete plist +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/LICENSE +OPTIONS_DEFINE= DOCS + +USE_GNOME= gnomehack USE_AUTOTOOLS= libtool -GNU_CONFIGURE= yes +USE_LDCONFIG= yes +MAKE_JOBS_SAFE= yes + CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -USE_LDCONFIG= yes -.include +PORTDOCS= * -.if ${OSVERSION} < 800069 -LIB_DEPENDS+= usb-0.1.8:${PORTSDIR}/devel/libusb -.endif +.include -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen -PLIST_SUB= PORTVERSION=${PORTVERSION} .else -NODOC= /^SUBDIRS/s|doc|| +CONFIGURE_ENV+= ac_cv_prog_HAVE_DOXYGEN=no +.endif + +.include + +.if ${OSVERSION} < 800069 +LIB_DEPENDS+= usb-0.1:${PORTSDIR}/devel/libusb .endif post-patch: - @${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|;\ - ${NODOC}' ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e '/^SHOW_DIRECTORIES/d' ${WRKSRC}/doc/Doxyfile.in + @${REINPLACE_CMD} -e \ + '/^SHOW_DIRECTORIES/d' ${WRKSRC}/doc/Doxyfile.in + @${REINPLACE_CMD} -e \ + '/pkgdocdir/s|-$$(VERSION)||g' ${WRKSRC}/doc/Makefile.in .include diff -urN /usr/ports/audio/libnjb/pkg-plist audio/libnjb/pkg-plist --- /usr/ports/audio/libnjb/pkg-plist 2012-03-09 07:59:01.000000000 +0900 +++ audio/libnjb/pkg-plist 2012-09-11 04:07:37.000000000 +0900 @@ -26,144 +26,3 @@ lib/libnjb.so lib/libnjb.so.6 libdata/pkgconfig/libnjb.pc -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/base_8c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/base_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/bc_s.png -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/bdwn.png -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/byteorder_8c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/byteorder_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/classes.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/closed.png -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/cursesplay_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/datafile_8c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/datafile_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/defs_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/delfile_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/deltr_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/dumpeax_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/dumptime_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/eax_8c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/eax_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/examples.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/examples_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/files.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/files_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/functions_vars.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/fwupgrade_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/getfile_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/getowner_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/gettr_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/getusage_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_0x64.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_0x65.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_0x66.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_0x67.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_0x6c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_0x6d.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_0x6e.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_0x6f.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_0x70.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_0x73.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_0x74.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_0x75.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_defs.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_enum.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_func.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_func_0x64.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_func_0x65.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_func_0x66.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_func_0x67.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_func_0x6d.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_func_0x6e.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_func_0x70.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_func_0x73.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_func_0x74.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_func_0x75.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_type.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/globals_vars.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__basic.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__codecs.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__datatagapi.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__debugflags.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__eaxapi.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__errors.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__frames.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__frametypes.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__internals.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__njbboxes.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__playapi.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__playlistapi.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__tagapi.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__timeapi.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__turboflags.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__types.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/group__unicodeflags.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/handshake_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/index.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/ioutil_8c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/ioutil_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/jquery.js -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/libnjb_8h.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/libnjb_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/mainpage_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/modules.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/nav_f.png -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/nav_h.png -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/njb__error_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/njbtime_8c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/njbtime_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/open.png -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/pl_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/play_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/playlist_8c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/playlist_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/playlists_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/procedure_8c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/procedure_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/protocol3_8c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/protocol3_8h.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/protocol3_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/protocol_8c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/protocol_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/sendfile_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/sendtr_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/setowner_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/setpbm_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/settime_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/songid_8c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/songid_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjb3__state__t.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjb__datafile__struct.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjb__device__entry.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjb__eax__struct.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjb__error__stack__struct.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjb__keyval__struct.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjb__playlist__struct.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjb__playlist__track__struct.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjb__songid__frame__struct.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjb__songid__struct.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjb__state__t.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjb__struct.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjb__time__struct.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjbdfhdr__t.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjblibctr__t.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjbplhdr__t.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/structnjbttaghdr__t.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/tab_a.png -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/tab_b.png -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/tab_h.png -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/tab_s.png -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/tagtr_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/tracks_8c-example.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/unicode_8c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/unicode_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/usb__io_8c.html -%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/html/usb__io_8h_source.html -%%PORTDOCS%%@dirrm %%DOCSDIR%%-%%PORTVERSION%%/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%-%%PORTVERSION%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA7941065670 for ; Tue, 25 Sep 2012 18:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 856D58FC17 for ; Tue, 25 Sep 2012 18:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIABIT017356 for ; Tue, 25 Sep 2012 18:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIABxO017346; Tue, 25 Sep 2012 18:10:11 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:11 GMT Resent-Message-Id: <201209251810.q8PIABxO017346@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA9981065672 for ; Tue, 25 Sep 2012 18:01:06 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 8D00F8FC0A for ; Tue, 25 Sep 2012 18:01:06 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 957EC50036 for ; Wed, 26 Sep 2012 03:01:02 +0900 (JST) Message-Id: <20120926022043.6afb5b030fcfce4d6b24c1cf@yahoo.com> Date: Wed, 26 Sep 2012 02:20:43 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171965: audio/mixxx: Update to version 1.10.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:11 -0000 >Number: 171965 >Category: ports >Synopsis: audio/mixxx: Update to version 1.10.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.10.1 New file: files/patch-src__SConscript.env >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/mixxx/Makefile audio/mixxx/Makefile --- /usr/ports/audio/mixxx/Makefile 2012-07-20 05:15:37.000000000 +0900 +++ audio/mixxx/Makefile 2012-09-25 03:16:53.000000000 +0900 @@ -1,18 +1,11 @@ -# New ports collection makefile for: Mixxx -# Date created: 25 Jun 2004 -# Whom: Jean-Yves Lefort -# +# Created by: Jean-Yves Lefort # $FreeBSD: ports/audio/mixxx/Makefile,v 1.30 2012/07/19 20:15:37 naddy Exp $ -# PORTNAME= mixxx -PORTVERSION= 1.10.0 -PORTREVISION= 3 +PORTVERSION= 1.10.1 DISTVERSIONSUFFIX= -src CATEGORIES= audio -MASTER_SITES= http://mixxx.rasant-records.de/downloads/%SUBDIR%/ \ - http://moo.glines.org/mixxx/%SUBDIR%/ \ - http://web.mit.edu/rryan/www/downloads.mixxx.org/%SUBDIR%/ +MASTER_SITES= http://moo.glines.org/mixxx/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTNAME}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org @@ -20,24 +13,25 @@ LICENSE= GPLv2 # (or later) -LIB_DEPENDS= FLAC.10:${PORTSDIR}/audio/flac \ - id3tag.0:${PORTSDIR}/audio/libid3tag \ - mad.2:${PORTSDIR}/audio/libmad \ - sndfile.1:${PORTSDIR}/audio/libsndfile \ - vorbis.4:${PORTSDIR}/audio/libvorbis \ - portaudio.2:${PORTSDIR}/audio/portaudio2 \ - tag.1:${PORTSDIR}/audio/taglib - -OPTIONS_DEFINE= LAME FAAD WAVPACK SHOUTCAST DOCS -SHOUTCAST_DESC= Enable Shoutcast Broadcasting -WAVPACK_DESC= Enable WavPack audio support plugin +BUILD_DEPENDS= portaudio>=19:${PORTSDIR}/audio/portaudio2 +LIB_DEPENDS= FLAC:${PORTSDIR}/audio/flac \ + id3tag:${PORTSDIR}/audio/libid3tag \ + mad:${PORTSDIR}/audio/libmad \ + sndfile:${PORTSDIR}/audio/libsndfile \ + vorbis:${PORTSDIR}/audio/libvorbis \ + tag:${PORTSDIR}/audio/taglib +RUN_DEPENDS= portaudio>=19:${PORTSDIR}/audio/portaudio2 + +OPTIONS_DEFINE= LAME SHOUTCAST FAAD WAVPACK DOCS +SHOUTCAST_DESC= Shoutcast Broadcasting +WAVPACK_DESC= WavPack audio support plugin WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -USE_GL= glu USE_QT4= corelib gui network opengl script sql svg webkit xml \ xmlpatterns linguist_build moc_build qmake_build rcc_build \ uic_build +USE_GL= glu USE_SCONS= yes SCONS_BUILDENV= ${SCONS_ENV} SCONS_ARGS= qtdir="${QT_PREFIX}" optimize=0 @@ -82,7 +76,8 @@ s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/${FILE} .endfor @${REINPLACE_CMD} -e \ - "/('install', docs)/d" ${WRKSRC}/src/SConscript + "/_get_bzr_/s|^|#| ; \ + /('install', docs)/d" ${WRKSRC}/src/SConscript @${REINPLACE_CMD} -e \ "s|^Exec=.*|Exec=mixxx|" ${WRKSRC}/src/mixxx.desktop diff -urN /usr/ports/audio/mixxx/distinfo audio/mixxx/distinfo --- /usr/ports/audio/mixxx/distinfo 2012-02-20 09:06:48.000000000 +0900 +++ audio/mixxx/distinfo 2012-08-09 08:44:30.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (mixxx-1.10.0-src.tar.gz) = 9135f814262bf42eb05bf5d56c760ab462329c06785271d570be6a9d14ab1e97 -SIZE (mixxx-1.10.0-src.tar.gz) = 15852338 +SHA256 (mixxx-1.10.1-src.tar.gz) = eab49a95336dacee9a9e4c2ad22a0436e9c0b341930e9a03e3b46619d7a9f365 +SIZE (mixxx-1.10.1-src.tar.gz) = 15948956 diff -urN /usr/ports/audio/mixxx/files/patch-build__qt4.py audio/mixxx/files/patch-build__qt4.py --- /usr/ports/audio/mixxx/files/patch-build__qt4.py 2012-02-20 09:06:48.000000000 +0900 +++ audio/mixxx/files/patch-build__qt4.py 2012-09-08 02:30:29.000000000 +0900 @@ -6,7 +6,7 @@ QT4_BINPATH = os.path.join('$QTDIR', 'bin'), - QT4_CPPPATH = os.path.join('$QTDIR', 'include'), - QT4_LIBPATH = os.path.join('$QTDIR', 'lib'), -+ QT4_CPPPATH = os.path.join('$QTDIR', 'include', 'qt4'), ++ QT4_CPPPATH = os.path.join('$QTDIR', 'include', 'qt4', 'Qt'), + QT4_LIBPATH = os.path.join('$QTDIR', 'lib', 'qt4'), # TODO: This is not reliable to QTDIR value changes but needed in order to support '-qt4' variants QT4_MOC = locateQt4Command(env,'moc', env['QTDIR']), diff -urN /usr/ports/audio/mixxx/files/patch-src__SConscript.env audio/mixxx/files/patch-src__SConscript.env --- /usr/ports/audio/mixxx/files/patch-src__SConscript.env 1970-01-01 09:00:00.000000000 +0900 +++ audio/mixxx/files/patch-src__SConscript.env 2012-08-09 09:07:28.000000000 +0900 @@ -0,0 +1,24 @@ +--- src/SConscript.env.orig 2012-06-26 05:23:40.000000000 +0900 ++++ src/SConscript.env 2012-08-09 09:03:53.000000000 +0900 +@@ -19,21 +19,6 @@ + print "Deleting deprecated build file: %s" % defs + os.remove(defs) + +-#env.Append(CPPDEFINES=[('BUILD_REV', '"%s"' % getBZRRevision())]) #doing this forces a rebuild of everything whenever a commit happens -- not much fun +-## instead, embed BZR version into build +-## Put version info into a file, so it doesn't force a rebuild of everything :) +-f = open("build.h","w") +-try: +- branch_name = util.get_bzr_branch_name() +- modified = util.get_bzr_modified() > 0 +- # Do not emit BUILD_BRANCH on release branches. +- if not branch_name.startswith('release'): +- f.write('#define BUILD_BRANCH "%s"\n' % branch_name) +- f.write('#define BUILD_REV "%s%s"\n' % (util.get_bzr_revision(), +- '+' if modified else '')) +-finally: +- f.close() +- + #Check for dependencies if we're not doing a clean... + #if not env.GetOption('clean') and not SCons.Util.containsAny(os.sys.argv, ['-h', '--help']): + conf = Configure(env, custom_tests = { 'CheckForPKGConfig' : util.CheckForPKGConfig, diff -urN /usr/ports/audio/mixxx/files/patch-src__recording__encodermp3.cpp audio/mixxx/files/patch-src__recording__encodermp3.cpp --- /usr/ports/audio/mixxx/files/patch-src__recording__encodermp3.cpp 2012-02-20 09:06:48.000000000 +0900 +++ audio/mixxx/files/patch-src__recording__encodermp3.cpp 2012-08-09 09:07:07.000000000 +0900 @@ -1,17 +1,15 @@ ---- src/recording/encodermp3.cpp.orig 2011-12-24 11:53:18.000000000 +0900 -+++ src/recording/encodermp3.cpp 2012-01-16 06:10:09.000000000 +0900 -@@ -85,7 +85,9 @@ +--- src/recording/encodermp3.cpp.orig 2012-06-26 05:23:37.000000000 +0900 ++++ src/recording/encodermp3.cpp 2012-08-09 09:06:21.000000000 +0900 +@@ -85,7 +85,7 @@ */ QStringList libnames; QString libname = ""; -#ifdef __LINUX__ -+#ifdef __BSD__ -+ libnames << "%%LOCALBASE%%/lib/libmp3lame.so"; -+#elif __LINUX__ - libnames << "/usr/lib/libmp3lame.so.0"; - libnames << "/usr/lib/libmp3lame.so"; ++#if defined(__BSD__) || defined(__LINUX__) + libnames << "mp3lame"; #elif __WINDOWS__ -@@ -109,7 +111,7 @@ + libnames << "lame_enc.dll"; +@@ -108,7 +108,7 @@ props->setType(DLG_WARNING); props->setTitle(tr("Encoder")); QString key = ""; diff -urN /usr/ports/audio/mixxx/pkg-plist audio/mixxx/pkg-plist --- /usr/ports/audio/mixxx/pkg-plist 2012-02-20 09:06:48.000000000 +0900 +++ audio/mixxx/pkg-plist 2012-08-09 09:59:46.000000000 +0900 @@ -19,6 +19,8 @@ %%DATADIR%%/midi/DJ-Tech-i-Mix-Reload-scripts.js %%DATADIR%%/midi/DJTechTools MIDI Fighter.midi.xml %%DATADIR%%/midi/DJTechTools-MIDIFighter-scripts.js +%%DATADIR%%/midi/Denon MC3000.midi.xml +%%DATADIR%%/midi/Denon-MC3000-scripts.js %%DATADIR%%/midi/Evolution_Xsession.midi.xml %%DATADIR%%/midi/FaderFoxDJ2.midi.xml %%DATADIR%%/midi/Hercules DJ Console Mac Edition.midi.xml @@ -75,9 +77,11 @@ %%DATADIR%%/midi/Vestax Spin.midi.xml %%DATADIR%%/midi/Vestax Typhoon.midi.xml %%DATADIR%%/midi/Vestax VCI-100.midi.xml +%%DATADIR%%/midi/Vestax VCI-400.midi.xml %%DATADIR%%/midi/Vestax-Spin-scripts.js %%DATADIR%%/midi/Vestax-Typhoon-scripts.js %%DATADIR%%/midi/Vestax-VCI-100-scripts.js +%%DATADIR%%/midi/Vestax-VCI-400-scripts.js %%DATADIR%%/midi/Wireless DJ App.midi.xml %%DATADIR%%/midi/Wireless-DJ-scripts.js %%DATADIR%%/midi/convertToXMLSchemaV1.php >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E030106568B for ; Tue, 25 Sep 2012 18:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E92048FC1D for ; Tue, 25 Sep 2012 18:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIABgu017427 for ; Tue, 25 Sep 2012 18:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIABkD017421; Tue, 25 Sep 2012 18:10:11 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:11 GMT Resent-Message-Id: <201209251810.q8PIABkD017421@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E16CF1065676 for ; Tue, 25 Sep 2012 18:01:10 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id B222E8FC14 for ; Tue, 25 Sep 2012 18:01:10 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 16DA550036 for ; Wed, 26 Sep 2012 03:01:08 +0900 (JST) Message-Id: <20120926022046.5d72e8dd500cbe4a316e9836@yahoo.com> Date: Wed, 26 Sep 2012 02:20:46 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171966: audio/pd: Update to version 0.43.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:12 -0000 >Number: 171966 >Category: ports >Synopsis: audio/pd: Update to version 0.43.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.43.4 >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/pd/Makefile audio/pd/Makefile --- /usr/ports/audio/pd/Makefile 2012-08-05 13:41:41.000000000 +0900 +++ audio/pd/Makefile 2012-09-25 03:16:58.000000000 +0900 @@ -1,12 +1,8 @@ -# New ports collection makefile for: Pd -# Date created: 2002-05-24 -# Whom: Trevor Johnson -# +# Created by: Trevor Johnson # $FreeBSD: ports/audio/pd/Makefile,v 1.41 2012/08/05 04:41:41 miwi Exp $ -# PORTNAME= pd -DISTVERSION= 0.43-3 +DISTVERSION= 0.43-4 DISTVERSIONSUFFIX= .src CATEGORIES= audio MASTER_SITES= http://www-crca.ucsd.edu/~msp/Software/ diff -urN /usr/ports/audio/pd/distinfo audio/pd/distinfo --- /usr/ports/audio/pd/distinfo 2012-08-05 13:41:41.000000000 +0900 +++ audio/pd/distinfo 2012-07-29 15:25:27.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (pd-0.43-3.src.tar.gz) = df727f52fe1109f7ff727e7bd3aa52ffa2b6eef752c5caead655b50dde68b48a -SIZE (pd-0.43-3.src.tar.gz) = 2189682 +SHA256 (pd-0.43-4.src.tar.gz) = a883c2f5130a999d6748ea1a6541f68980cfa6c384b29051a301529c36b17b5a +SIZE (pd-0.43-4.src.tar.gz) = 2189774 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 61B17106568C for ; Tue, 25 Sep 2012 18:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3BD118FC2B for ; Tue, 25 Sep 2012 18:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAC4Z017510 for ; Tue, 25 Sep 2012 18:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIACjG017500; Tue, 25 Sep 2012 18:10:12 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:12 GMT Resent-Message-Id: <201209251810.q8PIACjG017500@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D683A106567B for ; Tue, 25 Sep 2012 18:01:15 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 94F698FC21 for ; Tue, 25 Sep 2012 18:01:15 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 22C7050036 for ; Wed, 26 Sep 2012 03:01:12 +0900 (JST) Message-Id: <20120926022050.a1edf87281d3ef222b4e119e@yahoo.com> Date: Wed, 26 Sep 2012 02:20:50 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171967: audio/qsynth: Update to version 0.3.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:12 -0000 >Number: 171967 >Category: ports >Synopsis: audio/qsynth: Update to version 0.3.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.3.6 >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/qsynth/Makefile audio/qsynth/Makefile --- /usr/ports/audio/qsynth/Makefile 2012-09-24 07:20:55.000000000 +0900 +++ audio/qsynth/Makefile 2012-09-25 21:45:38.000000000 +0900 @@ -2,8 +2,7 @@ # $FreeBSD: ports/audio/qsynth/Makefile,v 1.14 2012/09/23 22:20:55 tabthorpe Exp $ PORTNAME= qsynth -PORTVERSION= 0.3.4 -PORTREVISION= 3 +PORTVERSION= 0.3.6 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20%28stable%29/${PORTVERSION} @@ -12,15 +11,31 @@ LIB_DEPENDS= fluidsynth:${PORTSDIR}/audio/fluidsynth -GNU_CONFIGURE= yes -USE_GMAKE= yes USE_QT4= gui qmake_build moc_build uic_build rcc_build linguist_build -CFLAGS+= -I${QT_INCDIR} ${PTHREAD_CFLAGS} ${PTHREAD_LIBS} -LDFLAGS+= -L${QT_LIBDIR} -CONFIGURE_ARGS+=ac_cv_path_ac_moc=${MOC} ac_cv_path_ac_uic=${UIC} \ +QT_NONSTANDARD= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= ac_cv_path_ac_moc=${MOC} \ + ac_cv_path_ac_uic=${UIC} \ ac_cv_path_ac_qmake=${QMAKE} \ ac_cv_path_ac_lupdate=${LOCALBASE}/bin/lupdate-qt4 \ ac_cv_path_ac_lrelease=${LOCALBASE}/bin/lrelease-qt4 -MAKE_JOBS_UNSAFE= yes +INSTALLS_ICONS= yes +MAKE_JOBS_UNSAFE=yes + +CPPFLAGS+= -I${QT_INCDIR} ${PTHREAD_CFLAGS} +LDFLAGS+= -L${QT_LIBDIR} ${PTHREAD_LIBS} + +post-patch: + @${REINPLACE_CMD} -e \ + 's|@make |@$$(MAKE) | ; \ + /man1/s|^|#|' ${WRKSRC}/Makefile.in + +post-configure: + @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${QMAKE} -o qsynth.mak \ + ${QMAKEFLAGS}) + +post-install: + @${STRIP_CMD} ${PREFIX}/bin/qsynth .include diff -urN /usr/ports/audio/qsynth/distinfo audio/qsynth/distinfo --- /usr/ports/audio/qsynth/distinfo 2011-03-19 21:28:57.000000000 +0900 +++ audio/qsynth/distinfo 2012-09-25 21:05:28.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (qsynth-0.3.4.tar.gz) = 87542acdd2d238d60d1fd26a61157fcdd34c1ce667543f564f31fd027ced8b07 -SIZE (qsynth-0.3.4.tar.gz) = 190655 +SHA256 (qsynth-0.3.6.tar.gz) = b5968da98661bac5c9fcc93d3a15851594dfbf3bb7d01ace15fbe8779d53fb3c +SIZE (qsynth-0.3.6.tar.gz) = 223774 diff -urN /usr/ports/audio/qsynth/files/patch-src-qsynthOptions.cpp audio/qsynth/files/patch-src-qsynthOptions.cpp --- /usr/ports/audio/qsynth/files/patch-src-qsynthOptions.cpp 2010-01-26 18:25:07.000000000 +0900 +++ audio/qsynth/files/patch-src-qsynthOptions.cpp 2012-09-25 21:29:39.000000000 +0900 @@ -1,6 +1,6 @@ ---- src/qsynthOptions.cpp.orig 2009-08-27 18:35:48.000000000 +0200 -+++ src/qsynthOptions.cpp 2009-08-27 18:36:39.000000000 +0200 -@@ -155,11 +155,11 @@ void qsynthOptions::print_usage ( const +--- src/qsynthOptions.cpp.orig 2011-03-30 20:53:04.000000000 +0900 ++++ src/qsynthOptions.cpp 2012-09-25 21:29:15.000000000 +0900 +@@ -172,11 +172,11 @@ out << " -n, --no-midi-in" + sEot + QObject::tr("Don't create a midi driver to read MIDI input events [default = yes]") + sEol; out << " -m, --midi-driver=[label]" + sEot + @@ -14,12 +14,12 @@ out << " -j, --connect-jack-outputs" + sEot + QObject::tr("Attempt to connect the jack outputs to the physical ports") + sEol; out << " -L, --audio-channels=[num]" + sEot + -@@ -459,7 +459,7 @@ void qsynthOptions::loadSetup ( qsynthSe - pSetup->iAudioBufSize = m_settings.value("/AudioBufSize", 512).toInt(); - pSetup->iAudioBufCount = m_settings.value("/AudioBufCount", 8).toInt(); +@@ -477,7 +477,7 @@ + pSetup->iAudioBufSize = m_settings.value("/AudioBufSize", 512).toInt(); + pSetup->iAudioBufCount = m_settings.value("/AudioBufCount", 8).toInt(); #else - pSetup->sMidiDriver = m_settings.value("/MidiDriver", "alsa_seq").toString(); + pSetup->sMidiDriver = m_settings.value("/MidiDriver", "jack").toString(); - pSetup->sAudioDriver = m_settings.value("/AudioDriver", "jack").toString(); - pSetup->iAudioBufSize = m_settings.value("/AudioBufSize", 64).toInt(); - pSetup->iAudioBufCount = m_settings.value("/AudioBufCount", 2).toInt(); + pSetup->sAudioDriver = m_settings.value("/AudioDriver", "jack").toString(); + pSetup->iAudioBufSize = m_settings.value("/AudioBufSize", 64).toInt(); + pSetup->iAudioBufCount = m_settings.value("/AudioBufCount", 2).toInt(); diff -urN /usr/ports/audio/qsynth/pkg-plist audio/qsynth/pkg-plist --- /usr/ports/audio/qsynth/pkg-plist 2010-01-26 18:25:06.000000000 +0900 +++ audio/qsynth/pkg-plist 2012-09-25 21:19:58.000000000 +0900 @@ -1,7 +1,8 @@ bin/qsynth -share/pixmaps/qsynth.png share/applications/qsynth.desktop +share/locale/qsynth_cs.qm share/locale/qsynth_de.qm share/locale/qsynth_es.qm share/locale/qsynth_ru.qm +share/icons/hicolor/32x32/apps/qsynth.png @dirrmtry share/applications >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ABC7D106564A for ; Tue, 25 Sep 2012 18:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 87D028FC1A for ; Tue, 25 Sep 2012 18:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIACfm017590 for ; Tue, 25 Sep 2012 18:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIACg1017581; Tue, 25 Sep 2012 18:10:12 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:12 GMT Resent-Message-Id: <201209251810.q8PIACg1017581@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A7420106567C for ; Tue, 25 Sep 2012 18:01:20 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 67E928FC14 for ; Tue, 25 Sep 2012 18:01:20 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id EFDCF2BC03B for ; Wed, 26 Sep 2012 03:01:17 +0900 (JST) Message-Id: <20120926022053.b6dcf81dee713fe29710312e@yahoo.com> Date: Wed, 26 Sep 2012 02:20:53 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171968: audio/soundtouch: Update to version 1.7.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:12 -0000 >Number: 171968 >Category: ports >Synopsis: audio/soundtouch: Update to version 1.7.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.7.0 >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/soundtouch/Makefile audio/soundtouch/Makefile --- /usr/ports/audio/soundtouch/Makefile 2012-08-18 18:56:36.000000000 +0900 +++ audio/soundtouch/Makefile 2012-09-25 03:17:05.000000000 +0900 @@ -1,12 +1,8 @@ -# New ports collection makefile for: SoundTouch -# Date created: 16 May 2005 -# Whom: Alexey Dokuchaev -# +# Created by: Alexey Dokuchaev # $FreeBSD: ports/audio/soundtouch/Makefile,v 1.28 2012/08/18 09:56:36 danfe Exp $ -# PORTNAME= soundtouch -DISTVERSION= 1.6.0 +DISTVERSION= 1.7.0 CATEGORIES= audio MASTER_SITES= http://www.surina.net/soundtouch/ @@ -15,37 +11,37 @@ LICENSE= LGPL21 -USE_AUTOTOOLS= autoconf automake libtool -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-shared=yes -MAKE_ARGS= pkgconfigdir="${PREFIX}/libdata/pkgconfig" \ - pkgdoc_DATA="${PORTDOCS}" pkgdocdir="${DOCSDIR}" -.if !defined(NOPORTDOCS) -PORTDOCS= README.html -.endif +OPTIONS_DEFINE= INTEGER_SAMPLES DOCS +INTEGER_SAMPLES_DESC= Use integer sample format + WRKSRC= ${WRKDIR}/${PORTNAME} -OPTIONS_DEFINE= INTEGER_SAMPLES -INTEGER_SAMPLES_DESC= Use integer sample format +USE_AUTOTOOLS= libtoolize aclocal autoheader automake autoconf +ACLOCAL_ARGS= -I config/m4 +AUTOMAKE_ARGS= --add-missing --copy --foreign +USE_LDCONFIG= yes +MAKE_JOBS_SAFE= yes -.include +.include .if ${PORT_OPTIONS:MINTEGER_SAMPLES} CONFIGURE_ARGS+= --enable-integer-samples .endif post-patch: - @${REINPLACE_CMD} -E 's|-O3 ?||' \ - ${WRKSRC}/source/SoundStretch/Makefile.am \ - ${WRKSRC}/source/SoundTouch/Makefile.am -.if ${ARCH} != "i386" && ${ARCH} != "amd64" && ${ARCH} != "ia64" - @${REINPLACE_CMD} '/AM_CXXFLAGS=/s|-msse2 ||' \ - ${WRKSRC}/source/SoundTouch/Makefile.am + @${REINPLACE_CMD} -e \ + 's|^pkgdoc_DATA|#pkgdoc_DATA| ; \ + s|$$(libdir)/pkgconfig|$$(prefix)/libdata/pkgconfig|' \ + ${WRKSRC}/Makefile.am + @${FIND} ${WRKSRC}/source -name "Makefile.am" | ${XARGS} \ + ${REINPLACE_CMD} -e \ + 's|-O[0-9]|| ; \ + s|-msse||' + +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.html ${DOCSDIR} .endif -run-autotools: # see ${WRKSRC}/bootstrap for reference - @(cd ${CONFIGURE_WRKSRC} && ${SETENV} \ - AUTOMAKE="${AUTOMAKE} --add-missing --foreign --copy" \ - ${AUTORECONF} -fisv) - -.include +.include diff -urN /usr/ports/audio/soundtouch/distinfo audio/soundtouch/distinfo --- /usr/ports/audio/soundtouch/distinfo 2012-07-05 22:18:08.000000000 +0900 +++ audio/soundtouch/distinfo 2012-09-02 22:15:54.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (soundtouch-1.6.0.tar.gz) = 8776edaf7299ffe1e8c97285f020365a63c0e01aa4f6f7c5fd1d011c0ded278f -SIZE (soundtouch-1.6.0.tar.gz) = 94852 +SHA256 (soundtouch-1.7.0.tar.gz) = 0c94722ab995489b7816baa553a1cfd433e1005d456382e31defd068b003c848 +SIZE (soundtouch-1.7.0.tar.gz) = 96531 diff -urN /usr/ports/audio/soundtouch/pkg-plist audio/soundtouch/pkg-plist --- /usr/ports/audio/soundtouch/pkg-plist 2012-07-05 22:18:08.000000000 +0900 +++ audio/soundtouch/pkg-plist 2012-09-02 22:30:48.000000000 +0900 @@ -5,10 +5,11 @@ include/soundtouch/STTypes.h include/soundtouch/SoundTouch.h include/soundtouch/soundtouch_config.h -@dirrm include/soundtouch -lib/libSoundTouch.a lib/libSoundTouch.la -lib/libSoundTouch.so.0 lib/libSoundTouch.so -share/aclocal/soundtouch.m4 +lib/libSoundTouch.so.0 libdata/pkgconfig/soundtouch.pc +share/aclocal/soundtouch.m4 +%%PORTDOCS%%%%DOCSDIR%%/README.html +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm include/soundtouch >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0EACE1065675 for ; Tue, 25 Sep 2012 18:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DAF108FC21 for ; Tue, 25 Sep 2012 18:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIACMo017666 for ; Tue, 25 Sep 2012 18:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIACwK017660; Tue, 25 Sep 2012 18:10:12 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:12 GMT Resent-Message-Id: <201209251810.q8PIACwK017660@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CA19106566B for ; Tue, 25 Sep 2012 18:01:31 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id 59C6D8FC16 for ; Tue, 25 Sep 2012 18:01:31 +0000 (UTC) Received: from msa103lp.auone-net.jp (MSA103lp [172.27.12.181]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id 85DE37D4258 for ; Wed, 26 Sep 2012 03:01:30 +0900 (JST) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id DDEE047C036 for ; Wed, 26 Sep 2012 03:01:22 +0900 (JST) Message-Id: <20120926022057.dd525dfb4fd587ec96369874@yahoo.com> Date: Wed, 26 Sep 2012 02:20:57 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171969: benchmarks/postmark: Update to version 1.53 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:13 -0000 >Number: 171969 >Category: ports >Synopsis: benchmarks/postmark: Update to version 1.53 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.53 >How-To-Repeat: >Fix: diff -urN /usr/ports/benchmarks/postmark/Makefile benchmarks/postmark/Makefile --- /usr/ports/benchmarks/postmark/Makefile 2009-07-17 13:07:45.000000000 +0900 +++ benchmarks/postmark/Makefile 2012-09-25 03:17:14.000000000 +0900 @@ -1,27 +1,21 @@ -# ex:ts=8 -# Ports collection makefile for: postmark -# Date created: Sat Sep 18, 1999 -# Whom: David O'Brien (obrien@NUXI.com) -# +# Created by: David O'Brien (obrien@NUXI.com) # $FreeBSD: ports/benchmarks/postmark/Makefile,v 1.18 2009/07/17 04:07:45 pgollucci Exp $ -# PORTNAME= postmark -PORTVERSION= 1.51 -PORTREVISION= 1 +PORTVERSION= 1.53 CATEGORIES= benchmarks -MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} +MASTER_SITES= DEBIAN DISTNAME= ${PORTNAME}_${PORTVERSION}.orig -PATCH_SITES= ${MASTER_SITE_DEBIAN_POOL} -PATCHFILES= ${PORTNAME}_${PORTVERSION}-5.diff.gz -PATCH_DIST_STRIP= -p1 - MAINTAINER= ports@FreeBSD.org COMMENT= NetApps file system benchmark +LICENSE= ART10 LGPL21 +LICENSE_COMB= multi + WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +MAN1= postmark.1 PLIST_FILES= sbin/postmark do-build: @@ -29,5 +23,6 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/postmark ${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/postmark.1 ${MANPREFIX}/man/man1 .include diff -urN /usr/ports/benchmarks/postmark/distinfo benchmarks/postmark/distinfo --- /usr/ports/benchmarks/postmark/distinfo 2011-03-19 02:58:11.000000000 +0900 +++ benchmarks/postmark/distinfo 2012-08-04 17:16:36.000000000 +0900 @@ -1,4 +1,2 @@ -SHA256 (postmark_1.51.orig.tar.gz) = 7cb7c31d4e7725ce8d8e11fb7df62ed700dee4dbd5ca1e31bf3a9161fc890b41 -SIZE (postmark_1.51.orig.tar.gz) = 13394 -SHA256 (postmark_1.51-5.diff.gz) = 65bddac38d38d51ba0c0662c3a2fcc28d868a104316fd1afbe93e15556ed7d36 -SIZE (postmark_1.51-5.diff.gz) = 3509 +SHA256 (postmark_1.53.orig.tar.gz) = 8a88fd322e1c5f0772df759de73c42aa055b1cd36cbba4ce6ee610ac5a3c47d3 +SIZE (postmark_1.53.orig.tar.gz) = 14195 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 60E63106567D for ; Tue, 25 Sep 2012 18:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3AAAF8FC24 for ; Tue, 25 Sep 2012 18:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIADC2017749 for ; Tue, 25 Sep 2012 18:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIADsA017740; Tue, 25 Sep 2012 18:10:13 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:13 GMT Resent-Message-Id: <201209251810.q8PIADsA017740@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A82A51065670 for ; Tue, 25 Sep 2012 18:01:32 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id 348C28FC23 for ; Tue, 25 Sep 2012 18:01:32 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id EE8EA23C031 for ; Wed, 26 Sep 2012 03:01:26 +0900 (JST) Message-Id: <20120926022101.4f361da137bfaa9c09ef63b8@yahoo.com> Date: Wed, 26 Sep 2012 02:21:01 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171970: biology/molden: Update to version 6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:13 -0000 >Number: 171970 >Category: ports >Synopsis: biology/molden: Update to version 6.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 6.0 Remove file: files/patch-aa files/patch-xwin.c pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/biology/molden/Makefile biology/molden/Makefile --- /usr/ports/biology/molden/Makefile 2012-09-24 00:40:58.000000000 +0900 +++ biology/molden/Makefile 2012-09-24 03:07:41.000000000 +0900 @@ -2,8 +2,7 @@ # $FreeBSD: ports/biology/molden/Makefile,v 1.49 2012/09/23 15:40:58 danfe Exp $ PORTNAME= molden -PORTVERSION= 4.6 -PORTREVISION= 3 +PORTVERSION= 5.0 PORTEPOCH= 1 CATEGORIES= biology MASTER_SITES= ftp://ftp.cmbi.ru.nl/pub/molgraph/molden/ @@ -12,16 +11,33 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Display molecular orbitals and electron densities in 2D and 3D -USE_XORG= x11 xmu -USE_GL= glut -USE_FORTRAN= yes +RESTRICTED= free for academic, non profit usage; do not re-distribute source and executable. -RESTRICTED= free for academic, non profit usage; do not re-distribute source and executable -MAKEFILE= ${WRKSRC}/makefile +OPTIONS_DEFINE= DATA DOCS +OPTIONS_DEFAULT=DATA -.if !defined(NOPORTDOCS) -PORTDOCS= docs/* -.endif +USE_XORG= x11 +USE_GL= glu +USE_FORTRAN= yes +USE_GMAKE= yes +MAKEFILE= makefile +MAKE_JOBS_UNSAFE=yes + +CFLAGS+= -D${OPSYS:U} -DDOBACK -DHASTIMER -DCOLOR_OFFSET=0.0 + +PORTDOCS= * +PORTDATA= * +PLIST_FILES= bin/ambfor bin/gmolden bin/molden bin/surf + +.include + +post-patch: + @${REINPLACE_CMD} -e \ + 's|^CC |#CC | ; \ + s|^FC |#FC | ; \ + s|/usr/X11R6|${LOCALBASE}| ; \ + s|-lXmu|| ; \ + /depend/s|^|#|' ${WRKSRC}/makefile post-configure: @${ECHO_MSG} "********************" @@ -32,17 +48,18 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/molden ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/ambfor/ambfor ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/gmolden ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/ambfor/ambfor ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/surf/surf ${PREFIX}/bin -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR} -.endif -.if !defined(NOPORTDATA) - @${MKDIR} ${DATADIR}/test ${DATADIR}/utils +.if ${PORT_OPTIONS:MDATA} + @${MKDIR} ${DATADIR}/test ${INSTALL_DATA} ${WRKSRC}/test/* ${DATADIR}/test + @${MKDIR} ${DATADIR}/utils ${INSTALL_DATA} ${WRKSRC}/utils/* ${DATADIR}/utils .endif +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR} +.endif .include diff -urN /usr/ports/biology/molden/distinfo biology/molden/distinfo --- /usr/ports/biology/molden/distinfo 2011-03-19 21:29:33.000000000 +0900 +++ biology/molden/distinfo 2012-09-23 19:27:09.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (molden4.6.tar.gz) = e18583d3e3234426b06403b056aed50e98397d6733e3b635c7011725e2816380 -SIZE (molden4.6.tar.gz) = 2786093 +SHA256 (molden5.0.tar.gz) = 595717cb9268ab7529e2677185d13ec0225c7a3e8c5b82925574f10e1a5a5476 +SIZE (molden5.0.tar.gz) = 3064448 diff -urN /usr/ports/biology/molden/files/patch-aa biology/molden/files/patch-aa --- /usr/ports/biology/molden/files/patch-aa 2009-01-06 02:27:23.000000000 +0900 +++ biology/molden/files/patch-aa 1970-01-01 09:00:00.000000000 +0900 @@ -1,59 +0,0 @@ ---- makefile.orig 2008-06-24 15:44:16.000000000 +0200 -+++ makefile 2008-11-10 22:53:22.000000000 +0100 -@@ -12,9 +12,19 @@ - # - # Disregard compiler warnings on rdmolf.f - # --CC = cc -+#CC = cc - LIBS = -lX11 -lm --LIBSG = -L/usr/X11R6/lib -lGLU -lGL -lXmu -lX11 -lm -+LIBSG = -L${LOCALBASE}/lib -lGLU -lGL -lXmu -lX11 -lm -+ -+### -+# FreeBSD -+#CC = gcc -+CFLAGS += -c -DDOBACK -DHASTIMER -I${LOCALBASE}/include -+#FC = f77 -+FFLAGS += #-Wno-globals -fno-globals -+LIBS = -L${LOCALBASE}/lib -lX11 -lm -+LDR = ${FC} -+### - - # Silicon Graphics - #CFLAGS = -c -DDOBACK -DHASTIMER -DCOLOR_OFFSET=0.0 -@@ -52,11 +66,11 @@ - # with GCC4.0 or higher replace the line with: - # 'external gfortran_iargc' - # --CFLAGS = -c -I/usr/X11R6/include -DDOBACK -DHASTIMER -DCOLOR_OFFSET=0.0 --FC = g77 --FFLAGS = --LIBS = -L/usr/X11R6/lib -lX11 -lm --LDR = g77 -+#CFLAGS = -c -I/usr/X11R6/include -DDOBACK -DHASTIMER -DCOLOR_OFFSET=0.0 -+#FC = g77 -+#FFLAGS = -+#LIBS = -L/usr/X11R6/lib -lX11 -lm -+#LDR = g77 - # 64 bit machines: - #LIBS = -L/usr/X11R6/lib64 -lX11 -lm - # -@@ -191,7 +205,7 @@ - # and the full opengl version of molden 'gmolden', (does not need glut) - # (make gmolden) - # --LIBSOGL = -lglut -lGLU -lGL -lXmu -lX11 -lm -+LIBSOGL = -L${LOCALBASE}/lib -lglut -lGLU -lGL -lXmu -lX11 -lm - # - # on linux : - # -@@ -227,7 +241,7 @@ - $(MAKE) -C ambfor - - surf/surf: surf/*.h surf/*.c -- $(MAKE) -C surf depend -+ #$(MAKE) -C surf depend - $(MAKE) -C surf - - # noxwin will not work as long as the old ocglbck calls arent in dummys diff -urN /usr/ports/biology/molden/files/patch-ambfor-makefile biology/molden/files/patch-ambfor-makefile --- /usr/ports/biology/molden/files/patch-ambfor-makefile 2008-11-05 06:55:39.000000000 +0900 +++ biology/molden/files/patch-ambfor-makefile 2012-09-24 02:51:30.000000000 +0900 @@ -1,17 +1,28 @@ ---- ambfor/makefile.orig 2008-10-30 10:06:37.000000000 +0100 -+++ ambfor/makefile 2008-10-30 10:07:19.000000000 +0100 -@@ -14,11 +14,11 @@ +--- ambfor/makefile.orig 2011-04-29 20:40:50.000000000 +0900 ++++ ambfor/makefile 2012-09-24 02:50:23.000000000 +0900 +@@ -12,12 +12,12 @@ # - #CC = cc + # --CFLAGS = -c --FC = g77 -+CFLAGS += -DFREEBSD=1 -+#FC = g77 - FFLAGS = -c -O3 -ffast-math +-CFLAGS = -c -g ++CFLAGS += -c + #FC = g77 +-FC = gfortran +-FFLAGS = -c -g -ffast-math -funroll-loops -O3 ++#FC = gfortran ++#FFLAGS = -c -g -ffast-math -funroll-loops -O3 LIBS = -lm --LDR = g77 -+LDR = $(FC) +-LDR = ${FC} -g ++LDR = ${FC} - OBJS = ambfor.o angle.o bond.o charge.o conn.o enegrd.o getinp.o \ - param.o tors.o vdwlj.o math.o optimise.o wrtout.o + OBJS = angle.o bond.o charge.o conn.o enegrd.o getinp.o param.o \ + tors.o vdwlj.o math.o switch.o wrtout.o pbc.o +@@ -47,7 +47,7 @@ + $(LDR) -o ambmd md.o verlet.o qvdw.o allocmd.o $(OBJS) $(LIBS) + + ambfor.o: ambfor.f +- ${FC} -c -g -ffast-math -funroll-loops -o ambfor.o ambfor.f ++ ${FC} -c ${FFLAGS} -o ambfor.o ambfor.f + + allocmd.o: alloc.c + $(CC) $(CFLAGS) -DMD -c alloc.c -o allocmd.o diff -urN /usr/ports/biology/molden/files/patch-surf-makefile biology/molden/files/patch-surf-makefile --- /usr/ports/biology/molden/files/patch-surf-makefile 2008-11-05 06:55:39.000000000 +0900 +++ biology/molden/files/patch-surf-makefile 2012-09-24 02:46:20.000000000 +0900 @@ -1,5 +1,21 @@ ---- surf/Makefile.orig 2008-10-30 10:12:27.000000000 +0100 -+++ surf/Makefile 2008-10-30 10:08:43.000000000 +0100 +--- surf/Makefile.orig 2008-08-26 02:59:06.000000000 +0900 ++++ surf/Makefile 2012-09-24 02:45:55.000000000 +0900 +@@ -1,12 +1,12 @@ + # Compilation flags + #CC = cc +-CC = cc ++#CC = cc + INCLUDE = -I. + #LINCLUDE = -lcurses -ltermcap -lm + LINCLUDE = -lm +-OPT_CFLAGS = -O2 $(FLAGS) $(INCLUDE) ++#OPT_CFLAGS = -O2 $(FLAGS) $(INCLUDE) + #CFLAGS = -g $(FLAGS) $(INCLUDE) +-CFLAGS = -O2 $(FLAGS) $(INCLUDE) ++#CFLAGS = -O2 $(FLAGS) $(INCLUDE) + + # These are the user object files in the application + SRCS = surf.c io.c compute.c dual.c utils.c lp.c chull.c tessel_cases.c \ @@ -63,46 +63,120 @@ # DO NOT DELETE THIS LINE -- make depend depends on it. diff -urN /usr/ports/biology/molden/files/patch-xwin.c biology/molden/files/patch-xwin.c --- /usr/ports/biology/molden/files/patch-xwin.c 2008-11-11 11:21:28.000000000 +0900 +++ biology/molden/files/patch-xwin.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,123 +0,0 @@ ---- ./xwin.c.orig 2008-11-10 12:27:25.647441620 -0500 -+++ ./xwin.c 2008-11-10 12:29:25.515496080 -0500 -@@ -22,7 +22,7 @@ - #endif - #if defined(DARWIN) || defined(FREEBSD) - #else --#include -+#include - #endif - #endif - -@@ -3360,7 +3360,7 @@ - static int *icopth; - static int *icoptl; - static int *icoptm; --static int linkat = 0; -+static int link_at = 0; - - static QBOXSTRU IANZboxes[MAXAT]; - static QBOXSTRU IZboxes[MAXAT][4]; -@@ -17466,7 +17466,7 @@ - if (ioniom == 1) { - int ism, isl; - -- linkat = 0; -+ link_at = 0; - - /* Counting the number of Link atoms between H and lower - levels*/ -@@ -17479,10 +17479,10 @@ - if (ionij != 0) continue; - nconn = xyz.iconn[j*(MXCON+1)]; - for (k=1;k<=nconn;k++) { -- if (xyz.ityp[xyz.iconn[j*(MXCON+1)+k]-1]/10000 > 0) linkat++; -+ if (xyz.ityp[xyz.iconn[j*(MXCON+1)+k]-1]/10000 > 0) link_at++; - } - } -- linkat += 20000; -+ link_at += 20000; - *itotc = *icopth; - *imult = *ispopth; - if (CheckChargeMult()) { -@@ -17503,7 +17503,7 @@ - - } else if (ioniom == 2) { - -- linkat = 0; -+ link_at = 0; - - /* Counting the number of Link atoms between H and - lower levels*/ -@@ -17513,10 +17513,10 @@ - if(ionij != 0) continue; - nconn = xyz.iconn[j*(MXCON+1)]; - for (k=1;k<=nconn;k++) { -- if (xyz.ityp[xyz.iconn[j*(MXCON+1)+k]-1]/10000 > 0) linkat++; -+ if (xyz.ityp[xyz.iconn[j*(MXCON+1)+k]-1]/10000 > 0) link_at++; - } - } -- linkat += 20000; -+ link_at += 20000; - *itotc = *icopth; - *imult = *ispopth; - if (CheckChargeMult()) { -@@ -17528,7 +17528,7 @@ - break; - */ - } -- linkat = 0; -+ link_at = 0; - - /* Counting the number of Link atoms between H+M and - lower levels*/ -@@ -17538,10 +17538,10 @@ - if (ionij == 2) continue; - nconn = xyz.iconn[j*(MXCON+1)]; - for (k=1;k<=nconn;k++) { -- if (xyz.ityp[xyz.iconn[j*(MXCON+1)+k]-1]/10000 == 2) linkat++; -+ if (xyz.ityp[xyz.iconn[j*(MXCON+1)+k]-1]/10000 == 2) link_at++; - } - } -- linkat += 20000; -+ link_at += 20000; - *itotc = *icoptm; - *imult = *ispoptm; - if (CheckChargeMult()) { -@@ -17556,7 +17556,7 @@ - icopt = *icoptl+3; - ispopt = *ispoptl-1; - } -- linkat = 0; -+ link_at = 0; - *itotc = icopt - 3; - *imult = ispopt + 1; - *ito = itopt[jmode] + 1; -@@ -17808,10 +17808,10 @@ - ionil = 0; - - if (ioniom) { -- ionil = 3 - (linkat / 10000); -- linkat -= (linkat / 10000) * 10000; -+ ionil = 3 - (link_at / 10000); -+ link_at -= (link_at / 10000) * 10000; - } else { -- linkat = 0; -+ link_at = 0; - } - - if (*zmptr.ihaszm) { -@@ -17834,10 +17834,10 @@ - } - } - /* -- fprintf(stderr,"ionil %d ne %d itotc %d linkat %d mult %d\n", -- ionil,ne,*itotc,linkat,*imult); -+ fprintf(stderr,"ionil %d ne %d itotc %d link_at %d mult %d\n", -+ ionil,ne,*itotc,link_at,*imult); - */ -- ne = ne - *itotc + linkat; -+ ne = ne - *itotc + link_at; - if (ne % 2 == *imult % 2) return(1); - return(0); - } diff -urN /usr/ports/biology/molden/pkg-plist biology/molden/pkg-plist --- /usr/ports/biology/molden/pkg-plist 2008-11-11 11:21:28.000000000 +0900 +++ biology/molden/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,60 +0,0 @@ -bin/ambfor -bin/gmolden -bin/molden -bin/surf -%%PORTDOCS%%%%DOCSDIR%%/manual.txt.Z -%%PORTDOCS%%%%DOCSDIR%%/manual.ps.Z -%%PORTDOCS%%%%DOCSDIR%%/figures.ps.Z -%%PORTDATA%%%%DATADIR%%/test/adf.molf -%%PORTDATA%%%%DATADIR%%/test/ambfor_amber.xyz -%%PORTDATA%%%%DATADIR%%/test/ambfor_gaff.xyz -%%PORTDATA%%%%DATADIR%%/test/ampac.arc -%%PORTDATA%%%%DATADIR%%/test/ampac.test -%%PORTDATA%%%%DATADIR%%/test/bucky.xyz -%%PORTDATA%%%%DATADIR%%/test/chemx.test -%%PORTDATA%%%%DATADIR%%/test/complex2.out -%%PORTDATA%%%%DATADIR%%/test/cpeptide.gro -%%PORTDATA%%%%DATADIR%%/test/esp.test -%%PORTDATA%%%%DATADIR%%/test/esp.txt -%%PORTDATA%%%%DATADIR%%/test/esp.xyz -%%PORTDATA%%%%DATADIR%%/test/fragment -%%PORTDATA%%%%DATADIR%%/test/gamess_uk.freq -%%PORTDATA%%%%DATADIR%%/test/gamess_uk.input -%%PORTDATA%%%%DATADIR%%/test/gamess_uk.test1 -%%PORTDATA%%%%DATADIR%%/test/gamess_uk.test2 -%%PORTDATA%%%%DATADIR%%/test/gamess_us.h2o_631g_opt.out -%%PORTDATA%%%%DATADIR%%/test/gamess_us.irc -%%PORTDATA%%%%DATADIR%%/test/gamess_us_uhf_opt -%%PORTDATA%%%%DATADIR%%/test/gaussian.freq -%%PORTDATA%%%%DATADIR%%/test/gaussian.input -%%PORTDATA%%%%DATADIR%%/test/gaussian.test -%%PORTDATA%%%%DATADIR%%/test/jaguar.cube -%%PORTDATA%%%%DATADIR%%/test/molden.ogl -%%PORTDATA%%%%DATADIR%%/test/mopac.freq -%%PORTDATA%%%%DATADIR%%/test/mopac.test -%%PORTDATA%%%%DATADIR%%/test/pdb.test -%%PORTDATA%%%%DATADIR%%/test/pdb.test.omap -%%PORTDATA%%%%DATADIR%%/test/qchem.test -%%PORTDATA%%%%DATADIR%%/test/reacpth.xyz -%%PORTDATA%%%%DATADIR%%/test/shelx.ins -%%PORTDATA%%%%DATADIR%%/test/surface.molf -%%PORTDATA%%%%DATADIR%%/test/test.fdat -%%PORTDATA%%%%DATADIR%%/test/test.mol2 -%%PORTDATA%%%%DATADIR%%/test/test_homo.cube -%%PORTDATA%%%%DATADIR%%/test/tinker_charmm.xyz -%%PORTDATA%%%%DATADIR%%/test/tinker_mm3.xyz -%%PORTDATA%%%%DATADIR%%/test/uracil.fdat -%%PORTDATA%%%%DATADIR%%/test/uracil_gauss.out -%%PORTDATA%%%%DATADIR%%/test/vamp.test -%%PORTDATA%%%%DATADIR%%/utils/INFO -%%PORTDATA%%%%DATADIR%%/utils/ch_backspace -%%PORTDATA%%%%DATADIR%%/utils/ch_mxcon -%%PORTDATA%%%%DATADIR%%/utils/ch_par -%%PORTDATA%%%%DATADIR%%/utils/colors -%%PORTDATA%%%%DATADIR%%/utils/ircextract.awk -%%PORTDATA%%%%DATADIR%%/utils/molden -%%PORTDATA%%%%DATADIR%%/utils/multi_vrml.csh -%%PORTDATA%%%%DATADIR%%/utils/multi_vrml_orbitals.csh -%%PORTDATA%%@dirrm %%DATADIR%%/utils -%%PORTDATA%%@dirrm %%DATADIR%%/test -%%PORTDATA%%@dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B6A1C1065670 for ; Tue, 25 Sep 2012 18:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 910C58FC0A for ; Tue, 25 Sep 2012 18:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIADpD017825 for ; Tue, 25 Sep 2012 18:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIADTM017818; Tue, 25 Sep 2012 18:10:13 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:13 GMT Resent-Message-Id: <201209251810.q8PIADTM017818@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 96D8F106566C for ; Tue, 25 Sep 2012 18:01:55 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id B6AA18FC0C for ; Tue, 25 Sep 2012 18:01:54 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id A5BE247C036 for ; Wed, 26 Sep 2012 03:01:34 +0900 (JST) Message-Id: <20120926022106.b56680bc0637210172c61cd0@yahoo.com> Date: Wed, 26 Sep 2012 02:21:06 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171971: biology/tinker: Update to version 6.0.01 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:13 -0000 >Number: 171971 >Category: ports >Synopsis: biology/tinker: Update to version 6.0.01 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 6.0.01 New file: files/patch-bench__bench1.run files/patch-bench__bench2.run files/patch-bench__bench3.run files/patch-bench__bench4.run files/patch-bench__bench5.run files/patch-make__Makefile files/pkg-message.in Remove file: files/patch-aa files/patch-ah files/patch-ai files/patch-aj files/patch-ak files/patch-al >How-To-Repeat: >Fix: diff -urN /usr/ports/biology/tinker/Makefile biology/tinker/Makefile --- /usr/ports/biology/tinker/Makefile 2011-10-11 05:17:22.000000000 +0900 +++ biology/tinker/Makefile 2012-09-25 03:17:32.000000000 +0900 @@ -1,76 +1,74 @@ -# New ports collection makefile for: tinker -# Date Created: 26 August 1998 -# Whom: Glenn Johnson -# +# Created by: Glenn Johnson # $FreeBSD: ports/biology/tinker/Makefile,v 1.43 2011/10/10 20:17:22 pav Exp $ -# PORTNAME= tinker -PORTVERSION= 5.1.09 +PORTVERSION= 6.0.01 CATEGORIES= biology MASTER_SITES= http://dasher.wustl.edu/tinker/downloads/ MAINTAINER= ports@FreeBSD.org COMMENT= A general purpose molecular modelling package -MAKE_ENV+= HAVE_G2C=yes INSTALL_PROGRAM="${INSTALL_PROGRAM}" +RESTRICTED= author requests no distribution except from his FTP site -WRKSRC= ${WRKDIR}/tinker/source +OPTIONS_DEFINE= OPTIMIZED_FFLAGS DATA DOCS EXAMPLES +OPTIONS_DEFAULT=DATA +OPTIMIZED_FFLAGS_DESC= compilation optimizations + +WRKSRC= ${WRKDIR}/${PORTNAME} +BUILD_WRKSRC= ${WRKSRC}/source +INSTALL_WRKSRC= ${WRKSRC}/source -MAKEFILE= ${WRKDIR}/tinker/make/Makefile +USE_FORTRAN= yes +MAKE_ENV= HAVE_G2C=yes +MAKEFILE= ${WRKSRC}/make/Makefile ALL_TARGET= all listing INSTALL_TARGET= rename -RESTRICTED= author requests no distribution except from his FTP site +MAKE_JOBS_SAFE= yes + +SUB_FILES= pkg-message -DOCS= 0README *.pdf *.txt announce/release* -SAMPLES= 0README *.make *.dyn *.int *.frac *.key *.seq *.pdb *.run *.xyz +DOCS= 0README *.pdf *.txt +SAMPLES= 0README *.make *.dyn *.int *.frac *.key *.seq *.pdb *.xyz BENCHES= 0README *.dyn0 *.log *.key *.run *.xyz results* .include -USE_FORTRAN= yes - -.if defined(WITH_OPTIMIZED_FLAGS) +.if ${PORT_OPTIONS:MOPTIMIZED_FFLAGS} FFLAGS+= -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations .if (${ARCH} == "i386") FFLAGS+= -mfancy-math-387 -malign-double .endif # i386 .endif -pre-everything:: -.if !defined(WITH_OPTIMIZED_FLAGS) - @${ECHO_MSG} "You can optimize by setting WITH_OPTIMIZED_FLAGS=yes." +.if empty(PORT_OPTIONS:MDATA) +NOPORTDATA= yes .endif post-extract: - ${CHMOD} -R u+w ${WRKDIR}/tinker - -post-patch: - @${REINPLACE_CMD} -e 's|%%FFLAGS%%|${FFLAGS}|g' ${WRKSRC}/../make/Makefile + @${CHMOD} -R u+w ${WRKSRC} post-install: + @${MKDIR} ${DATADIR} + ${INSTALL_DATA} ${INSTALL_WRKSRC}/tinker.txt ${DATADIR} @${MKDIR} ${DATADIR}/params - @${INSTALL_DATA} ${WRKDIR}/tinker/source/tinker.txt \ - ${DATADIR} - @${INSTALL_DATA} ${WRKDIR}/tinker/params/* \ - ${DATADIR}/params -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - @${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/params/* ${DATADIR}/params +.if ${PORT_OPTIONS:MDATA} @${MKDIR} ${DATADIR}/bench + ${INSTALL_DATA} ${BENCHES:S|^|${WRKSRC}/bench/|} ${DATADIR}/bench @${MKDIR} ${DATADIR}/test - @${INSTALL_DATA} ${DOCS:S|^|${WRKDIR}/tinker/doc/|} ${DOCSDIR} - @${INSTALL_DATA} ${SAMPLES:S|^|${WRKDIR}/tinker/example/|} ${EXAMPLESDIR} - @${INSTALL_DATA} ${BENCHES:S|^|${WRKDIR}/tinker/bench/|} ${DATADIR}/bench - @${INSTALL_DATA} ${WRKDIR}/tinker/test/* ${DATADIR}/test + ${INSTALL_DATA} ${WRKSRC}/test/* ${DATADIR}/test +.endif +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${DOCS:S|^|${WRKSRC}/doc/|} ${DOCSDIR} +.endif +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${SAMPLES:S|^|${WRKSRC}/example/|} ${EXAMPLESDIR} .endif - @${ECHO_MSG} "" - @${ECHO_MSG} " **********************************************************" - @${ECHO_MSG} " The author requests that you return a license form " - @${ECHO_MSG} " to him if you find Tinker to be useful. " - @${ECHO_MSG} " " - @${ECHO_MSG} " See ${DOCSDIR} for license forms. " - @${ECHO_MSG} " **********************************************************" - @${ECHO_MSG} "" + @${ECHO_CMD} + @${CAT} ${PKGMESSAGE} + @${ECHO_CMD} .include diff -urN /usr/ports/biology/tinker/distinfo biology/tinker/distinfo --- /usr/ports/biology/tinker/distinfo 2011-01-31 20:45:44.000000000 +0900 +++ biology/tinker/distinfo 2011-11-23 05:30:20.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (tinker-5.1.09.tar.gz) = 61765adfe260e3f3083243542dac49d38141191d5d6580e9a66a29c31d5a3183 -SIZE (tinker-5.1.09.tar.gz) = 14071638 +SHA256 (tinker-6.0.01.tar.gz) = 98f4ffdec889944e5bbe10196ac2c9a7888a3708db3998027ffc65cb6e39dd71 +SIZE (tinker-6.0.01.tar.gz) = 18093304 diff -urN /usr/ports/biology/tinker/files/patch-aa biology/tinker/files/patch-aa --- /usr/ports/biology/tinker/files/patch-aa 2011-01-31 20:45:44.000000000 +0900 +++ biology/tinker/files/patch-aa 1970-01-01 09:00:00.000000000 +0900 @@ -1,207 +0,0 @@ ---- ../make/Makefile.orig 2010-08-25 00:58:16.000000000 +0400 -+++ ../make/Makefile 2011-01-22 01:12:41.000000000 +0300 -@@ -9,8 +9,8 @@ - ## - ## 1. make all Build all the TINKER executables - ## 2. make rename Move the executables to BINDIR --## 3. make remove_links Create soft links in LINKDIR --## 4. make create_links Remove soft links from LINKDIR -+## 3. make remove_links Remove soft links in LINKDIR -+## 4. make create_links Create soft links from LINKDIR - ## 6. make listing Concatenate source to tinker.txt - ## 5. make clean Delete objects and executables - ## -@@ -30,9 +30,9 @@ - ## LINKDIR Linked Copies of TINKER Executables - ## - --TINKERDIR = /Users/ponder/tinker --BINDIR = $(TINKERDIR)/bin --LINKDIR = /usr/local/bin -+TINKERDIR = ${WRKDIR} -+BINDIR = ${PREFIX}/bin -+#LINKDIR = /usr/local/bin - - #################################################################### - ## Known Machine Types; Uncomment One of the Following Sections ## -@@ -40,6 +40,20 @@ - #################################################################### - - ## -+## Machine: IntelPC / FreeBSD -+## CPU Type: Intel, AMD, Cyrix -+## Oper Sys: FreeBSD 4.2 -+## Compiler: f77 , aka g77 -+## -+ -+F77 = ${FC} -+LIBS = -+F77FLAGS = -c %%FFLAGS%% -+LINKFLAGS = -+OPTFLAGS = -+LIBFLAGS = -rcuv -+ -+## - ## Machine: Generic Linux - ## CPU Type: Intel x86 Compatible - ## Oper Sys: Fedora Core -@@ -102,12 +116,12 @@ - ## Compiler: Intel Fortran for Mac 11 - ## - --F77 = /opt/intel/Compiler/11.1/058/bin/intel64/ifort --LIBS = --F77FLAGS = -c -axSSSE3 -vec-report0 --OPTFLAGS = -O3 -no-ipo -no-prec-div --LIBFLAGS = -crusv --LINKFLAGS = -static-intel -mmacosx-version-min=10.4 -+#F77 = /opt/intel/Compiler/11.1/058/bin/intel64/ifort -+#LIBS = -+#F77FLAGS = -c -axSSSE3 -vec-report0 -+#OPTFLAGS = -O3 -no-ipo -no-prec-div -+#LIBFLAGS = -crusv -+#LINKFLAGS = -static-intel -mmacosx-version-min=10.4 - - ## - ## Machine: Macintosh (PPC) -@@ -584,6 +598,8 @@ - xyzpdb.x \ - xyzsybyl.x - -+.SUFFIXES: .x -+ - .f.o: - ${F77} ${F77FLAGS} ${OPTFLAGS} $*.f - -@@ -596,8 +612,8 @@ - server.o: - ${F77} ${F77FLAGS} ${OPTFLAGS} server.f - --%.x: %.o libtinker.a -- ${F77} ${LINKFLAGS} -o $@ $^ ${LIBS} -+.o.x: libtinker.a -+ ${F77} ${LINKFLAGS} -o $@ $< libtinker.a ${LIBS} - - all: ${EXEFILES} - -@@ -608,63 +624,63 @@ - cat *.i *.f > tinker.txt - - rename: -- mv alchemy.x $(BINDIR)/alchemy -- mv analyze.x $(BINDIR)/analyze -- mv anneal.x $(BINDIR)/anneal -- mv archive.x $(BINDIR)/archive -- mv correlate.x $(BINDIR)/correlate -- mv crystal.x $(BINDIR)/crystal -- mv diffuse.x $(BINDIR)/diffuse -- mv distgeom.x $(BINDIR)/distgeom -- mv document.x $(BINDIR)/document -- mv dynamic.x $(BINDIR)/dynamic -- mv gda.x $(BINDIR)/gda -- mv intedit.x $(BINDIR)/intedit -- mv intxyz.x $(BINDIR)/intxyz -- mv minimize.x $(BINDIR)/minimize -- mv minirot.x $(BINDIR)/minirot -- mv minrigid.x $(BINDIR)/minrigid -- mv monte.x $(BINDIR)/monte -- mv newton.x $(BINDIR)/newton -- mv newtrot.x $(BINDIR)/newtrot -- mv nucleic.x $(BINDIR)/nucleic -- mv optimize.x $(BINDIR)/optimize -- mv optirot.x $(BINDIR)/optirot -- mv optrigid.x $(BINDIR)/optrigid -- mv path.x $(BINDIR)/path -- mv pdbxyz.x $(BINDIR)/pdbxyz -- mv polarize.x $(BINDIR)/polarize -- mv poledit.x $(BINDIR)/poledit -- mv potential.x $(BINDIR)/potential -- mv prmedit.x $(BINDIR)/prmedit -- mv protein.x $(BINDIR)/protein -- mv pss.x $(BINDIR)/pss -- mv pssrigid.x $(BINDIR)/pssrigid -- mv pssrot.x $(BINDIR)/pssrot -- mv radial.x $(BINDIR)/radial -- mv saddle.x $(BINDIR)/saddle -- mv scan.x $(BINDIR)/scan -- mv sniffer.x $(BINDIR)/sniffer -- mv spacefill.x $(BINDIR)/spacefill -- mv spectrum.x $(BINDIR)/spectrum -- mv superpose.x $(BINDIR)/superpose -- mv sybylxyz.x $(BINDIR)/sybylxyz -- mv testgrad.x $(BINDIR)/testgrad -- mv testhess.x $(BINDIR)/testhess -- mv testpair.x $(BINDIR)/testpair -- mv testrot.x $(BINDIR)/testrot -- mv timer.x $(BINDIR)/timer -- mv timerot.x $(BINDIR)/timerot -- mv valence.x $(BINDIR)/valence -- mv vibbig.x $(BINDIR)/vibbig -- mv vibrate.x $(BINDIR)/vibrate -- mv vibrot.x $(BINDIR)/vibrot -- mv xtalfit.x $(BINDIR)/xtalfit -- mv xtalmin.x $(BINDIR)/xtalmin -- mv xyzedit.x $(BINDIR)/xyzedit -- mv xyzint.x $(BINDIR)/xyzint -- mv xyzpdb.x $(BINDIR)/xyzpdb -- mv xyzsybyl.x $(BINDIR)/xyzsybyl -+ ${INSTALL_PROGRAM} alchemy.x $(BINDIR)/alchemy -+ ${INSTALL_PROGRAM} analyze.x $(BINDIR)/analyze -+ ${INSTALL_PROGRAM} anneal.x $(BINDIR)/anneal -+ ${INSTALL_PROGRAM} archive.x $(BINDIR)/archive -+ ${INSTALL_PROGRAM} correlate.x $(BINDIR)/correlate -+ ${INSTALL_PROGRAM} crystal.x $(BINDIR)/crystal -+ ${INSTALL_PROGRAM} diffuse.x $(BINDIR)/diffuse -+ ${INSTALL_PROGRAM} distgeom.x $(BINDIR)/distgeom -+ ${INSTALL_PROGRAM} document.x $(BINDIR)/document -+ ${INSTALL_PROGRAM} dynamic.x $(BINDIR)/dynamic -+ ${INSTALL_PROGRAM} gda.x $(BINDIR)/gda -+ ${INSTALL_PROGRAM} intedit.x $(BINDIR)/intedit -+ ${INSTALL_PROGRAM} intxyz.x $(BINDIR)/intxyz -+ ${INSTALL_PROGRAM} minimize.x $(BINDIR)/minimize -+ ${INSTALL_PROGRAM} minirot.x $(BINDIR)/minirot -+ ${INSTALL_PROGRAM} minrigid.x $(BINDIR)/minrigid -+ ${INSTALL_PROGRAM} monte.x $(BINDIR)/monte -+ ${INSTALL_PROGRAM} newton.x $(BINDIR)/newton -+ ${INSTALL_PROGRAM} newtrot.x $(BINDIR)/newtrot -+ ${INSTALL_PROGRAM} nucleic.x $(BINDIR)/nucleic -+ ${INSTALL_PROGRAM} optimize.x $(BINDIR)/optimize -+ ${INSTALL_PROGRAM} optirot.x $(BINDIR)/optirot -+ ${INSTALL_PROGRAM} optrigid.x $(BINDIR)/optrigid -+ ${INSTALL_PROGRAM} path.x $(BINDIR)/path -+ ${INSTALL_PROGRAM} pdbxyz.x $(BINDIR)/pdbxyz -+ ${INSTALL_PROGRAM} polarize.x $(BINDIR)/polarize -+ ${INSTALL_PROGRAM} poledit.x $(BINDIR)/poledit -+ ${INSTALL_PROGRAM} potential.x $(BINDIR)/potential -+ ${INSTALL_PROGRAM} prmedit.x $(BINDIR)/prmedit -+ ${INSTALL_PROGRAM} protein.x $(BINDIR)/protein -+ ${INSTALL_PROGRAM} pss.x $(BINDIR)/pss -+ ${INSTALL_PROGRAM} pssrigid.x $(BINDIR)/pssrigid -+ ${INSTALL_PROGRAM} pssrot.x $(BINDIR)/pssrot -+ ${INSTALL_PROGRAM} radial.x $(BINDIR)/radial -+ ${INSTALL_PROGRAM} saddle.x $(BINDIR)/saddle -+ ${INSTALL_PROGRAM} scan.x $(BINDIR)/scan -+ ${INSTALL_PROGRAM} sniffer.x $(BINDIR)/sniffer -+ ${INSTALL_PROGRAM} spacefill.x $(BINDIR)/spacefill -+ ${INSTALL_PROGRAM} spectrum.x $(BINDIR)/spectrum -+ ${INSTALL_PROGRAM} superpose.x $(BINDIR)/superpose -+ ${INSTALL_PROGRAM} sybylxyz.x $(BINDIR)/sybylxyz -+ ${INSTALL_PROGRAM} testgrad.x $(BINDIR)/testgrad -+ ${INSTALL_PROGRAM} testhess.x $(BINDIR)/testhess -+ ${INSTALL_PROGRAM} testpair.x $(BINDIR)/testpair -+ ${INSTALL_PROGRAM} testrot.x $(BINDIR)/testrot -+ ${INSTALL_PROGRAM} timer.x $(BINDIR)/timer -+ ${INSTALL_PROGRAM} timerot.x $(BINDIR)/timerot -+ ${INSTALL_PROGRAM} valence.x $(BINDIR)/valence -+ ${INSTALL_PROGRAM} vibbig.x $(BINDIR)/vibbig -+ ${INSTALL_PROGRAM} vibrate.x $(BINDIR)/vibrate -+ ${INSTALL_PROGRAM} vibrot.x $(BINDIR)/vibrot -+ ${INSTALL_PROGRAM} xtalfit.x $(BINDIR)/xtalfit -+ ${INSTALL_PROGRAM} xtalmin.x $(BINDIR)/xtalmin -+ ${INSTALL_PROGRAM} xyzedit.x $(BINDIR)/xyzedit -+ ${INSTALL_PROGRAM} xyzint.x $(BINDIR)/xyzint -+ ${INSTALL_PROGRAM} xyzpdb.x $(BINDIR)/xyzpdb -+ ${INSTALL_PROGRAM} xyzsybyl.x $(BINDIR)/xyzsybyl - - remove_links: - rm -f $(LINKDIR)/alchemy diff -urN /usr/ports/biology/tinker/files/patch-ah biology/tinker/files/patch-ah --- /usr/ports/biology/tinker/files/patch-ah 2001-09-13 10:13:52.000000000 +0900 +++ biology/tinker/files/patch-ah 1970-01-01 09:00:00.000000000 +0900 @@ -1,5 +0,0 @@ ---- ../bench/bench1.run.orig Tue Jul 24 14:02:20 2001 -+++ ../bench/bench1.run Wed Sep 5 13:57:02 2001 -@@ -1 +1 @@ --../bin/timer bench1 1 y -+timer bench1 1 y diff -urN /usr/ports/biology/tinker/files/patch-ai biology/tinker/files/patch-ai --- /usr/ports/biology/tinker/files/patch-ai 2001-09-13 10:13:52.000000000 +0900 +++ biology/tinker/files/patch-ai 1970-01-01 09:00:00.000000000 +0900 @@ -1,5 +0,0 @@ ---- ../bench/bench2.run.orig Tue Jul 24 14:02:20 2001 -+++ ../bench/bench2.run Wed Sep 5 13:58:47 2001 -@@ -1 +1 @@ --../bin/timer bench2 1 y -+timer bench2 1 y diff -urN /usr/ports/biology/tinker/files/patch-aj biology/tinker/files/patch-aj --- /usr/ports/biology/tinker/files/patch-aj 2001-09-13 10:13:52.000000000 +0900 +++ biology/tinker/files/patch-aj 1970-01-01 09:00:00.000000000 +0900 @@ -1,5 +0,0 @@ ---- ../bench/bench3.run.orig Wed Sep 5 14:00:09 2001 -+++ ../bench/bench3.run Wed Sep 5 14:01:27 2001 -@@ -1 +1 @@ --time ../bin/vibrate bench3 0 -+time vibrate bench3 0 diff -urN /usr/ports/biology/tinker/files/patch-ak biology/tinker/files/patch-ak --- /usr/ports/biology/tinker/files/patch-ak 2001-09-13 10:13:52.000000000 +0900 +++ biology/tinker/files/patch-ak 1970-01-01 09:00:00.000000000 +0900 @@ -1,7 +0,0 @@ ---- ../bench/bench4.run.orig Tue Jul 24 14:02:20 2001 -+++ ../bench/bench4.run Wed Sep 5 14:02:17 2001 -@@ -1,3 +1,3 @@ - cp bench4.dyn0 bench4.dyn --time ../bin/dynamic bench4 1000 1.0 10.0 2 298.0 -+time dynamic bench4 1000 1.0 10.0 2 298.0 - rm bench4.dyn diff -urN /usr/ports/biology/tinker/files/patch-al biology/tinker/files/patch-al --- /usr/ports/biology/tinker/files/patch-al 2011-01-31 20:45:44.000000000 +0900 +++ biology/tinker/files/patch-al 1970-01-01 09:00:00.000000000 +0900 @@ -1,7 +0,0 @@ ---- ../bench/bench5.run.orig 2010-08-25 00:58:15.000000000 +0400 -+++ ../bench/bench5.run 2011-01-26 23:35:18.000000000 +0300 -@@ -1,3 +1,3 @@ - cp bench5.dyn0 bench5.dyn --time ../bin/dynamic bench5 1000 1.0 10.0 2 298.0 -+time dynamic bench5 1000 1.0 10.0 2 298.0 - rm bench5.dyn diff -urN /usr/ports/biology/tinker/files/patch-bench__bench1.run biology/tinker/files/patch-bench__bench1.run --- /usr/ports/biology/tinker/files/patch-bench__bench1.run 1970-01-01 09:00:00.000000000 +0900 +++ biology/tinker/files/patch-bench__bench1.run 2012-07-26 14:38:23.000000000 +0900 @@ -0,0 +1,5 @@ +--- bench/bench1.run.orig Tue Jul 24 14:02:20 2001 ++++ bench/bench1.run Wed Sep 5 13:57:02 2001 +@@ -1 +1 @@ +-../bin/timer bench1 1 y ++timer bench1 1 y diff -urN /usr/ports/biology/tinker/files/patch-bench__bench2.run biology/tinker/files/patch-bench__bench2.run --- /usr/ports/biology/tinker/files/patch-bench__bench2.run 1970-01-01 09:00:00.000000000 +0900 +++ biology/tinker/files/patch-bench__bench2.run 2012-07-26 14:38:58.000000000 +0900 @@ -0,0 +1,5 @@ +--- bench/bench2.run.orig Tue Jul 24 14:02:20 2001 ++++ bench/bench2.run Wed Sep 5 13:58:47 2001 +@@ -1 +1 @@ +-../bin/timer bench2 1 y ++timer bench2 1 y diff -urN /usr/ports/biology/tinker/files/patch-bench__bench3.run biology/tinker/files/patch-bench__bench3.run --- /usr/ports/biology/tinker/files/patch-bench__bench3.run 1970-01-01 09:00:00.000000000 +0900 +++ biology/tinker/files/patch-bench__bench3.run 2012-07-26 14:38:51.000000000 +0900 @@ -0,0 +1,5 @@ +--- bench/bench3.run.orig Wed Sep 5 14:00:09 2001 ++++ bench/bench3.run Wed Sep 5 14:01:27 2001 +@@ -1 +1 @@ +-time ../bin/vibrate bench3 0 ++time vibrate bench3 0 diff -urN /usr/ports/biology/tinker/files/patch-bench__bench4.run biology/tinker/files/patch-bench__bench4.run --- /usr/ports/biology/tinker/files/patch-bench__bench4.run 1970-01-01 09:00:00.000000000 +0900 +++ biology/tinker/files/patch-bench__bench4.run 2012-07-26 14:39:20.000000000 +0900 @@ -0,0 +1,7 @@ +--- bench/bench4.run.orig Tue Jul 24 14:02:20 2001 ++++ bench/bench4.run Wed Sep 5 14:02:17 2001 +@@ -1,3 +1,3 @@ + cp bench4.dyn0 bench4.dyn +-time ../bin/dynamic bench4 1000 1.0 10.0 2 298.0 ++time dynamic bench4 1000 1.0 10.0 2 298.0 + rm bench4.dyn diff -urN /usr/ports/biology/tinker/files/patch-bench__bench5.run biology/tinker/files/patch-bench__bench5.run --- /usr/ports/biology/tinker/files/patch-bench__bench5.run 1970-01-01 09:00:00.000000000 +0900 +++ biology/tinker/files/patch-bench__bench5.run 2012-07-26 14:39:39.000000000 +0900 @@ -0,0 +1,7 @@ +--- bench/bench5.run.orig 2010-08-25 00:58:15.000000000 +0400 ++++ bench/bench5.run 2011-01-26 23:35:18.000000000 +0300 +@@ -1,3 +1,3 @@ + cp bench5.dyn0 bench5.dyn +-time ../bin/dynamic bench5 1000 1.0 10.0 2 298.0 ++time dynamic bench5 1000 1.0 10.0 2 298.0 + rm bench5.dyn diff -urN /usr/ports/biology/tinker/files/patch-make__Makefile biology/tinker/files/patch-make__Makefile --- /usr/ports/biology/tinker/files/patch-make__Makefile 1970-01-01 09:00:00.000000000 +0900 +++ biology/tinker/files/patch-make__Makefile 2012-07-26 15:17:26.000000000 +0900 @@ -0,0 +1,209 @@ +--- make/Makefile.orig 2011-11-06 05:29:19.000000000 +0900 ++++ make/Makefile 2011-11-23 05:37:09.000000000 +0900 +@@ -9,8 +9,8 @@ + ## + ## 1. make all Build all the TINKER executables + ## 2. make rename Move the executables to BINDIR +-## 3. make remove_links Create soft links in LINKDIR +-## 4. make create_links Remove soft links from LINKDIR ++## 3. make remove_links Remove soft links in LINKDIR ++## 4. make create_links Create soft links from LINKDIR + ## 6. make listing Concatenate source to tinker.txt + ## 5. make clean Delete objects and executables + ## +@@ -30,9 +30,9 @@ + ## LINKDIR Linked Copies of TINKER Executables + ## + +-TINKERDIR = /Users/ponder/tinker +-BINDIR = $(TINKERDIR)/bin +-LINKDIR = /usr/local/bin ++TINKERDIR = ${WRKDIR} ++BINDIR = ${PREFIX}/bin ++#LINKDIR = /usr/local/bin + + #################################################################### + ## Known Machine Types; Uncomment One of the Following Sections ## +@@ -40,6 +40,20 @@ + #################################################################### + + ## ++## Machine: IntelPC / FreeBSD ++## CPU Type: Intel, AMD, Cyrix ++## Oper Sys: FreeBSD 4.2 ++## Compiler: f77 , aka g77 ++## ++ ++F77 = ${FC} ++LIBS = ++F77FLAGS = -c ${FFLAGS} ++LINKFLAGS = ++OPTFLAGS = ++LIBFLAGS = -rcuv ++ ++## + ## Machine: Generic Linux + ## CPU Type: Intel x86 Compatible + ## Oper Sys: Fedora Core +@@ -104,12 +118,12 @@ + ## Parallel: OpenMP + ## + +-F77 = /opt/intel/bin/ifort +-LIBS = -L$(TINKERDIR)/fftw/lib -lfftw3_threads -lfftw3 +-F77FLAGS = -c -axSSSE3 -assume cc_omp +-OPTFLAGS = -O3 -no-ipo -no-prec-div -openmp +-LIBFLAGS = -crusv +-LINKFLAGS = $(OPTFLAGS) -static-intel -mmacosx-version-min=10.4 ++#F77 = /opt/intel/bin/ifort ++#LIBS = -L$(TINKERDIR)/fftw/lib -lfftw3_threads -lfftw3 ++#F77FLAGS = -c -axSSSE3 -assume cc_omp ++#OPTFLAGS = -O3 -no-ipo -no-prec-div -openmp ++#LIBFLAGS = -crusv ++#LINKFLAGS = $(OPTFLAGS) -static-intel -mmacosx-version-min=10.4 + + ## + ## Machine: Macintosh +@@ -587,6 +601,8 @@ + xyzpdb.x \ + xyzsybyl.x + ++.SUFFIXES: .x ++ + .f.o: + ${F77} ${F77FLAGS} ${OPTFLAGS} $*.f + +@@ -596,8 +612,8 @@ + server.o: + ${F77} ${F77FLAGS} ${OPTFLAGS} server.f + +-%.x: %.o libtinker.a +- ${F77} ${LINKFLAGS} -o $@ $^ ${LIBS}; strip $@ ++.o.x: libtinker.a ++ ${F77} ${LINKFLAGS} -o $@ $< libtinker.a ${LIBS} + + all: ${EXEFILES} + +@@ -608,64 +624,64 @@ + cat *.i *.f *.c > tinker.txt + + rename: +- mv alchemy.x $(BINDIR)/alchemy +- mv analyze.x $(BINDIR)/analyze +- mv anneal.x $(BINDIR)/anneal +- mv archive.x $(BINDIR)/archive +- mv correlate.x $(BINDIR)/correlate +- mv crystal.x $(BINDIR)/crystal +- mv diffuse.x $(BINDIR)/diffuse +- mv distgeom.x $(BINDIR)/distgeom +- mv document.x $(BINDIR)/document +- mv dynamic.x $(BINDIR)/dynamic +- mv gda.x $(BINDIR)/gda +- mv intedit.x $(BINDIR)/intedit +- mv intxyz.x $(BINDIR)/intxyz +- mv minimize.x $(BINDIR)/minimize +- mv minirot.x $(BINDIR)/minirot +- mv minrigid.x $(BINDIR)/minrigid +- mv monte.x $(BINDIR)/monte +- mv newton.x $(BINDIR)/newton +- mv newtrot.x $(BINDIR)/newtrot +- mv nucleic.x $(BINDIR)/nucleic +- mv optimize.x $(BINDIR)/optimize +- mv optirot.x $(BINDIR)/optirot +- mv optrigid.x $(BINDIR)/optrigid +- mv path.x $(BINDIR)/path +- mv pdbxyz.x $(BINDIR)/pdbxyz +- mv polarize.x $(BINDIR)/polarize +- mv poledit.x $(BINDIR)/poledit +- mv potential.x $(BINDIR)/potential +- mv prmedit.x $(BINDIR)/prmedit +- mv protein.x $(BINDIR)/protein +- mv pss.x $(BINDIR)/pss +- mv pssrigid.x $(BINDIR)/pssrigid +- mv pssrot.x $(BINDIR)/pssrot +- mv radial.x $(BINDIR)/radial +- mv saddle.x $(BINDIR)/saddle +- mv scan.x $(BINDIR)/scan +- mv sniffer.x $(BINDIR)/sniffer +- mv spacefill.x $(BINDIR)/spacefill +- mv spectrum.x $(BINDIR)/spectrum +- mv superpose.x $(BINDIR)/superpose +- mv sybylxyz.x $(BINDIR)/sybylxyz +- mv testgrad.x $(BINDIR)/testgrad +- mv testhess.x $(BINDIR)/testhess +- mv testpair.x $(BINDIR)/testpair +- mv testrot.x $(BINDIR)/testrot +- mv timer.x $(BINDIR)/timer +- mv timerot.x $(BINDIR)/timerot +- mv torsfit.x $(BINDIR)/torsfit +- mv valence.x $(BINDIR)/valence +- mv vibbig.x $(BINDIR)/vibbig +- mv vibrate.x $(BINDIR)/vibrate +- mv vibrot.x $(BINDIR)/vibrot +- mv xtalfit.x $(BINDIR)/xtalfit +- mv xtalmin.x $(BINDIR)/xtalmin +- mv xyzedit.x $(BINDIR)/xyzedit +- mv xyzint.x $(BINDIR)/xyzint +- mv xyzpdb.x $(BINDIR)/xyzpdb +- mv xyzsybyl.x $(BINDIR)/xyzsybyl ++ ${BSD_INSTALL_PROGRAM} alchemy.x $(BINDIR)/alchemy ++ ${BSD_INSTALL_PROGRAM} analyze.x $(BINDIR)/analyze ++ ${BSD_INSTALL_PROGRAM} anneal.x $(BINDIR)/anneal ++ ${BSD_INSTALL_PROGRAM} archive.x $(BINDIR)/archive ++ ${BSD_INSTALL_PROGRAM} correlate.x $(BINDIR)/correlate ++ ${BSD_INSTALL_PROGRAM} crystal.x $(BINDIR)/crystal ++ ${BSD_INSTALL_PROGRAM} diffuse.x $(BINDIR)/diffuse ++ ${BSD_INSTALL_PROGRAM} distgeom.x $(BINDIR)/distgeom ++ ${BSD_INSTALL_PROGRAM} document.x $(BINDIR)/document ++ ${BSD_INSTALL_PROGRAM} dynamic.x $(BINDIR)/dynamic ++ ${BSD_INSTALL_PROGRAM} gda.x $(BINDIR)/gda ++ ${BSD_INSTALL_PROGRAM} intedit.x $(BINDIR)/intedit ++ ${BSD_INSTALL_PROGRAM} intxyz.x $(BINDIR)/intxyz ++ ${BSD_INSTALL_PROGRAM} minimize.x $(BINDIR)/minimize ++ ${BSD_INSTALL_PROGRAM} minirot.x $(BINDIR)/minirot ++ ${BSD_INSTALL_PROGRAM} minrigid.x $(BINDIR)/minrigid ++ ${BSD_INSTALL_PROGRAM} monte.x $(BINDIR)/monte ++ ${BSD_INSTALL_PROGRAM} newton.x $(BINDIR)/newton ++ ${BSD_INSTALL_PROGRAM} newtrot.x $(BINDIR)/newtrot ++ ${BSD_INSTALL_PROGRAM} nucleic.x $(BINDIR)/nucleic ++ ${BSD_INSTALL_PROGRAM} optimize.x $(BINDIR)/optimize ++ ${BSD_INSTALL_PROGRAM} optirot.x $(BINDIR)/optirot ++ ${BSD_INSTALL_PROGRAM} optrigid.x $(BINDIR)/optrigid ++ ${BSD_INSTALL_PROGRAM} path.x $(BINDIR)/path ++ ${BSD_INSTALL_PROGRAM} pdbxyz.x $(BINDIR)/pdbxyz ++ ${BSD_INSTALL_PROGRAM} polarize.x $(BINDIR)/polarize ++ ${BSD_INSTALL_PROGRAM} poledit.x $(BINDIR)/poledit ++ ${BSD_INSTALL_PROGRAM} potential.x $(BINDIR)/potential ++ ${BSD_INSTALL_PROGRAM} prmedit.x $(BINDIR)/prmedit ++ ${BSD_INSTALL_PROGRAM} protein.x $(BINDIR)/protein ++ ${BSD_INSTALL_PROGRAM} pss.x $(BINDIR)/pss ++ ${BSD_INSTALL_PROGRAM} pssrigid.x $(BINDIR)/pssrigid ++ ${BSD_INSTALL_PROGRAM} pssrot.x $(BINDIR)/pssrot ++ ${BSD_INSTALL_PROGRAM} radial.x $(BINDIR)/radial ++ ${BSD_INSTALL_PROGRAM} saddle.x $(BINDIR)/saddle ++ ${BSD_INSTALL_PROGRAM} scan.x $(BINDIR)/scan ++ ${BSD_INSTALL_PROGRAM} sniffer.x $(BINDIR)/sniffer ++ ${BSD_INSTALL_PROGRAM} spacefill.x $(BINDIR)/spacefill ++ ${BSD_INSTALL_PROGRAM} spectrum.x $(BINDIR)/spectrum ++ ${BSD_INSTALL_PROGRAM} superpose.x $(BINDIR)/superpose ++ ${BSD_INSTALL_PROGRAM} sybylxyz.x $(BINDIR)/sybylxyz ++ ${BSD_INSTALL_PROGRAM} testgrad.x $(BINDIR)/testgrad ++ ${BSD_INSTALL_PROGRAM} testhess.x $(BINDIR)/testhess ++ ${BSD_INSTALL_PROGRAM} testpair.x $(BINDIR)/testpair ++ ${BSD_INSTALL_PROGRAM} testrot.x $(BINDIR)/testrot ++ ${BSD_INSTALL_PROGRAM} timer.x $(BINDIR)/timer ++ ${BSD_INSTALL_PROGRAM} timerot.x $(BINDIR)/timerot ++ ${BSD_INSTALL_PROGRAM} torsfit.x $(BINDIR)/torsfit ++ ${BSD_INSTALL_PROGRAM} valence.x $(BINDIR)/valence ++ ${BSD_INSTALL_PROGRAM} vibbig.x $(BINDIR)/vibbig ++ ${BSD_INSTALL_PROGRAM} vibrate.x $(BINDIR)/vibrate ++ ${BSD_INSTALL_PROGRAM} vibrot.x $(BINDIR)/vibrot ++ ${BSD_INSTALL_PROGRAM} xtalfit.x $(BINDIR)/xtalfit ++ ${BSD_INSTALL_PROGRAM} xtalmin.x $(BINDIR)/xtalmin ++ ${BSD_INSTALL_PROGRAM} xyzedit.x $(BINDIR)/xyzedit ++ ${BSD_INSTALL_PROGRAM} xyzint.x $(BINDIR)/xyzint ++ ${BSD_INSTALL_PROGRAM} xyzpdb.x $(BINDIR)/xyzpdb ++ ${BSD_INSTALL_PROGRAM} xyzsybyl.x $(BINDIR)/xyzsybyl + + remove_links: + rm -f $(LINKDIR)/alchemy diff -urN /usr/ports/biology/tinker/files/patch-openend.f biology/tinker/files/patch-openend.f --- /usr/ports/biology/tinker/files/patch-openend.f 2003-07-25 11:48:05.000000000 +0900 +++ biology/tinker/files/patch-openend.f 2012-07-26 14:40:22.000000000 +0900 @@ -1,8 +1,8 @@ $FreeBSD: ports/biology/tinker/files/patch-openend.f,v 1.2 2003/07/25 02:48:05 maho Exp $ ---- openend.f.orig Fri Apr 18 13:31:51 2003 -+++ openend.f Mon Jul 21 13:36:11 2003 +--- source/openend.f.orig Fri Apr 18 13:31:51 2003 ++++ source/openend.f Mon Jul 21 13:36:11 2003 @@ -29,11 +29,11 @@ c c standard Fortran 90, unavailable in some Fortran 77 compilers diff -urN /usr/ports/biology/tinker/files/pkg-message.in biology/tinker/files/pkg-message.in --- /usr/ports/biology/tinker/files/pkg-message.in 1970-01-01 09:00:00.000000000 +0900 +++ biology/tinker/files/pkg-message.in 2012-07-26 14:34:04.000000000 +0900 @@ -0,0 +1,6 @@ +********************************************************** + The author requests that you return a license form + to him if you find Tinker to be useful. + + See %%DOCSDIR%% for license forms. +**********************************************************" diff -urN /usr/ports/biology/tinker/pkg-plist biology/tinker/pkg-plist --- /usr/ports/biology/tinker/pkg-plist 2011-01-31 20:45:44.000000000 +0900 +++ biology/tinker/pkg-plist 2012-07-26 14:54:44.000000000 +0900 @@ -45,6 +45,7 @@ bin/testrot bin/timer bin/timerot +bin/torsfit bin/valence bin/vibbig bin/vibrate @@ -61,421 +62,415 @@ %%PORTDOCS%%%%DOCSDIR%%/guide.txt %%PORTDOCS%%%%DOCSDIR%%/license.pdf %%PORTDOCS%%%%DOCSDIR%%/license.txt -%%PORTDOCS%%%%DOCSDIR%%/release-3.2 -%%PORTDOCS%%%%DOCSDIR%%/release-3.6 -%%PORTDOCS%%%%DOCSDIR%%/release-3.7 -%%PORTDOCS%%%%DOCSDIR%%/release-3.8 -%%PORTDOCS%%%%DOCSDIR%%/release-3.9 -%%PORTDOCS%%%%DOCSDIR%%/release-4.0 -%%PORTDOCS%%%%DOCSDIR%%/release-4.1 -%%PORTDOCS%%%%DOCSDIR%%/release-4.2 %%PORTDOCS%%%%DOCSDIR%%/summary.pdf %%PORTDOCS%%%%DOCSDIR%%/summary.txt -%%PORTDOCS%%%%EXAMPLESDIR%%/0README -%%PORTDOCS%%%%EXAMPLESDIR%%/alatet.int -%%PORTDOCS%%%%EXAMPLESDIR%%/alatet.key -%%PORTDOCS%%%%EXAMPLESDIR%%/alatet.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/alatet.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/alkane.key -%%PORTDOCS%%%%EXAMPLESDIR%%/alkane.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/ammonia.key -%%PORTDOCS%%%%EXAMPLESDIR%%/ammonia.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/amoeba.key -%%PORTDOCS%%%%EXAMPLESDIR%%/amoeba.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/arach.int -%%PORTDOCS%%%%EXAMPLESDIR%%/arach.key -%%PORTDOCS%%%%EXAMPLESDIR%%/arach.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/azulene.int -%%PORTDOCS%%%%EXAMPLESDIR%%/azulene.key -%%PORTDOCS%%%%EXAMPLESDIR%%/azulene.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/bdna.int -%%PORTDOCS%%%%EXAMPLESDIR%%/bdna.key -%%PORTDOCS%%%%EXAMPLESDIR%%/bdna.make -%%PORTDOCS%%%%EXAMPLESDIR%%/bdna.pdb -%%PORTDOCS%%%%EXAMPLESDIR%%/bdna.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/bdna.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/bearing.key -%%PORTDOCS%%%%EXAMPLESDIR%%/bearing.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/bearing2.key -%%PORTDOCS%%%%EXAMPLESDIR%%/benzamidine.key -%%PORTDOCS%%%%EXAMPLESDIR%%/benzamidine.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/benzbox.key -%%PORTDOCS%%%%EXAMPLESDIR%%/benzbox.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/benzene.int -%%PORTDOCS%%%%EXAMPLESDIR%%/benzene.key -%%PORTDOCS%%%%EXAMPLESDIR%%/benzene.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/bowl.int -%%PORTDOCS%%%%EXAMPLESDIR%%/bowl.key -%%PORTDOCS%%%%EXAMPLESDIR%%/bowl.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/bowl2.key -%%PORTDOCS%%%%EXAMPLESDIR%%/bowl2.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/bowl3.key -%%PORTDOCS%%%%EXAMPLESDIR%%/bowl3.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/bucky.int -%%PORTDOCS%%%%EXAMPLESDIR%%/bucky.key -%%PORTDOCS%%%%EXAMPLESDIR%%/bucky.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/butane.int -%%PORTDOCS%%%%EXAMPLESDIR%%/butane.key -%%PORTDOCS%%%%EXAMPLESDIR%%/butane.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/butane2.int -%%PORTDOCS%%%%EXAMPLESDIR%%/butane2.key -%%PORTDOCS%%%%EXAMPLESDIR%%/butane2.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/butanes.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/butanes.key -%%PORTDOCS%%%%EXAMPLESDIR%%/butanes.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/butanex.key -%%PORTDOCS%%%%EXAMPLESDIR%%/butanex.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/butopls.int -%%PORTDOCS%%%%EXAMPLESDIR%%/butopls.key -%%PORTDOCS%%%%EXAMPLESDIR%%/butopls.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/butopls2.int -%%PORTDOCS%%%%EXAMPLESDIR%%/butopls2.key -%%PORTDOCS%%%%EXAMPLESDIR%%/butopls2.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/c5.int -%%PORTDOCS%%%%EXAMPLESDIR%%/c5.key -%%PORTDOCS%%%%EXAMPLESDIR%%/c5.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/c5.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/c7a.int -%%PORTDOCS%%%%EXAMPLESDIR%%/c7a.key -%%PORTDOCS%%%%EXAMPLESDIR%%/c7a.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/c7a.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/c7e.int -%%PORTDOCS%%%%EXAMPLESDIR%%/c7e.key -%%PORTDOCS%%%%EXAMPLESDIR%%/c7e.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/c7e.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/calmodulin.key -%%PORTDOCS%%%%EXAMPLESDIR%%/calmodulin.pdb -%%PORTDOCS%%%%EXAMPLESDIR%%/calmodulin.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/calmodulin.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/cawater.key -%%PORTDOCS%%%%EXAMPLESDIR%%/cawater.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/copper.key -%%PORTDOCS%%%%EXAMPLESDIR%%/copper.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/cpentene.key -%%PORTDOCS%%%%EXAMPLESDIR%%/cpentene.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/crambin.key -%%PORTDOCS%%%%EXAMPLESDIR%%/crambin.pdb -%%PORTDOCS%%%%EXAMPLESDIR%%/crambin.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/crambin.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/crambinx.key -%%PORTDOCS%%%%EXAMPLESDIR%%/crambinx.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/crown.int -%%PORTDOCS%%%%EXAMPLESDIR%%/crown.key -%%PORTDOCS%%%%EXAMPLESDIR%%/crown.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/cychept.int -%%PORTDOCS%%%%EXAMPLESDIR%%/cychept.key -%%PORTDOCS%%%%EXAMPLESDIR%%/cychept.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/cyclo.int -%%PORTDOCS%%%%EXAMPLESDIR%%/cyclo.key -%%PORTDOCS%%%%EXAMPLESDIR%%/cyclo.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/cyclo2.int -%%PORTDOCS%%%%EXAMPLESDIR%%/cyclo2.key -%%PORTDOCS%%%%EXAMPLESDIR%%/cyclo2.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/cycprop.key -%%PORTDOCS%%%%EXAMPLESDIR%%/cycprop.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/dang.key -%%PORTDOCS%%%%EXAMPLESDIR%%/dang.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/deltorphin.int -%%PORTDOCS%%%%EXAMPLESDIR%%/deltorphin.key -%%PORTDOCS%%%%EXAMPLESDIR%%/deltorphin.make -%%PORTDOCS%%%%EXAMPLESDIR%%/deltorphin.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/deltorphin.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/dhfr.key -%%PORTDOCS%%%%EXAMPLESDIR%%/dhfr.run -%%PORTDOCS%%%%EXAMPLESDIR%%/dhfr.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/dhfr.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/dhfr2.key -%%PORTDOCS%%%%EXAMPLESDIR%%/dhfr2.run -%%PORTDOCS%%%%EXAMPLESDIR%%/dhfr2.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/dhfr2.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/diamond.key -%%PORTDOCS%%%%EXAMPLESDIR%%/diamond.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/diene.int -%%PORTDOCS%%%%EXAMPLESDIR%%/diene.key -%%PORTDOCS%%%%EXAMPLESDIR%%/diene.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/dimethane.key -%%PORTDOCS%%%%EXAMPLESDIR%%/dimethane.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/dmp.key -%%PORTDOCS%%%%EXAMPLESDIR%%/dmp.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/enkephalin.int -%%PORTDOCS%%%%EXAMPLESDIR%%/enkephalin.key -%%PORTDOCS%%%%EXAMPLESDIR%%/enkephalin.make -%%PORTDOCS%%%%EXAMPLESDIR%%/enkephalin.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/enkephalin.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/ermer.int -%%PORTDOCS%%%%EXAMPLESDIR%%/ermer.key -%%PORTDOCS%%%%EXAMPLESDIR%%/ermer.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/ester.key -%%PORTDOCS%%%%EXAMPLESDIR%%/ester.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/ethane.int -%%PORTDOCS%%%%EXAMPLESDIR%%/ethane.key -%%PORTDOCS%%%%EXAMPLESDIR%%/ethane.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/ethanol.int -%%PORTDOCS%%%%EXAMPLESDIR%%/ethanol.key -%%PORTDOCS%%%%EXAMPLESDIR%%/ethanol.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/ether.key -%%PORTDOCS%%%%EXAMPLESDIR%%/ether.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/etherbox.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/etherbox.key -%%PORTDOCS%%%%EXAMPLESDIR%%/etherbox.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/ethylene.int -%%PORTDOCS%%%%EXAMPLESDIR%%/ethylene.key -%%PORTDOCS%%%%EXAMPLESDIR%%/ethylene.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/flane.int -%%PORTDOCS%%%%EXAMPLESDIR%%/flane.key -%%PORTDOCS%%%%EXAMPLESDIR%%/flane.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/form.key -%%PORTDOCS%%%%EXAMPLESDIR%%/form.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/formbig.key -%%PORTDOCS%%%%EXAMPLESDIR%%/formbig.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/formbox.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/formbox.key -%%PORTDOCS%%%%EXAMPLESDIR%%/formbox.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/formopls.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/formopls.key -%%PORTDOCS%%%%EXAMPLESDIR%%/formopls.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/furan.int -%%PORTDOCS%%%%EXAMPLESDIR%%/furan.key -%%PORTDOCS%%%%EXAMPLESDIR%%/furan.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/glucose.key -%%PORTDOCS%%%%EXAMPLESDIR%%/glucose.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/glycerol.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/glycerol.key -%%PORTDOCS%%%%EXAMPLESDIR%%/glycerol.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/graphite.key -%%PORTDOCS%%%%EXAMPLESDIR%%/graphite.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/helix.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/helix.key -%%PORTDOCS%%%%EXAMPLESDIR%%/helix.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/heme.key -%%PORTDOCS%%%%EXAMPLESDIR%%/heme.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/hexane.int -%%PORTDOCS%%%%EXAMPLESDIR%%/hexane.key -%%PORTDOCS%%%%EXAMPLESDIR%%/hexane.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/hexanes.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/hexanes.key -%%PORTDOCS%%%%EXAMPLESDIR%%/hexanes.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/imidazole.int -%%PORTDOCS%%%%EXAMPLESDIR%%/imidazole.key -%%PORTDOCS%%%%EXAMPLESDIR%%/imidazole.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/imine.int -%%PORTDOCS%%%%EXAMPLESDIR%%/imine.key -%%PORTDOCS%%%%EXAMPLESDIR%%/imine.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/indole.key -%%PORTDOCS%%%%EXAMPLESDIR%%/indole.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/lactam.key -%%PORTDOCS%%%%EXAMPLESDIR%%/lactam.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/lipid.key -%%PORTDOCS%%%%EXAMPLESDIR%%/lipid.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/lj38.key -%%PORTDOCS%%%%EXAMPLESDIR%%/lj38.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/melittin.key -%%PORTDOCS%%%%EXAMPLESDIR%%/melittin.pdb -%%PORTDOCS%%%%EXAMPLESDIR%%/melittin.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/melittin.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/membrane.key -%%PORTDOCS%%%%EXAMPLESDIR%%/membrane.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/meohbox.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/meohbox.key -%%PORTDOCS%%%%EXAMPLESDIR%%/meohbox.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/methane.int -%%PORTDOCS%%%%EXAMPLESDIR%%/methane.key -%%PORTDOCS%%%%EXAMPLESDIR%%/methane.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/methanol.key -%%PORTDOCS%%%%EXAMPLESDIR%%/methanol.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/mgwater.key -%%PORTDOCS%%%%EXAMPLESDIR%%/mgwater.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/mm3.key -%%PORTDOCS%%%%EXAMPLESDIR%%/mm3.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/nacl.key -%%PORTDOCS%%%%EXAMPLESDIR%%/nacl.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/nada.key -%%PORTDOCS%%%%EXAMPLESDIR%%/nada.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/naphthalene.int -%%PORTDOCS%%%%EXAMPLESDIR%%/naphthalene.key -%%PORTDOCS%%%%EXAMPLESDIR%%/naphthalene.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/naphthax.frac -%%PORTDOCS%%%%EXAMPLESDIR%%/naphthax.key -%%PORTDOCS%%%%EXAMPLESDIR%%/naphthax.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/nitrogen.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/nitrogen.key -%%PORTDOCS%%%%EXAMPLESDIR%%/nitrogen.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/nma.int -%%PORTDOCS%%%%EXAMPLESDIR%%/nma.key -%%PORTDOCS%%%%EXAMPLESDIR%%/nma.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/nmabox.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/nmabox.key -%%PORTDOCS%%%%EXAMPLESDIR%%/nmabox.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/nmf.key -%%PORTDOCS%%%%EXAMPLESDIR%%/nmf.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/nstilbene.int -%%PORTDOCS%%%%EXAMPLESDIR%%/nstilbene.key -%%PORTDOCS%%%%EXAMPLESDIR%%/nstilbene.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/octane.int -%%PORTDOCS%%%%EXAMPLESDIR%%/octane.key -%%PORTDOCS%%%%EXAMPLESDIR%%/octane.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/octane2.int -%%PORTDOCS%%%%EXAMPLESDIR%%/octane2.key -%%PORTDOCS%%%%EXAMPLESDIR%%/octane2.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/octene.key -%%PORTDOCS%%%%EXAMPLESDIR%%/octene.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/palmitate.int -%%PORTDOCS%%%%EXAMPLESDIR%%/palmitate.key -%%PORTDOCS%%%%EXAMPLESDIR%%/palmitate.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/pentane.frac -%%PORTDOCS%%%%EXAMPLESDIR%%/pentane.key -%%PORTDOCS%%%%EXAMPLESDIR%%/pentane.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/peptide.int -%%PORTDOCS%%%%EXAMPLESDIR%%/peptide.key -%%PORTDOCS%%%%EXAMPLESDIR%%/peptide.make -%%PORTDOCS%%%%EXAMPLESDIR%%/peptide.pdb -%%PORTDOCS%%%%EXAMPLESDIR%%/peptide.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/peptide.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/phenanth.key -%%PORTDOCS%%%%EXAMPLESDIR%%/phenanth.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/photo.key -%%PORTDOCS%%%%EXAMPLESDIR%%/photo.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/photo.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/pol3.key -%%PORTDOCS%%%%EXAMPLESDIR%%/pol3.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/polyala.key -%%PORTDOCS%%%%EXAMPLESDIR%%/polyala.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/propane.key -%%PORTDOCS%%%%EXAMPLESDIR%%/propane.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/propellane.int -%%PORTDOCS%%%%EXAMPLESDIR%%/propellane.key -%%PORTDOCS%%%%EXAMPLESDIR%%/propellane.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/propyne.key -%%PORTDOCS%%%%EXAMPLESDIR%%/propyne.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/pyridine.int -%%PORTDOCS%%%%EXAMPLESDIR%%/pyridine.key -%%PORTDOCS%%%%EXAMPLESDIR%%/pyridine.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/pyrrole.int -%%PORTDOCS%%%%EXAMPLESDIR%%/pyrrole.key -%%PORTDOCS%%%%EXAMPLESDIR%%/pyrrole.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/retinoic.key -%%PORTDOCS%%%%EXAMPLESDIR%%/retinoic.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/skunk.key -%%PORTDOCS%%%%EXAMPLESDIR%%/skunk.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/spc.key -%%PORTDOCS%%%%EXAMPLESDIR%%/spc.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/sterol.key -%%PORTDOCS%%%%EXAMPLESDIR%%/sterol.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/styrene.int -%%PORTDOCS%%%%EXAMPLESDIR%%/styrene.key -%%PORTDOCS%%%%EXAMPLESDIR%%/styrene.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/terphenyl.key -%%PORTDOCS%%%%EXAMPLESDIR%%/terphenyl.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/tfe.key -%%PORTDOCS%%%%EXAMPLESDIR%%/tfe.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/thiadiene.int -%%PORTDOCS%%%%EXAMPLESDIR%%/thiadiene.key -%%PORTDOCS%%%%EXAMPLESDIR%%/thiadiene.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/thiophene.int -%%PORTDOCS%%%%EXAMPLESDIR%%/thiophene.key -%%PORTDOCS%%%%EXAMPLESDIR%%/thiophene.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/thr.int -%%PORTDOCS%%%%EXAMPLESDIR%%/thr.key -%%PORTDOCS%%%%EXAMPLESDIR%%/thr.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/tip3f.key -%%PORTDOCS%%%%EXAMPLESDIR%%/tip3f.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/tip3p.key -%%PORTDOCS%%%%EXAMPLESDIR%%/tip3p.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/tip4f.key -%%PORTDOCS%%%%EXAMPLESDIR%%/tip4f.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/tip4p.key -%%PORTDOCS%%%%EXAMPLESDIR%%/tip4p.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/tip5p.key -%%PORTDOCS%%%%EXAMPLESDIR%%/tip5p.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/trpcage.key -%%PORTDOCS%%%%EXAMPLESDIR%%/trpcage.pdb -%%PORTDOCS%%%%EXAMPLESDIR%%/trpcage.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/trpcage.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/ubiquitin.key -%%PORTDOCS%%%%EXAMPLESDIR%%/ubiquitin.pdb -%%PORTDOCS%%%%EXAMPLESDIR%%/ubiquitin.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/ubiquitin.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/ubiquitin2.key -%%PORTDOCS%%%%EXAMPLESDIR%%/ubiquitin2.seq -%%PORTDOCS%%%%EXAMPLESDIR%%/ubiquitin2.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/urea.frac -%%PORTDOCS%%%%EXAMPLESDIR%%/urea.key -%%PORTDOCS%%%%EXAMPLESDIR%%/urea.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/water.int -%%PORTDOCS%%%%EXAMPLESDIR%%/water.key -%%PORTDOCS%%%%EXAMPLESDIR%%/water.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/waterball.key -%%PORTDOCS%%%%EXAMPLESDIR%%/waterball.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/waterbig.key -%%PORTDOCS%%%%EXAMPLESDIR%%/waterbig.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/waterbox.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/waterbox.key -%%PORTDOCS%%%%EXAMPLESDIR%%/waterbox.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/waterdot.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/waterdot.key -%%PORTDOCS%%%%EXAMPLESDIR%%/waterdot.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/waterglobe.key -%%PORTDOCS%%%%EXAMPLESDIR%%/waterglobe.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/waterhuge.key -%%PORTDOCS%%%%EXAMPLESDIR%%/waterhuge.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/waterslab.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/waterslab.key -%%PORTDOCS%%%%EXAMPLESDIR%%/waterslab.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/watersmall.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/watersmall.key -%%PORTDOCS%%%%EXAMPLESDIR%%/watersmall.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/watertiny.dyn -%%PORTDOCS%%%%EXAMPLESDIR%%/watertiny.key -%%PORTDOCS%%%%EXAMPLESDIR%%/watertiny.xyz -%%PORTDOCS%%%%EXAMPLESDIR%%/white.int -%%PORTDOCS%%%%EXAMPLESDIR%%/white.key -%%PORTDOCS%%%%EXAMPLESDIR%%/white.xyz -%%PORTDOCS%%%%DATADIR%%/bench/0README -%%PORTDOCS%%%%DATADIR%%/bench/bench1.key -%%PORTDOCS%%%%DATADIR%%/bench/bench1.run -%%PORTDOCS%%%%DATADIR%%/bench/bench1.xyz -%%PORTDOCS%%%%DATADIR%%/bench/bench2.key -%%PORTDOCS%%%%DATADIR%%/bench/bench2.run -%%PORTDOCS%%%%DATADIR%%/bench/bench2.xyz -%%PORTDOCS%%%%DATADIR%%/bench/bench3.key -%%PORTDOCS%%%%DATADIR%%/bench/bench3.run -%%PORTDOCS%%%%DATADIR%%/bench/bench3.xyz -%%PORTDOCS%%%%DATADIR%%/bench/bench4.dyn0 -%%PORTDOCS%%%%DATADIR%%/bench/bench4.key -%%PORTDOCS%%%%DATADIR%%/bench/bench4.log -%%PORTDOCS%%%%DATADIR%%/bench/bench4.run -%%PORTDOCS%%%%DATADIR%%/bench/bench4.xyz -%%PORTDOCS%%%%DATADIR%%/bench/bench5.dyn0 -%%PORTDOCS%%%%DATADIR%%/bench/bench5.key -%%PORTDOCS%%%%DATADIR%%/bench/bench5.log -%%PORTDOCS%%%%DATADIR%%/bench/bench5.run -%%PORTDOCS%%%%DATADIR%%/bench/bench5.xyz -%%PORTDOCS%%%%DATADIR%%/bench/bench6.key -%%PORTDOCS%%%%DATADIR%%/bench/bench6.log -%%PORTDOCS%%%%DATADIR%%/bench/bench6.run -%%PORTDOCS%%%%DATADIR%%/bench/bench6.xyz -%%PORTDOCS%%%%DATADIR%%/bench/bench7.key -%%PORTDOCS%%%%DATADIR%%/bench/bench7.log -%%PORTDOCS%%%%DATADIR%%/bench/bench7.run -%%PORTDOCS%%%%DATADIR%%/bench/bench7.xyz -%%PORTDOCS%%%%DATADIR%%/bench/results-2.3 -%%PORTDOCS%%%%DATADIR%%/bench/results-2.4 -%%PORTDOCS%%%%DATADIR%%/bench/results-2.9 -%%PORTDOCS%%%%DATADIR%%/bench/results-3.1 -%%PORTDOCS%%%%DATADIR%%/bench/results-3.2 -%%PORTDOCS%%%%DATADIR%%/bench/results-3.4 -%%PORTDOCS%%%%DATADIR%%/bench/results-3.5 -%%PORTDOCS%%%%DATADIR%%/bench/results-3.7 -%%PORTDOCS%%%%DATADIR%%/bench/results-3.8 -%%PORTDOCS%%%%DATADIR%%/bench/results-3.9 -%%PORTDOCS%%%%DATADIR%%/bench/results-4.0 -%%PORTDOCS%%%%DATADIR%%/bench/results-4.1 -%%PORTDOCS%%%%DATADIR%%/bench/results-4.2 -%%PORTDOCS%%%%DATADIR%%/bench/results-4.3 -%%PORTDOCS%%%%DATADIR%%/bench/results-5.0 -%%PORTDOCS%%%%DATADIR%%/bench/results-5.1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/0README +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/alatet.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/alatet.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/alatet.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/alatet.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/alkane.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/alkane.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ammonia.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ammonia.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amoeba.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amoeba.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arach.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arach.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arach.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/azulene.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/azulene.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/azulene.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bdna.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bdna.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bdna.make +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bdna.pdb +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bdna.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bdna.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bearing.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bearing.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bearing2.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzamidine.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzamidine.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzbox.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzbox.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzene.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzene.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzene.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl2.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl2.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl3.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl3.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bucky.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bucky.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bucky.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butane.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butane.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butane.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butane2.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butane2.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butane2.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butanes.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butanes.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butanes.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butanex.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butanex.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butopls.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butopls.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butopls.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butopls2.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butopls2.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butopls2.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c5.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c5.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c5.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c5.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7a.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7a.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7a.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7a.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7e.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7e.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7e.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7e.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calmodulin.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calmodulin.pdb +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calmodulin.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calmodulin.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cawater.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cawater.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copper.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copper.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cpentene.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cpentene.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambin.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambin.pdb +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambin.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambin.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambinx.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambinx.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crown.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crown.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crown.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cychept.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cychept.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cychept.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclo.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclo.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclo.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclo2.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclo2.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclo2.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cycprop.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cycprop.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dang.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dang.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/deltorphin.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/deltorphin.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/deltorphin.make +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/deltorphin.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/deltorphin.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dhfr.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dhfr.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dhfr.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dhfr2.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dhfr2.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dhfr2.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diamond.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diamond.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diene.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diene.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diene.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dimethane.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dimethane.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dmp.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dmp.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/enkephalin.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/enkephalin.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/enkephalin.make +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/enkephalin.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/enkephalin.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ermer.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ermer.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ermer.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ester.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ester.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethane.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethane.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethane.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethanol.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethanol.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethanol.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ether.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ether.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/etherbox.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/etherbox.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/etherbox.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethylene.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethylene.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethylene.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flane.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flane.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flane.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formbig.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formbig.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formbox.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formbox.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formbox.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formopls.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formopls.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formopls.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/furan.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/furan.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/furan.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glucose.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glucose.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glycerol.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glycerol.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glycerol.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphite.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphite.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helix.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helix.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helix.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/heme.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/heme.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hexane.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hexane.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hexane.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hexanes.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hexanes.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hexanes.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imidazole.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imidazole.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imidazole.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imine.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imine.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imine.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/indole.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/indole.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lactam.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lactam.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lipid.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lipid.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lj38.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lj38.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/melittin.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/melittin.pdb +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/melittin.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/melittin.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/membrane.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/membrane.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/meohbox.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/meohbox.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/meohbox.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/methane.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/methane.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/methane.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/methanol.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/methanol.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mgwater.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mgwater.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mm3.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mm3.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nacl.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nacl.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nada.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nada.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/naphthalene.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/naphthalene.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/naphthalene.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/naphthax.frac +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/naphthax.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/naphthax.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nitrile.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nitrile.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nitrogen.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nitrogen.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nitrogen.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nma.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nma.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nma.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nmabox.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nmabox.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nmabox.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nmf.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nmf.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nstilbene.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nstilbene.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nstilbene.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octane.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octane.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octane.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octane2.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octane2.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octane2.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octene.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octene.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octene.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/palmitate.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/palmitate.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/palmitate.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pentane.frac +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pentane.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pentane.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/peptide.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/peptide.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/peptide.make +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/peptide.pdb +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/peptide.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/peptide.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/phenanth.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/phenanth.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/photo.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/photo.pdb +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/photo.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/photo.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pol3.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pol3.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polyala.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polyala.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propane.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propane.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propellane.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propellane.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propellane.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propyne.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propyne.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pyridine.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pyridine.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pyridine.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pyrrole.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pyrrole.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pyrrole.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/retinoic.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/retinoic.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/skunk.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/skunk.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spc.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spc.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sterol.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sterol.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/styrene.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/styrene.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/styrene.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/terphenyl.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/terphenyl.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tfe.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tfe.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thiadiene.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thiadiene.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thiadiene.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thiophene.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thiophene.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thiophene.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thr.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thr.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thr.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip3f.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip3f.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip3p.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip3p.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip4f.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip4f.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip4p.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip4p.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip5p.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip5p.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trpcage.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trpcage.pdb +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trpcage.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trpcage.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin.pdb +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin2.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin2.seq +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin2.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/urea.frac +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/urea.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/urea.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/water.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/water.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/water.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterball.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterball.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterbig.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterbig.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterbox.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterbox.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterbox.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterdot.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterdot.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterdot.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterglobe.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterglobe.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterhuge.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterhuge.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterslab.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterslab.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterslab.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/watersmall.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/watersmall.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/watersmall.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/watertiny.dyn +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/watertiny.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/watertiny.xyz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/white.int +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/white.key +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/white.xyz +%%PORTDATA%%%%DATADIR%%/bench/0README +%%PORTDATA%%%%DATADIR%%/bench/bench1.key +%%PORTDATA%%%%DATADIR%%/bench/bench1.run +%%PORTDATA%%%%DATADIR%%/bench/bench1.xyz +%%PORTDATA%%%%DATADIR%%/bench/bench2.key +%%PORTDATA%%%%DATADIR%%/bench/bench2.run +%%PORTDATA%%%%DATADIR%%/bench/bench2.xyz +%%PORTDATA%%%%DATADIR%%/bench/bench3.key +%%PORTDATA%%%%DATADIR%%/bench/bench3.run +%%PORTDATA%%%%DATADIR%%/bench/bench3.xyz +%%PORTDATA%%%%DATADIR%%/bench/bench4.dyn0 +%%PORTDATA%%%%DATADIR%%/bench/bench4.key +%%PORTDATA%%%%DATADIR%%/bench/bench4.log +%%PORTDATA%%%%DATADIR%%/bench/bench4.run +%%PORTDATA%%%%DATADIR%%/bench/bench4.xyz +%%PORTDATA%%%%DATADIR%%/bench/bench5.dyn0 +%%PORTDATA%%%%DATADIR%%/bench/bench5.key +%%PORTDATA%%%%DATADIR%%/bench/bench5.log +%%PORTDATA%%%%DATADIR%%/bench/bench5.run +%%PORTDATA%%%%DATADIR%%/bench/bench5.xyz +%%PORTDATA%%%%DATADIR%%/bench/bench6.key +%%PORTDATA%%%%DATADIR%%/bench/bench6.log +%%PORTDATA%%%%DATADIR%%/bench/bench6.run +%%PORTDATA%%%%DATADIR%%/bench/bench6.xyz +%%PORTDATA%%%%DATADIR%%/bench/bench7.key +%%PORTDATA%%%%DATADIR%%/bench/bench7.log +%%PORTDATA%%%%DATADIR%%/bench/bench7.run +%%PORTDATA%%%%DATADIR%%/bench/bench7.xyz +%%PORTDATA%%%%DATADIR%%/bench/results-2.3 +%%PORTDATA%%%%DATADIR%%/bench/results-2.4 +%%PORTDATA%%%%DATADIR%%/bench/results-2.9 +%%PORTDATA%%%%DATADIR%%/bench/results-3.1 +%%PORTDATA%%%%DATADIR%%/bench/results-3.2 +%%PORTDATA%%%%DATADIR%%/bench/results-3.4 +%%PORTDATA%%%%DATADIR%%/bench/results-3.5 +%%PORTDATA%%%%DATADIR%%/bench/results-3.7 +%%PORTDATA%%%%DATADIR%%/bench/results-3.8 +%%PORTDATA%%%%DATADIR%%/bench/results-3.9 +%%PORTDATA%%%%DATADIR%%/bench/results-4.0 +%%PORTDATA%%%%DATADIR%%/bench/results-4.1 +%%PORTDATA%%%%DATADIR%%/bench/results-4.2 +%%PORTDATA%%%%DATADIR%%/bench/results-4.3 +%%PORTDATA%%%%DATADIR%%/bench/results-5.0 +%%PORTDATA%%%%DATADIR%%/bench/results-5.1 +%%PORTDATA%%%%DATADIR%%/bench/results-6.0 %%DATADIR%%/params/0README -%%DATADIR%%/params/amber02.prm %%DATADIR%%/params/amber94.prm %%DATADIR%%/params/amber96.prm %%DATADIR%%/params/amber98.prm @@ -500,76 +495,91 @@ %%DATADIR%%/params/smoothua.prm %%DATADIR%%/params/tiny.prm %%DATADIR%%/params/water.prm -%%PORTDOCS%%%%DATADIR%%/test/0README -%%PORTDOCS%%%%DATADIR%%/test/anion.dat -%%PORTDOCS%%%%DATADIR%%/test/anion.dyn0 -%%PORTDOCS%%%%DATADIR%%/test/anion.key -%%PORTDOCS%%%%DATADIR%%/test/anion.log -%%PORTDOCS%%%%DATADIR%%/test/anion.run -%%PORTDOCS%%%%DATADIR%%/test/anion.xyz -%%PORTDOCS%%%%DATADIR%%/test/argon.1st -%%PORTDOCS%%%%DATADIR%%/test/argon.key -%%PORTDOCS%%%%DATADIR%%/test/argon.log -%%PORTDOCS%%%%DATADIR%%/test/argon.run -%%PORTDOCS%%%%DATADIR%%/test/clean.make -%%PORTDOCS%%%%DATADIR%%/test/cluster.dat -%%PORTDOCS%%%%DATADIR%%/test/cluster.key -%%PORTDOCS%%%%DATADIR%%/test/cluster.log -%%PORTDOCS%%%%DATADIR%%/test/cluster.run -%%PORTDOCS%%%%DATADIR%%/test/cluster.xyz -%%PORTDOCS%%%%DATADIR%%/test/crambin.key -%%PORTDOCS%%%%DATADIR%%/test/crambin.log -%%PORTDOCS%%%%DATADIR%%/test/crambin.pdb -%%PORTDOCS%%%%DATADIR%%/test/crambin.run -%%PORTDOCS%%%%DATADIR%%/test/cyclohex.boat -%%PORTDOCS%%%%DATADIR%%/test/cyclohex.chair -%%PORTDOCS%%%%DATADIR%%/test/cyclohex.key -%%PORTDOCS%%%%DATADIR%%/test/cyclohex.log -%%PORTDOCS%%%%DATADIR%%/test/cyclohex.run -%%PORTDOCS%%%%DATADIR%%/test/dhfr.dyn -%%PORTDOCS%%%%DATADIR%%/test/dhfr.key -%%PORTDOCS%%%%DATADIR%%/test/dhfr.log -%%PORTDOCS%%%%DATADIR%%/test/dhfr.run -%%PORTDOCS%%%%DATADIR%%/test/dhfr.xyz -%%PORTDOCS%%%%DATADIR%%/test/dialanine.key -%%PORTDOCS%%%%DATADIR%%/test/dialanine.log -%%PORTDOCS%%%%DATADIR%%/test/dialanine.run -%%PORTDOCS%%%%DATADIR%%/test/dialanine.xyz -%%PORTDOCS%%%%DATADIR%%/test/enkephalin.dat -%%PORTDOCS%%%%DATADIR%%/test/enkephalin.key -%%PORTDOCS%%%%DATADIR%%/test/enkephalin.log -%%PORTDOCS%%%%DATADIR%%/test/enkephalin.run -%%PORTDOCS%%%%DATADIR%%/test/formamide.cell -%%PORTDOCS%%%%DATADIR%%/test/formamide.dat -%%PORTDOCS%%%%DATADIR%%/test/formamide.key -%%PORTDOCS%%%%DATADIR%%/test/formamide.log -%%PORTDOCS%%%%DATADIR%%/test/formamide.run -%%PORTDOCS%%%%DATADIR%%/test/gpcr.blk -%%PORTDOCS%%%%DATADIR%%/test/gpcr.key -%%PORTDOCS%%%%DATADIR%%/test/gpcr.log -%%PORTDOCS%%%%DATADIR%%/test/gpcr.run -%%PORTDOCS%%%%DATADIR%%/test/gpcr.xyz -%%PORTDOCS%%%%DATADIR%%/test/helix.1st -%%PORTDOCS%%%%DATADIR%%/test/helix.key -%%PORTDOCS%%%%DATADIR%%/test/helix.log -%%PORTDOCS%%%%DATADIR%%/test/helix.run -%%PORTDOCS%%%%DATADIR%%/test/salt.cell -%%PORTDOCS%%%%DATADIR%%/test/salt.key -%%PORTDOCS%%%%DATADIR%%/test/salt.log -%%PORTDOCS%%%%DATADIR%%/test/salt.run -%%PORTDOCS%%%%DATADIR%%/test/tetraala.dat -%%PORTDOCS%%%%DATADIR%%/test/tetraala.key -%%PORTDOCS%%%%DATADIR%%/test/tetraala.log -%%PORTDOCS%%%%DATADIR%%/test/tetraala.run -%%PORTDOCS%%%%DATADIR%%/test/water.key -%%PORTDOCS%%%%DATADIR%%/test/water.log -%%PORTDOCS%%%%DATADIR%%/test/water.pot -%%PORTDOCS%%%%DATADIR%%/test/water.run -%%PORTDOCS%%%%DATADIR%%/test/water.xyz +%%PORTDATA%%%%DATADIR%%/test/0README +%%PORTDATA%%%%DATADIR%%/test/anion.dat +%%PORTDATA%%%%DATADIR%%/test/anion.dyn0 +%%PORTDATA%%%%DATADIR%%/test/anion.key +%%PORTDATA%%%%DATADIR%%/test/anion.log +%%PORTDATA%%%%DATADIR%%/test/anion.run +%%PORTDATA%%%%DATADIR%%/test/anion.xyz +%%PORTDATA%%%%DATADIR%%/test/argon.1st +%%PORTDATA%%%%DATADIR%%/test/argon.key +%%PORTDATA%%%%DATADIR%%/test/argon.log +%%PORTDATA%%%%DATADIR%%/test/argon.run +%%PORTDATA%%%%DATADIR%%/test/clean.make +%%PORTDATA%%%%DATADIR%%/test/cluster.dat +%%PORTDATA%%%%DATADIR%%/test/cluster.key +%%PORTDATA%%%%DATADIR%%/test/cluster.log +%%PORTDATA%%%%DATADIR%%/test/cluster.run +%%PORTDATA%%%%DATADIR%%/test/cluster.xyz +%%PORTDATA%%%%DATADIR%%/test/crambin.key +%%PORTDATA%%%%DATADIR%%/test/crambin.log +%%PORTDATA%%%%DATADIR%%/test/crambin.pdb +%%PORTDATA%%%%DATADIR%%/test/crambin.run +%%PORTDATA%%%%DATADIR%%/test/cyclohex.boat +%%PORTDATA%%%%DATADIR%%/test/cyclohex.chair +%%PORTDATA%%%%DATADIR%%/test/cyclohex.key +%%PORTDATA%%%%DATADIR%%/test/cyclohex.log +%%PORTDATA%%%%DATADIR%%/test/cyclohex.run +%%PORTDATA%%%%DATADIR%%/test/dhfr.dyn +%%PORTDATA%%%%DATADIR%%/test/dhfr.key +%%PORTDATA%%%%DATADIR%%/test/dhfr.log +%%PORTDATA%%%%DATADIR%%/test/dhfr.run +%%PORTDATA%%%%DATADIR%%/test/dhfr.xyz +%%PORTDATA%%%%DATADIR%%/test/dialanine.key +%%PORTDATA%%%%DATADIR%%/test/dialanine.log +%%PORTDATA%%%%DATADIR%%/test/dialanine.run +%%PORTDATA%%%%DATADIR%%/test/dialanine.xyz +%%PORTDATA%%%%DATADIR%%/test/enkephalin.dat +%%PORTDATA%%%%DATADIR%%/test/enkephalin.key +%%PORTDATA%%%%DATADIR%%/test/enkephalin.log +%%PORTDATA%%%%DATADIR%%/test/enkephalin.run +%%PORTDATA%%%%DATADIR%%/test/ethanol.000 +%%PORTDATA%%%%DATADIR%%/test/ethanol.020 +%%PORTDATA%%%%DATADIR%%/test/ethanol.040 +%%PORTDATA%%%%DATADIR%%/test/ethanol.060 +%%PORTDATA%%%%DATADIR%%/test/ethanol.080 +%%PORTDATA%%%%DATADIR%%/test/ethanol.100 +%%PORTDATA%%%%DATADIR%%/test/ethanol.120 +%%PORTDATA%%%%DATADIR%%/test/ethanol.140 +%%PORTDATA%%%%DATADIR%%/test/ethanol.160 +%%PORTDATA%%%%DATADIR%%/test/ethanol.180 +%%PORTDATA%%%%DATADIR%%/test/ethanol.dat +%%PORTDATA%%%%DATADIR%%/test/ethanol.key +%%PORTDATA%%%%DATADIR%%/test/ethanol.log +%%PORTDATA%%%%DATADIR%%/test/ethanol.run +%%PORTDATA%%%%DATADIR%%/test/ethanol.xyz +%%PORTDATA%%%%DATADIR%%/test/formamide.cell +%%PORTDATA%%%%DATADIR%%/test/formamide.dat +%%PORTDATA%%%%DATADIR%%/test/formamide.key +%%PORTDATA%%%%DATADIR%%/test/formamide.log +%%PORTDATA%%%%DATADIR%%/test/formamide.run +%%PORTDATA%%%%DATADIR%%/test/gpcr.blk +%%PORTDATA%%%%DATADIR%%/test/gpcr.key +%%PORTDATA%%%%DATADIR%%/test/gpcr.log +%%PORTDATA%%%%DATADIR%%/test/gpcr.run +%%PORTDATA%%%%DATADIR%%/test/gpcr.xyz +%%PORTDATA%%%%DATADIR%%/test/helix.1st +%%PORTDATA%%%%DATADIR%%/test/helix.key +%%PORTDATA%%%%DATADIR%%/test/helix.log +%%PORTDATA%%%%DATADIR%%/test/helix.run +%%PORTDATA%%%%DATADIR%%/test/salt.cell +%%PORTDATA%%%%DATADIR%%/test/salt.key +%%PORTDATA%%%%DATADIR%%/test/salt.log +%%PORTDATA%%%%DATADIR%%/test/salt.run +%%PORTDATA%%%%DATADIR%%/test/tetraala.dat +%%PORTDATA%%%%DATADIR%%/test/tetraala.key +%%PORTDATA%%%%DATADIR%%/test/tetraala.log +%%PORTDATA%%%%DATADIR%%/test/tetraala.run +%%PORTDATA%%%%DATADIR%%/test/water.key +%%PORTDATA%%%%DATADIR%%/test/water.log +%%PORTDATA%%%%DATADIR%%/test/water.pot +%%PORTDATA%%%%DATADIR%%/test/water.run +%%PORTDATA%%%%DATADIR%%/test/water.xyz %%DATADIR%%/tinker.txt -%%PORTDOCS%%@dirrm %%DATADIR%%/test +%%PORTDATA%%@dirrm %%DATADIR%%/test @dirrm %%DATADIR%%/params -%%PORTDOCS%%@dirrm %%DATADIR%%/bench +%%PORTDATA%%@dirrm %%DATADIR%%/bench @dirrm %%DATADIR%% -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F402B1065679 for ; Tue, 25 Sep 2012 18:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CEC1D8FC14 for ; Tue, 25 Sep 2012 18:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIADWv017912 for ; Tue, 25 Sep 2012 18:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIADeN017897; Tue, 25 Sep 2012 18:10:13 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:13 GMT Resent-Message-Id: <201209251810.q8PIADeN017897@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B1337106566B for ; Tue, 25 Sep 2012 18:02:06 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id 1495E8FC1F for ; Tue, 25 Sep 2012 18:02:06 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 307ED23C036 for ; Wed, 26 Sep 2012 03:01:56 +0900 (JST) Message-Id: <20120926022111.053993ca6f3ccbb48e3c79d5@yahoo.com> Date: Wed, 26 Sep 2012 02:21:11 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171972: cad/magic: Update to version 7.5.221 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:14 -0000 >Number: 171972 >Category: ports >Synopsis: cad/magic: Update to version 7.5.221 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 7.5.221 New file: files/patch-calma__CalmaRdcl.c files/patch-calma__CalmaRead.c files/patch-cif__CIFrdtech.c files/patch-ext2sim__ext2sim.c files/patch-ext2spice__ext2spice.c files/patch-extflat__EFvisit.c files/patch-grouter__grouteChan.c files/patch-grouter__grouteDens.c files/patch-lef__defRead.c files/patch-mzrouter__mzDebug.c files/patch-netmenu__NMmain.c files/patch-netmenu__NMnetlist.c files/patch-netmenu__NMshowpt.c files/patch-netmenu__NMshwcell.c files/patch-netmenu__NMwiring.c files/patch-plow__PlowMain.c files/patch-plow__PlowRules1.c files/patch-plow__PlowRules2.c files/patch-windows__windDisp.c >How-To-Repeat: >Fix: diff -urN /usr/ports/cad/magic/Makefile cad/magic/Makefile --- /usr/ports/cad/magic/Makefile 2012-05-21 12:10:12.000000000 +0900 +++ cad/magic/Makefile 2012-09-25 03:17:43.000000000 +0900 @@ -1,12 +1,8 @@ -# New ports collection makefile for: magic -# Date created: 18 Dec 1994 -# Whom: swallace -# +# Created by: swallace # $FreeBSD: ports/cad/magic/Makefile,v 1.40 2012/05/21 03:10:12 miwi Exp $ -# PORTNAME= magic -PORTVERSION= 7.5.220 +PORTVERSION= 7.5.221 CATEGORIES= cad MASTER_SITES= http://opencircuitdesign.com/magic/archive/ \ http://fossies.org/linux/misc/ @@ -17,7 +13,7 @@ LICENSE= BSD -LIB_DEPENDS= BLT24.3:${PORTSDIR}/x11-toolkits/blt +LIB_DEPENDS= BLT24:${PORTSDIR}/x11-toolkits/blt CONFIGURE_WRKSRC= ${WRKSRC}/scripts diff -urN /usr/ports/cad/magic/distinfo cad/magic/distinfo --- /usr/ports/cad/magic/distinfo 2012-05-21 12:10:12.000000000 +0900 +++ cad/magic/distinfo 2012-09-12 05:30:07.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (magic-7.5.220.tgz) = a6a9c2bcd3e16942165a40cdcda28937f2cc122a47d92812f47e46dd67d0f69e -SIZE (magic-7.5.220.tgz) = 3746889 +SHA256 (magic-7.5.221.tgz) = 7f028ba6e2ed35861d4b3256c5b0f87491901283769257432943be4372fcb42b +SIZE (magic-7.5.221.tgz) = 3746873 diff -urN /usr/ports/cad/magic/files/patch-calma__CalmaRdcl.c cad/magic/files/patch-calma__CalmaRdcl.c --- /usr/ports/cad/magic/files/patch-calma__CalmaRdcl.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-calma__CalmaRdcl.c 2012-09-13 00:56:19.000000000 +0900 @@ -0,0 +1,99 @@ +--- calma/CalmaRdcl.c.orig 2010-06-25 22:59:51.000000000 +0900 ++++ calma/CalmaRdcl.c 2012-09-13 00:54:14.000000000 +0900 +@@ -540,7 +540,7 @@ + calmaSkipSet(calmaElementIgnore); + + /* Read subcell name */ +- if (!calmaReadStringRecord(CALMA_SNAME, &sname)) return; ++ if (!calmaReadStringRecord(CALMA_SNAME, &sname)) return 0; + + /* + * Create a new cell use with this transform. If the +@@ -618,20 +618,20 @@ + def->cd_name, cifReadCellDef->cd_name); + calmaReadError(" and can't be used as a subcell.\n"); + calmaReadError("(Use skipped)\n"); +- return; ++ return 0; + } + + /* Read subcell transform */ + if (!calmaReadTransform(&trans, sname)) + { + printf("Couldn't read transform.\n"); +- return; ++ return 0; + } + + /* Get number of columns and rows if array */ + cols = rows = 0; /* For half-smart compilers that complain otherwise. */ + READRH(nbytes, rtype); +- if (nbytes < 0) return; ++ if (nbytes < 0) return 0; + if (rtype == CALMA_COLROW) + { + isArray = TRUE; +@@ -639,7 +639,7 @@ + READI2(rows); + xlo = 0; xhi = cols - 1; + ylo = 0; yhi = rows - 1; +- if (feof(calmaInputFile)) return; ++ if (feof(calmaInputFile)) return 0; + (void) calmaSkipBytes(nbytes - CALMAHEADERLENGTH - 4); + } + else +@@ -653,11 +653,11 @@ + * For arrays, there will be three; for their meanings, see below. + */ + READRH(nbytes, rtype) +- if (nbytes < 0) return; ++ if (nbytes < 0) return 0; + if (rtype != CALMA_XY) + { + calmaUnexpected(CALMA_XY, rtype); +- return; ++ return 0; + } + + /* Length of remainder of record */ +@@ -695,7 +695,7 @@ + { + calmaReadPoint(&refarray[n], 1); + if (feof(calmaInputFile)) +- return; ++ return 0; + } + } + else +@@ -726,7 +726,7 @@ + } + + if (feof(calmaInputFile)) +- return; ++ return 0; + } + } + +@@ -787,19 +787,19 @@ + while (1) + { + READRH(nbytes, rtype); +- if (nbytes < 0) return; ++ if (nbytes < 0) return 0; + if (rtype == CALMA_PROPATTR) + { + READI2(propAttrType); + if (propAttrType == CALMA_PROP_USENAME) + { + if (!calmaReadStringRecord(CALMA_PROPVALUE, &useid)) +- return; ++ return 0; + } + else if (propAttrType == CALMA_PROP_ARRAY_LIMITS) + { + if (!calmaReadStringRecord(CALMA_PROPVALUE, &arraystr)) +- return; ++ return 0; + else if (arraystr) + { + int xl, xh, yl, yh; diff -urN /usr/ports/cad/magic/files/patch-calma__CalmaRead.c cad/magic/files/patch-calma__CalmaRead.c --- /usr/ports/cad/magic/files/patch-calma__CalmaRead.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-calma__CalmaRead.c 2012-09-13 00:52:07.000000000 +0900 @@ -0,0 +1,11 @@ +--- calma/CalmaRead.c.orig 2008-01-16 02:08:40.000000000 +0900 ++++ calma/CalmaRead.c 2012-09-13 00:51:41.000000000 +0900 +@@ -442,7 +442,7 @@ + char *a1, *a2, *a3, *a4, *a5, *a6, *a7, *a8, *a9, *a10; + { + calmaTotalErrors++; +- if (CIFWarningLevel == CIF_WARN_NONE) return; ++ if (CIFWarningLevel == CIF_WARN_NONE) return 0; + + if ((calmaTotalErrors < 100) || (CIFWarningLevel != CIF_WARN_LIMIT)) + { diff -urN /usr/ports/cad/magic/files/patch-cif__CIFrdtech.c cad/magic/files/patch-cif__CIFrdtech.c --- /usr/ports/cad/magic/files/patch-cif__CIFrdtech.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-cif__CIFrdtech.c 2012-09-13 00:58:47.000000000 +0900 @@ -0,0 +1,11 @@ +--- cif/CIFrdtech.c.orig 2010-09-16 00:45:09.000000000 +0900 ++++ cif/CIFrdtech.c 2012-09-13 00:58:26.000000000 +0900 +@@ -1218,7 +1218,7 @@ + + lgcf = FindGCF(istyle->crs_scaleFactor, istyle->crs_multiplier); + if (lgcf < lmult) lmult = lgcf; +- if (lmult == 0) return; ++ if (lmult == 0) return 0; + + /* fprintf(stderr, "Multiplier goes from %d to %d\n", istyle->crs_multiplier, + istyle->crs_multiplier / lmult); */ diff -urN /usr/ports/cad/magic/files/patch-ext2sim__ext2sim.c cad/magic/files/patch-ext2sim__ext2sim.c --- /usr/ports/cad/magic/files/patch-ext2sim__ext2sim.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-ext2sim__ext2sim.c 2012-09-13 00:45:40.000000000 +0900 @@ -0,0 +1,20 @@ +--- ext2sim/ext2sim.c.orig 2012-04-20 23:12:44.000000000 +0900 ++++ ext2sim/ext2sim.c 2012-09-13 00:45:15.000000000 +0900 +@@ -1209,7 +1209,7 @@ + if (he == NULL) + { + fprintf(outf, "errGnd!"); +- return; ++ return 0; + } + /* Canonical name */ + nn = (EFNodeName *) HashGetValue(he); +@@ -1338,7 +1338,7 @@ + if (he == NULL) + { + fprintf(outf, " GND"); +- return; ++ return 0; + } + + /* Canonical name */ diff -urN /usr/ports/cad/magic/files/patch-ext2spice__ext2spice.c cad/magic/files/patch-ext2spice__ext2spice.c --- /usr/ports/cad/magic/files/patch-ext2spice__ext2spice.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-ext2spice__ext2spice.c 2012-09-13 00:48:24.000000000 +0900 @@ -0,0 +1,29 @@ +--- ext2spice/ext2spice.c.orig 2012-04-30 21:17:37.000000000 +0900 ++++ ext2spice/ext2spice.c 2012-09-13 00:48:02.000000000 +0900 +@@ -2119,7 +2119,7 @@ + if ((node == NULL) || (node->efnode_client == (ClientData)NULL)) + { + TxError("spcnAP: major internal inconsistency\n"); +- return; ++ return 0; + } + + if ( esScale < 0 ) +@@ -2138,7 +2138,7 @@ + ((float)node->efnode_pa[resClass].pa_area*scale*scale) + *esScale*esScale*dsc, + ((float)node->efnode_pa[resClass].pa_perim*scale)*esScale*dsc); +- return; ++ return 0; + + oldFmt: + if ( resClass == NO_RESCLASS || +@@ -2226,7 +2226,7 @@ + if (he == NULL) + { + fprintf(outf, " errGnd!"); +- return; ++ return 0; + } + nn = (EFNodeName *) HashGetValue(he); + fprintf(outf, " %s", nodeSpiceName(nn->efnn_node->efnode_name->efnn_hier)); diff -urN /usr/ports/cad/magic/files/patch-extflat__EFvisit.c cad/magic/files/patch-extflat__EFvisit.c --- /usr/ports/cad/magic/files/patch-extflat__EFvisit.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-extflat__EFvisit.c 2012-09-12 23:55:47.000000000 +0900 @@ -0,0 +1,11 @@ +--- extflat/EFvisit.c.orig 2009-07-01 22:38:11.000000000 +0900 ++++ extflat/EFvisit.c 2012-09-12 23:54:40.000000000 +0900 +@@ -576,7 +576,7 @@ + return 0; + + if ((he = EFHNLook(hc->hc_hierName, name2, "resist(2)")) == NULL) +- return; ++ return 0; + n2 = ((EFNodeName *) HashGetValue(he))->efnn_node; + if (n2->efnode_flags & EF_KILLED) + return 0; diff -urN /usr/ports/cad/magic/files/patch-grouter__grouteChan.c cad/magic/files/patch-grouter__grouteChan.c --- /usr/ports/cad/magic/files/patch-grouter__grouteChan.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-grouter__grouteChan.c 2012-09-13 01:04:50.000000000 +0900 @@ -0,0 +1,20 @@ +--- grouter/grouteChan.c.orig 2007-04-21 02:57:00.000000000 +0900 ++++ grouter/grouteChan.c 2012-09-13 01:04:14.000000000 +0900 +@@ -446,7 +446,7 @@ + WindUpdate(); + (void) sprintf(m, "%s: --more-- (t for tiles): ", mesg); + if (TxGetLinePrompt(answer, sizeof answer, m) == NULL || answer[0] != 't') +- return; ++ return 0; + + (void) DBSrPaintArea((Tile *) NULL, glChanPlane, &TiPlaneRect, + &DBAllTypeBits, glChanShowFunc, (ClientData) NULL); +@@ -467,7 +467,7 @@ + TxMore(mesg); + ShowRect(EditCellUse->cu_def, &r, STYLE_ERASEHIGHLIGHTS); + if (tile->ti_client == (ClientData) CLIENTDEFAULT) +- return; ++ return 0; + ch = (GCRChannel *) tile->ti_client; + ShowRect(EditCellUse->cu_def, &ch->gcr_area, STYLE_MEDIUMHIGHLIGHTS); + (void) sprintf(mesg, "chan %x type=%d", ch, ch->gcr_type); diff -urN /usr/ports/cad/magic/files/patch-grouter__grouteDens.c cad/magic/files/patch-grouter__grouteDens.c --- /usr/ports/cad/magic/files/patch-grouter__grouteDens.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-grouter__grouteDens.c 2012-09-13 01:07:08.000000000 +0900 @@ -0,0 +1,11 @@ +--- grouter/grouteDens.c.orig 2006-04-11 07:03:14.000000000 +0900 ++++ grouter/grouteDens.c 2012-09-13 01:06:43.000000000 +0900 +@@ -78,7 +78,7 @@ + ASSERT(srcPin->gcr_ch == dstPin->gcr_ch, "glDensAdjust"); + + if (DebugIsSet(glDebugID, glDebGreedy)) +- return; ++ return 0; + + /* + * Find the first and last column where this net (netId) diff -urN /usr/ports/cad/magic/files/patch-lef__defRead.c cad/magic/files/patch-lef__defRead.c --- /usr/ports/cad/magic/files/patch-lef__defRead.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-lef__defRead.c 2012-09-13 01:01:56.000000000 +0900 @@ -0,0 +1,11 @@ +--- lef/defRead.c.orig 2008-05-11 05:13:05.000000000 +0900 ++++ lef/defRead.c 2012-09-13 01:01:24.000000000 +0900 +@@ -599,7 +599,7 @@ + if (keyword < 0) + { + LefError("Unknown macro orientation \"%s\".\n", token); +- return; ++ return 0; + } + + /* The standard transformations are all defined to rotate */ diff -urN /usr/ports/cad/magic/files/patch-mzrouter__mzDebug.c cad/magic/files/patch-mzrouter__mzDebug.c --- /usr/ports/cad/magic/files/patch-mzrouter__mzDebug.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-mzrouter__mzDebug.c 2012-09-13 01:09:40.000000000 +0900 @@ -0,0 +1,11 @@ +--- mzrouter/mzDebug.c.orig 2007-04-21 02:57:00.000000000 +0900 ++++ mzrouter/mzDebug.c 2012-09-13 01:09:14.000000000 +0900 +@@ -457,7 +457,7 @@ + + TxPrintf("}\n"); + } +- return; ++ return 0; + } + + /* diff -urN /usr/ports/cad/magic/files/patch-netmenu__NMmain.c cad/magic/files/patch-netmenu__NMmain.c --- /usr/ports/cad/magic/files/patch-netmenu__NMmain.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-netmenu__NMmain.c 2012-09-13 00:00:49.000000000 +0900 @@ -0,0 +1,29 @@ +--- netmenu/NMmain.c.orig 2006-04-11 07:03:14.000000000 +0900 ++++ netmenu/NMmain.c 2012-09-12 23:59:37.000000000 +0900 +@@ -256,7 +256,7 @@ + * can be called before the window exists). + */ + +- if (NMWindow == (MagWindow *) NULL) return; ++ if (NMWindow == (MagWindow *) NULL) return 0; + + GrLock(w, TRUE); + +@@ -372,7 +372,7 @@ + goto done; + } + +- if (w == NULL) return; ++ if (w == NULL) return 0; + + WindPointToSurface(w, &cmd->tx_p, &surfacePoint, (Rect *) NULL); + +@@ -432,7 +432,7 @@ + + done: + UndoNext(); +- return; ++ return 0; + } + + diff -urN /usr/ports/cad/magic/files/patch-netmenu__NMnetlist.c cad/magic/files/patch-netmenu__NMnetlist.c --- /usr/ports/cad/magic/files/patch-netmenu__NMnetlist.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-netmenu__NMnetlist.c 2012-09-13 00:07:59.000000000 +0900 @@ -0,0 +1,139 @@ +--- netmenu/NMnetlist.c.orig 2006-04-11 07:03:14.000000000 +0900 ++++ netmenu/NMnetlist.c 2012-09-13 00:05:02.000000000 +0900 +@@ -223,12 +223,12 @@ + HashEntry *h; + NetEntry *entry; + +- if ((name == 0) || (nmCurrentNetlist == NULL)) return; ++ if ((name == 0) || (nmCurrentNetlist == NULL)) return 0; + + h = HashLookOnly(&nmCurrentNetlist->nl_table, name); +- if (h == NULL) return; ++ if (h == NULL) return 0; + entry = (NetEntry *) HashGetValue(h); +- if (entry == 0) return; ++ if (entry == 0) return 0; + nmCurrentNetlist->nl_flags |= NL_MODIFIED; + HashSetValue(h, 0); + NMUndo(entry->ne_name, entry->ne_next->ne_name, NMUE_REMOVE); +@@ -264,8 +264,8 @@ + HashEntry *ha, *hb; + NetEntry *netA, *netB, *tmp; + +- if ((termA == NULL) || (termB == NULL)) return; +- if (nmCurrentNetlist == NULL) return; ++ if ((termA == NULL) || (termB == NULL)) return 0; ++ if (nmCurrentNetlist == NULL) return 0; + + /* Lookup the two nets, and make sure that they both exist + * and aren't already the same. +@@ -275,12 +275,12 @@ + netA = (NetEntry *) HashGetValue(ha); + hb = HashFind(&nmCurrentNetlist->nl_table, termB); + netB = (NetEntry *) HashGetValue(hb); +- if ((netA == 0) || (netB == 0)) return; ++ if ((netA == 0) || (netB == 0)) return 0; + nmCurrentNetlist->nl_flags |= NL_MODIFIED; + tmp = netA; + while (TRUE) + { +- if (tmp == netB) return; ++ if (tmp == netB) return 0; + tmp = tmp->ne_next; + if (tmp == netA) break; + } +@@ -336,11 +336,11 @@ + HashEntry *h; + NetEntry *ne, *next; + +- if ((net == NULL) || (nmCurrentNetlist == NULL)) return; ++ if ((net == NULL) || (nmCurrentNetlist == NULL)) return 0; + h = HashLookOnly(&nmCurrentNetlist->nl_table, net); +- if (h == NULL) return; ++ if (h == NULL) return 0; + ne = (NetEntry *) HashGetValue(h); +- if (ne == 0) return; ++ if (ne == 0) return 0; + nmCurrentNetlist->nl_flags |= NL_MODIFIED; + + /* The order of processing is a bit tricky. Since we use net for +@@ -402,7 +402,7 @@ + if ((name == NULL) || (name[0] == 0)) + { + nmCurrentNetlist = NULL; +- return; ++ return 0; + } + + /* First of all, see if this netlist is already loaded. */ +@@ -412,7 +412,7 @@ + if (strcmp(name, new->nl_name) == 0) + { + nmCurrentNetlist = new; +- return; ++ return 0; + } + } + +@@ -440,7 +440,7 @@ + TxError("Creating new netlist.\n"); + new->nl_fileName = mallocMagic((unsigned) (5 + strlen(name))); + (void) sprintf(new->nl_fileName, "%s.net", name); +- return; ++ return 0; + } + (void) StrDup(&new->nl_fileName, fullName); + if ((fgets(line, MAXLINESIZE, file) == NULL) +@@ -450,7 +450,7 @@ + TxError("%s isn't a legal netlist file.\n", new->nl_fileName); + TxError("Creating new netlist.\n"); + (void) fclose(file); +- return; ++ return 0; + } + + /* Read nets from the file one at a time. Each net consists of +@@ -756,7 +756,7 @@ + if (nmCurrentNetlist == NULL) + { + TxError("There isn't a current net list to write.\n"); +- return; ++ return 0; + } + + /* Decide what file to use to write the file (if an explicit name +@@ -776,8 +776,8 @@ + (void) fclose(file); + TxPrintf("Net list file %s already exists.", realName); + TxPrintf(" Should I overwrite it? [no] "); +- if (TxGetLine(line, 50) == (char *) NULL) return; +- if ((strcmp(line, "y") != 0) && (strcmp(line, "yes") != 0)) return; ++ if (TxGetLine(line, 50) == (char *) NULL) return 0; ++ if ((strcmp(line, "y") != 0) && (strcmp(line, "yes") != 0)) return 0; + } + } + +@@ -786,7 +786,7 @@ + if (file == NULL) + { + TxError("Couldn't write file %s.\n", realName); +- return; ++ return 0; + } + fprintf(file, " Netlist File\n"); + (void) NMEnumNets(nmWriteNetsFunc, (ClientData) file); +@@ -906,12 +906,12 @@ + case 1: + break; + case 2: +- return; ++ return 0; + } + } + + nmCurrentNetlist = saveCurrent; +- return; ++ return 0; + } + + /* diff -urN /usr/ports/cad/magic/files/patch-netmenu__NMshowpt.c cad/magic/files/patch-netmenu__NMshowpt.c --- /usr/ports/cad/magic/files/patch-netmenu__NMshowpt.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-netmenu__NMshowpt.c 2012-09-13 00:11:20.000000000 +0900 @@ -0,0 +1,13 @@ +--- netmenu/NMshowpt.c.orig 2006-04-11 07:03:14.000000000 +0900 ++++ netmenu/NMshowpt.c 2012-09-13 00:10:41.000000000 +0900 +@@ -86,8 +86,8 @@ + * root definition for this window is the edit's root definition. + */ + +- if (nmspArrayUsed == 0) return; +- if (((CellUse *)(window->w_surfaceID))->cu_def != EditRootDef) return; ++ if (nmspArrayUsed == 0) return 0; ++ if (((CellUse *)(window->w_surfaceID))->cu_def != EditRootDef) return 0; + + for (i = 0; i < nmspArrayUsed; i += 1) + { diff -urN /usr/ports/cad/magic/files/patch-netmenu__NMshwcell.c cad/magic/files/patch-netmenu__NMshwcell.c --- /usr/ports/cad/magic/files/patch-netmenu__NMshwcell.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-netmenu__NMshwcell.c 2012-09-13 00:24:51.000000000 +0900 @@ -0,0 +1,38 @@ +--- netmenu/NMshowcell.c.orig 2006-04-11 07:03:14.000000000 +0900 ++++ netmenu/NMshowcell.c 2012-09-13 00:21:50.000000000 +0900 +@@ -92,7 +92,7 @@ + * this window. + */ + +- if (((CellUse *)(window->w_surfaceID))->cu_def != nmscRootDef) return; ++ if (((CellUse *)(window->w_surfaceID))->cu_def != nmscRootDef) return 0; + + /* If this window is zoomed way out (less than 1 pixel per lambda) + * use solid highlighting to maximize visibility. It the window +@@ -109,7 +109,7 @@ + * redraw. + */ + +- if (!DBBoundPlane(plane, &area)) return; ++ if (!DBBoundPlane(plane, &area)) return 0; + nmscPlane = plane; + for (i = PL_TECHDEPBASE; i < DBNumPlanes; i += 1) + { +@@ -330,7 +330,7 @@ + if (NMCurNetName == NULL) + { + TxError("You must select a net before you can trace it.\n"); +- return; ++ return 0; + } + else netName = NMCurNetName; + } +@@ -344,7 +344,7 @@ + { + TxError("The net list has no net containing the terminal \"%s\"\n", + netName); +- return; ++ return 0; + } + (void) NMEnumTerms(NMCurNetName, nmShowRoutedNetFunc, + (ClientData) EditCellUse); diff -urN /usr/ports/cad/magic/files/patch-netmenu__NMwiring.c cad/magic/files/patch-netmenu__NMwiring.c --- /usr/ports/cad/magic/files/patch-netmenu__NMwiring.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-netmenu__NMwiring.c 2012-09-13 00:31:09.000000000 +0900 @@ -0,0 +1,20 @@ +--- netmenu/NMwiring.c.orig 2006-04-11 07:03:14.000000000 +0900 ++++ netmenu/NMwiring.c 2012-09-13 00:30:35.000000000 +0900 +@@ -162,7 +162,7 @@ + /* Collect all the connected areas together into a list. */ + + list = NULL; +- if (!ToolGetEditBox(&area)) return; ++ if (!ToolGetEditBox(&area)) return 0; + + /* Expand the box to get everything touching it. */ + +@@ -537,7 +537,7 @@ + Rect area; + char *net = NULL; + +- if (!ToolGetEditBox(&area)) return; ++ if (!ToolGetEditBox(&area)) return 0; + + /* Expand the box area so we'll pick up everything touching it. */ + diff -urN /usr/ports/cad/magic/files/patch-plow__PlowMain.c cad/magic/files/patch-plow__PlowMain.c --- /usr/ports/cad/magic/files/patch-plow__PlowMain.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-plow__PlowMain.c 2012-09-13 00:34:41.000000000 +0900 @@ -0,0 +1,11 @@ +--- plow/PlowMain.c.orig 2006-04-11 07:03:13.000000000 +0900 ++++ plow/PlowMain.c 2012-09-13 00:34:13.000000000 +0900 +@@ -1182,7 +1182,7 @@ + Rect r, newEdgeR; + + if (PlowJogHorizon == 0) +- return; ++ return 0; + + horizonTop = edge->e_ytop + PlowJogHorizon; + horizonBot = edge->e_ybot - PlowJogHorizon; diff -urN /usr/ports/cad/magic/files/patch-plow__PlowRules1.c cad/magic/files/patch-plow__PlowRules1.c --- /usr/ports/cad/magic/files/patch-plow__PlowRules1.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-plow__PlowRules1.c 2012-09-13 00:36:52.000000000 +0900 @@ -0,0 +1,11 @@ +--- plow/PlowRules1.c.orig 2006-04-11 07:03:13.000000000 +0900 ++++ plow/PlowRules1.c 2012-09-13 00:36:26.000000000 +0900 +@@ -547,7 +547,7 @@ + * we play conservative and just use the maximum halo size. + */ + if (plowMaxDist[edge->e_ltype] == 0) +- return; ++ return 0; + ar.ar_clip.p_x = edge->e_newx; + ar.ar_clip.p_y = edge->e_ybot - plowMaxDist[edge->e_ltype]; + startPoint.p_x = edge->e_x; diff -urN /usr/ports/cad/magic/files/patch-plow__PlowRules2.c cad/magic/files/patch-plow__PlowRules2.c --- /usr/ports/cad/magic/files/patch-plow__PlowRules2.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-plow__PlowRules2.c 2012-09-13 00:39:52.000000000 +0900 @@ -0,0 +1,29 @@ +--- plow/PlowRules2.c.orig 2007-04-21 02:57:00.000000000 +0900 ++++ plow/PlowRules2.c 2012-09-13 00:39:42.000000000 +0900 +@@ -250,7 +250,7 @@ + tp = TiSrPointNoHint(plowYankDef->cd_planes[edge->e_pNum], &p); + pr = plowSpacingRulesTbl[edge->e_ltype][TiGetTypeExact(tp)]; + if (pr == (PlowRule *) NULL) +- return; ++ return 0; + + searchRect.r_xbot = edge->e_x - 1; + searchRect.r_ytop = edge->e_ybot; +@@ -514,7 +514,7 @@ + startPoint.p_y = edge->e_ybot - 1; + tp = TiSrPointNoHint(plowYankDef->cd_planes[edge->e_pNum], &startPoint); + if (TiGetTypeExact(tp) == TT_SPACE) +- return; ++ return 0; + + ltype = edge->e_ltype; + rtype = TiGetTypeExact(tp); +@@ -604,7 +604,7 @@ + GMASK_EAST|GMASK_WEST|GMASK_NORTH|GMASK_SOUTH, + plowIllegalBotProc, (ClientData) &ar); + if (ar.ar_slivtype == (TileType) -1) +- return; ++ return 0; + + startPoint.p_x = ar.ar_mustmove; + TTMaskSetOnlyType(&insideTypes, ar.ar_slivtype); diff -urN /usr/ports/cad/magic/files/patch-windows__windDisp.c cad/magic/files/patch-windows__windDisp.c --- /usr/ports/cad/magic/files/patch-windows__windDisp.c 1970-01-01 09:00:00.000000000 +0900 +++ cad/magic/files/patch-windows__windDisp.c 2012-09-13 00:42:39.000000000 +0900 @@ -0,0 +1,11 @@ +--- windows/windDisp.c.orig 2006-04-11 07:03:14.000000000 +0900 ++++ windows/windDisp.c 2012-09-13 00:42:00.000000000 +0900 +@@ -81,7 +81,7 @@ + MagWindow *sw, *tw; + int wct = 0; + +- if (*w != NULL) return; ++ if (*w != NULL) return 0; + + if (windTopWindow != NULL) + { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67D16106568E for ; Tue, 25 Sep 2012 18:10:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2AF6D8FC19 for ; Tue, 25 Sep 2012 18:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAEvp017964 for ; Tue, 25 Sep 2012 18:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAER0017958; Tue, 25 Sep 2012 18:10:14 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:14 GMT Resent-Message-Id: <201209251810.q8PIAER0017958@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 543F51065693 for ; Tue, 25 Sep 2012 18:02:10 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 211D48FC1B for ; Tue, 25 Sep 2012 18:02:10 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id 5DBA62BC03B for ; Wed, 26 Sep 2012 03:02:08 +0900 (JST) Message-Id: <20120926022114.06e6389fa9e2f1127c30128f@yahoo.com> Date: Wed, 26 Sep 2012 02:21:14 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171973: cad/xcircuit: Update to version 3.7.43 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:14 -0000 >Number: 171973 >Category: ports >Synopsis: cad/xcircuit: Update to version 3.7.43 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 3.7.43 >How-To-Repeat: >Fix: diff -urN /usr/ports/cad/xcircuit/Makefile cad/xcircuit/Makefile --- /usr/ports/cad/xcircuit/Makefile 2012-06-06 05:39:49.000000000 +0900 +++ cad/xcircuit/Makefile 2012-09-25 03:17:53.000000000 +0900 @@ -1,12 +1,8 @@ -# New ports collection makefile for: xcircuit -# Date created: 3 Apr 1998 -# Whom: Pedro F. Giffuni -# +# Created by: Pedro F. Giffuni # $FreeBSD: ports/cad/xcircuit/Makefile,v 1.80 2012/06/05 20:39:49 sylvio Exp $ -# PORTNAME= xcircuit -PORTVERSION= 3.7.40 +PORTVERSION= 3.7.43 PORTEPOCH= 1 CATEGORIES= cad MASTER_SITES= http://opencircuitdesign.com/xcircuit/archive/ \ diff -urN /usr/ports/cad/xcircuit/distinfo cad/xcircuit/distinfo --- /usr/ports/cad/xcircuit/distinfo 2012-06-06 05:39:49.000000000 +0900 +++ cad/xcircuit/distinfo 2012-09-12 18:35:29.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (xcircuit-3.7.40.tgz) = 4a69da977b13426c62d65eb6d49ec7c6863b4a1c84b58bf26d45b346599d9414 -SIZE (xcircuit-3.7.40.tgz) = 1507559 +SHA256 (xcircuit-3.7.43.tgz) = 5bda76578390c6c2d174b134491dcce4249f7018bdb06bb4bf99cd10ec41a26d +SIZE (xcircuit-3.7.43.tgz) = 1648744 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA839106564A for ; Tue, 25 Sep 2012 18:10:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7E2218FC1C for ; Tue, 25 Sep 2012 18:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAERR018040 for ; Tue, 25 Sep 2012 18:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAEqx018038; Tue, 25 Sep 2012 18:10:14 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:14 GMT Resent-Message-Id: <201209251810.q8PIAEqx018038@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81BDB1065676 for ; Tue, 25 Sep 2012 18:02:14 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id 51D6C8FC08 for ; Tue, 25 Sep 2012 18:02:14 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 9977523C031 for ; Wed, 26 Sep 2012 03:02:12 +0900 (JST) Message-Id: <20120926022118.72b19082b7d7fbc40e1346b3@yahoo.com> Date: Wed, 26 Sep 2012 02:21:18 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171974: databases/grass: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:14 -0000 >Number: 171974 >Category: ports >Synopsis: databases/grass: Support USE_READLINE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Support USE_READLINE >How-To-Repeat: >Fix: diff -urN /usr/ports/databases/grass/Makefile databases/grass/Makefile --- /usr/ports/databases/grass/Makefile 2012-08-05 07:52:02.000000000 +0900 +++ databases/grass/Makefile 2012-09-25 03:18:13.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: grass -# Date created: 15 January 2000 -# Whom: reg -# +# Created by: reg # $FreeBSD: ports/databases/grass/Makefile,v 1.79 2012/08/04 22:52:02 kwm Exp $ -# PORTNAME= grass PORTVERSION= 6.4.2 @@ -26,20 +22,19 @@ LICENSE= GPLv2 BUILD_DEPENDS= ${LOCALBASE}/bin/swig:${PORTSDIR}/devel/swig13 -LIB_DEPENDS= gdal.17:${PORTSDIR}/graphics/gdal \ - jpeg.11:${PORTSDIR}/graphics/jpeg \ +LIB_DEPENDS= gdal:${PORTSDIR}/graphics/gdal \ + jpeg:${PORTSDIR}/graphics/jpeg \ png15:${PORTSDIR}/graphics/png \ - proj.7:${PORTSDIR}/graphics/proj \ - tiff.4:${PORTSDIR}/graphics/tiff \ - fftw3.6:${PORTSDIR}/math/fftw3 \ - freetype.9:${PORTSDIR}/print/freetype2 + proj:${PORTSDIR}/graphics/proj \ + tiff:${PORTSDIR}/graphics/tiff \ + fftw3:${PORTSDIR}/math/fftw3 \ + freetype:${PORTSDIR}/print/freetype2 RUN_DEPENDS= bash:${PORTSDIR}/shells/bash -BROKEN= does not build - USE_GMAKE= yes USE_ICONV= yes USE_GETTEXT= yes +USE_READLINE= yes USE_PERL5= yes USE_XORG= sm ice xi x11 xt xmu xext USE_GL= glut >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F40C51065675 for ; Tue, 25 Sep 2012 18:10:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D150F8FC26 for ; Tue, 25 Sep 2012 18:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAETD018126 for ; Tue, 25 Sep 2012 18:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAEVw018116; Tue, 25 Sep 2012 18:10:14 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:14 GMT Resent-Message-Id: <201209251810.q8PIAEVw018116@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 653D91065686 for ; Tue, 25 Sep 2012 18:02:19 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id 273C88FC08 for ; Tue, 25 Sep 2012 18:02:19 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 0C11E23C031 for ; Wed, 26 Sep 2012 03:02:16 +0900 (JST) Message-Id: <20120926022121.436dbc670a36b16296952c0a@yahoo.com> Date: Wed, 26 Sep 2012 02:21:21 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171975: databases/sqsh: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:15 -0000 >Number: 171975 >Category: ports >Synopsis: databases/sqsh: Support USE_READLINE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Add LICENSE - Add MAKE_JOBS_SAFE - Disable gettext detection - Support USE_READLINE - Support PLIST_FILES Remove file: pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/databases/sqsh/Makefile databases/sqsh/Makefile --- /usr/ports/databases/sqsh/Makefile 2012-05-10 21:48:55.000000000 +0900 +++ databases/sqsh/Makefile 2012-09-25 03:18:21.000000000 +0900 @@ -1,7 +1,4 @@ -# New ports collection makefile for: sqsh -# Date created: 14 Jan 2000 -# Whom: Domas Mituzas -# +# Created by: Domas Mituzas # $FreeBSD: ports/databases/sqsh/Makefile,v 1.37 2012/05/10 12:48:55 wen Exp $ PORTNAME= sqsh @@ -12,21 +9,30 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Interactive tool for querying Sybase database servers +LICENSE= GPLv2 # (or later) + LIB_DEPENDS= ct:${PORTSDIR}/databases/freetds -USE_GETTEXT= yes +OPTIONS_DEFINE= X11 +OPTIONS_DEFAULT=X11 + +USE_READLINE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= SYBASE="${LOCALBASE}" CONFIGURE_ARGS= --with-readline -ALL_TARGET= -j`${SYSCTL} -n hw.ncpu` build +ALL_TARGET= build +MAKE_JOBS_SAFE= yes -MAN1= sqsh.1 +MAN1= sqsh.1 +PLIST_FILES= bin/sqsh etc/sqshrc.default -.if defined(WITHOUT_X11) -PKGNAMESUFFIX= -nox11 -.else +.include + +.if ${PORT_OPTIONS:MX11} USE_MOTIF= yes CONFIGURE_ARGS+= --with-motif --with-x +.else +PKGNAMESUFFIX= -nox11 .endif post-patch: diff -urN /usr/ports/databases/sqsh/files/patch-configure databases/sqsh/files/patch-configure --- /usr/ports/databases/sqsh/files/patch-configure 2004-12-13 02:00:14.000000000 +0900 +++ databases/sqsh/files/patch-configure 2012-05-04 14:35:03.000000000 +0900 @@ -1,9 +1,20 @@ ---- configure Fri Nov 9 14:58:04 2001 -+++ configure Tue Oct 15 13:51:29 2002 -@@ -1196,5 +1195,5 @@ +--- configure.orig 2012-05-02 20:27:55.000000000 +0900 ++++ configure 2012-05-04 14:34:22.000000000 +0900 +@@ -3463,7 +3463,7 @@ + + SYBASE_LIBS= + +- for i in blk cs ct tcl comn intl unic ++ for i in blk cs ct tcl comn unic + do + x= + if test -f $SYBASE_LIBDIR/lib${i}.a; then +@@ -3531,7 +3531,7 @@ + SYBASE_OS="-lnsl -lm";; ncr*) SYBASE_OS="-ldl -lm";; - sunos*) + sunos*|*bsd*) SYBASE_OS="-lm";; solaris*) + SYBASE_OS="-lnsl -ldl -lm";; diff -urN /usr/ports/databases/sqsh/files/patch-doc::global.sqshrc databases/sqsh/files/patch-doc::global.sqshrc --- /usr/ports/databases/sqsh/files/patch-doc::global.sqshrc 2002-11-07 01:47:17.000000000 +0900 +++ databases/sqsh/files/patch-doc::global.sqshrc 2012-05-04 14:41:33.000000000 +0900 @@ -6,7 +6,7 @@ + +# DO NOT EDIT -- the changes will be lost if you reinstall +# or upgrade sqsh port/package. Instead, create your own -+# %%LOCALBASE%%/etc/sqshrc ++# %%PREFIX%%/etc/sqshrc +# if you wish to make system-wide customizations. +# User-specific customizations can be made in ~/.sqshrc files. diff -urN /usr/ports/databases/sqsh/pkg-plist databases/sqsh/pkg-plist --- /usr/ports/databases/sqsh/pkg-plist 2002-10-15 22:18:00.000000000 +0900 +++ databases/sqsh/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,2 +0,0 @@ -bin/sqsh -etc/sqshrc.default >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5431B106568A for ; Tue, 25 Sep 2012 18:10:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 305588FC28 for ; Tue, 25 Sep 2012 18:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAFx3018206 for ; Tue, 25 Sep 2012 18:10:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAFYT018201; Tue, 25 Sep 2012 18:10:15 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:15 GMT Resent-Message-Id: <201209251810.q8PIAFYT018201@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 774ED106573C for ; Tue, 25 Sep 2012 18:02:24 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 30E8F8FC1E for ; Tue, 25 Sep 2012 18:02:24 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id EEDD150037 for ; Wed, 26 Sep 2012 03:02:21 +0900 (JST) Message-Id: <20120926022125.6da09f4b2b7deb6a1f296008@yahoo.com> Date: Wed, 26 Sep 2012 02:21:25 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171976: deskutils/cdcat: Update to version 2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:15 -0000 >Number: 171976 >Category: ports >Synopsis: deskutils/cdcat: Update to version 2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 2.1 Remove file: files/patch-7zipLibrary.cpp >How-To-Repeat: >Fix: diff -urN /usr/ports/deskutils/cdcat/Makefile deskutils/cdcat/Makefile --- /usr/ports/deskutils/cdcat/Makefile 2012-06-06 15:43:23.000000000 +0900 +++ deskutils/cdcat/Makefile 2012-09-25 03:18:32.000000000 +0900 @@ -1,13 +1,8 @@ -# New ports collection makefile for: cdcat -# Date created: 04 May 2006 -# Whom: Aren Tyr -# +# Created by: Aren Tyr # $FreeBSD: ports/deskutils/cdcat/Makefile,v 1.18 2012/06/06 06:43:23 miwi Exp $ -# PORTNAME= cdcat -PORTVERSION= 2.0 -PORTREVISION= 1 +PORTVERSION= 2.1 CATEGORIES= deskutils MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \ GOOGLE_CODE:lib7zip @@ -26,6 +21,8 @@ LIB_DEPENDS= tar.0:${PORTSDIR}/devel/libtar \ exif.12:${PORTSDIR}/graphics/libexif +OPTIONS_DEFINE= DOCS + BUILD_WRKSRC= ${WRKSRC}/src PROJECTHOST= lib7zip @@ -62,7 +59,7 @@ PLIST_DIRS= %%DATADIR%%/translations %%DATADIR%% L7Z_NAME= lib7zip -L7Z_VERSION= 1.4.1 +L7Z_VERSION= 1.6.2 L7Z_DISTFILE= ${L7Z_NAME}-${L7Z_VERSION}.tar.gz L7Z_WRKSRC= ${WRKDIR}/${L7Z_NAME} @@ -112,7 +109,7 @@ ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}_logo_${size}x${size}.png \ ${PREFIX}/share/icons/hicolor/${size}x${size}/apps/${PORTNAME}_logo.png .endfor -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for file in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} diff -urN /usr/ports/deskutils/cdcat/distinfo deskutils/cdcat/distinfo --- /usr/ports/deskutils/cdcat/distinfo 2012-05-21 12:10:15.000000000 +0900 +++ deskutils/cdcat/distinfo 2012-08-02 21:24:55.000000000 +0900 @@ -1,4 +1,4 @@ -SHA256 (cdcat-2.0.tar.bz2) = d9c6dd6d1ab0b997e35446c0370f03e69a40ac7f49492c3c70ae6224c568970a -SIZE (cdcat-2.0.tar.bz2) = 382091 -SHA256 (lib7zip-1.4.1.tar.gz) = 20efb640c43c5d05e1f8d641eb0d01f8712648fe7989f275ec5b2997641316d9 -SIZE (lib7zip-1.4.1.tar.gz) = 95080 +SHA256 (cdcat-2.1.tar.bz2) = ad332b374307835d5daadfdcc8a06937cf3c57fe3a87cf58dc41b368ba6e8204 +SIZE (cdcat-2.1.tar.bz2) = 383337 +SHA256 (lib7zip-1.6.2.tar.gz) = b31be3af1d5f31bab50398a52c0ebbed2a2e05ac4b930c451d6656c6cad8f5f4 +SIZE (lib7zip-1.6.2.tar.gz) = 353575 diff -urN /usr/ports/deskutils/cdcat/files/patch-7zipLibrary.cpp deskutils/cdcat/files/patch-7zipLibrary.cpp --- /usr/ports/deskutils/cdcat/files/patch-7zipLibrary.cpp 2011-09-01 06:43:15.000000000 +0900 +++ deskutils/cdcat/files/patch-7zipLibrary.cpp 1970-01-01 09:00:00.000000000 +0900 @@ -1,34 +0,0 @@ ---- ../lib7zip/Lib7Zip/7zipLibrary.cpp.orig 2011-07-24 08:14:18.000000000 +0900 -+++ ../lib7zip/Lib7Zip/7zipLibrary.cpp 2011-08-06 16:31:37.000000000 +0900 -@@ -35,6 +35,13 @@ - #define HMODULE void * - #endif - -+#if (defined(__unix__) || defined(unix)) && !defined(USG) -+#include -+#if (__FreeBSD_version < 900000 && __FreeBSD_version >= 800501) || (__FreeBSD_version >= 900006) -+#define HAVE_SCANDIR_POSIX -+#endif -+#endif -+ - /*-------------- const defines ---------------------------*/ - const UInt64 kMaxCheckStartPosition = 1 << 22; - -@@ -819,7 +826,7 @@ - } - #else - --#if defined(__WXMAC__) || defined(__APPLE__) -+#if defined(__WXMAC__) || defined(__APPLE__) || !defined(HAVE_SCANDIR_POSIX) - int myselect(struct dirent * pDir ); - #else - int myselect(const struct dirent * pDir ); -@@ -856,7 +863,7 @@ - return true; - } - --#if defined(__WXMAC__) || defined(__APPLE__) -+#if defined(__WXMAC__) || defined(__APPLE__) || !defined(HAVE_SCANDIR_POSIX) - int myselect(struct dirent * pDir ) - #else - int myselect(const struct dirent * pDir ) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 29A841065670 for ; Tue, 25 Sep 2012 18:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EE8D98FC16 for ; Tue, 25 Sep 2012 18:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIA7GH016568 for ; Tue, 25 Sep 2012 18:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIA7gC016561; Tue, 25 Sep 2012 18:10:07 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:07 GMT Resent-Message-Id: <201209251810.q8PIA7gC016561@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE5C21065677 for ; Tue, 25 Sep 2012 18:00:26 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 7D27A8FC17 for ; Tue, 25 Sep 2012 18:00:22 +0000 (UTC) Received: from msa104lp.auone-net.jp (MSA104lp [172.27.12.182]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id C579358C2C3 for ; Wed, 26 Sep 2012 03:00:21 +0900 (JST) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id CF44C2BC03B for ; Wed, 26 Sep 2012 03:00:09 +0900 (JST) Message-Id: <20120926022007.e112b5c7fe83fbf0d0bb15ac@yahoo.com> Date: Wed, 26 Sep 2012 02:20:07 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171955: astro/gpscorrelate: Update to version 1.6.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:08 -0000 X-List-Received-Date: Tue, 25 Sep 2012 18:10:08 -0000 X-List-Received-Date: Tue, 25 Sep 2012 18:10:08 -0000 >Number: 171955 >Category: ports >Synopsis: astro/gpscorrelate: Update to version 1.6.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.6.1 Remove file: files/gpscorrelate-gui.1 pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/astro/gpscorrelate/Makefile astro/gpscorrelate/Makefile --- /usr/ports/astro/gpscorrelate/Makefile 2012-09-23 06:26:45.000000000 +0900 +++ astro/gpscorrelate/Makefile 2012-09-24 23:04:41.000000000 +0900 @@ -1,37 +1,55 @@ -# New ports collection makefile for: gpscorrelate -# Date created: Feb 2008 -# Whom: Lukas Maly -# +# Created by: Lukas Maly # $FreeBSD: ports/astro/gpscorrelate/Makefile,v 1.11 2012/09/22 21:26:45 pav Exp $ PORTNAME= gpscorrelate -PORTVERSION= 1.5.6 -PORTREVISION= 9 +PORTVERSION= 1.6.1 CATEGORIES= astro geography MASTER_SITES= http://freefoote.dview.net/linux/ MAINTAINER= ports@FreeBSD.org COMMENT= A gps file gpx correlate exif tag in photos +LICENSE= GPLv2 + LIB_DEPENDS= exiv2.12:${PORTSDIR}/graphics/exiv2 \ gtkmm-2.4:${PORTSDIR}/x11-toolkits/gtkmm24 -MAN1= gpscorrelate.1 gpscorrelate-gui.1 +OPTIONS_DEFINE= DOCS + +USE_GNOME= libxml2 +USE_GMAKE= yes +MAKE_JOBS_SAFE= yes + +MAN1= gpscorrelate.1 +MLINKS= gpscorrelate.1 gpscorrelate-gui.1 +PORTDOCS= * +PLIST_FILES= bin/gpscorrelate bin/gpscorrelate-gui + +.include post-patch: - @${REINPLACE_CMD} -e "s|-I/usr/include|-I${LOCALBASE}/include|" ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e \ + 's|^CFLAGS|#CFLAGS| ; \ + s|^override CFLAGS|override IFLAGS| ; \ + s|gtk+-2.0)|gtk+-2.0 exiv2)| ; \ + s|-I/usr/include/exiv2|| ; \ + s|-lexiv2|| ; \ + /^all:/s|gpscorrelate.1|| ; \ + s|g++ $$(OFLAGS)|$$(CXX) $$(OFLAGS)| ; \ + s|g++ $$(CFLAGS)|$$(CXX) $$(CXXFLAGS) $$(IFLAGS)| ; \ + s|gcc $$(CFLAGS)|$$(CC) $$(CFLAGS) $$(IFLAGS)|' ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/gpscorrelate ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/gpscorrelate-gui ${PREFIX}/bin - ${INSTALL_MAN} ${FILESDIR}/gpscorrelate* ${PREFIX}/man/man1 - ${MKDIR} ${PREFIX}/share/doc/gpscorrelate - ${MKDIR} ${PREFIX}/share/gpscorrelate - ${MKDIR} ${PREFIX}/share/doc/gpscorrelate/html - ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/gpscorrelate/html - ${INSTALL_DATA} ${WRKSRC}/doc/*.png ${PREFIX}/share/doc/gpscorrelate/html - ${INSTALL_DATA} ${WRKSRC}/*.txt ${PREFIX}/share/gpscorrelate/ - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/gpscorrelate/ - ${INSTALL_DATA} ${WRKSRC}/RELEASES ${PREFIX}/share/gpscorrelate/ + ${INSTALL_MAN} ${FILESDIR}/gpscorrelate.1 ${MANPREFIX}/man/man1 +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/RELEASES ${DOCSDIR} + @${MKDIR} ${DOCSDIR}/html + ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR}/html + ${INSTALL_DATA} ${WRKSRC}/doc/*.png ${DOCSDIR}/html +.endif .include diff -urN /usr/ports/astro/gpscorrelate/distinfo astro/gpscorrelate/distinfo --- /usr/ports/astro/gpscorrelate/distinfo 2011-03-19 21:27:32.000000000 +0900 +++ astro/gpscorrelate/distinfo 2012-09-24 19:37:09.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (gpscorrelate-1.5.6.tar.gz) = cbd75278f8707b63c135af5ec83b4323b17313b23cdd0b29fcb1d786c50e1a2e -SIZE (gpscorrelate-1.5.6.tar.gz) = 130623 +SHA256 (gpscorrelate-1.6.1.tar.gz) = 966285c0a6df5ac2cc63c1f9650e65c70e303cf11d08dc283357bcd745cb5201 +SIZE (gpscorrelate-1.6.1.tar.gz) = 154531 diff -urN /usr/ports/astro/gpscorrelate/files/gpscorrelate-gui.1 astro/gpscorrelate/files/gpscorrelate-gui.1 --- /usr/ports/astro/gpscorrelate/files/gpscorrelate-gui.1 2008-03-08 05:18:17.000000000 +0900 +++ astro/gpscorrelate/files/gpscorrelate-gui.1 1970-01-01 09:00:00.000000000 +0900 @@ -1,115 +0,0 @@ -.\" Title: GPSCORRELATE -.\" Author: Stefano Zacchiroli -.\" Generator: DocBook XSL Stylesheets v1.70.1 -.\" Date: 08 Sep 2006 -.\" Manual: -.\" Source: -.\" -.TH "GPSCORRELATE" "1" "08 Sep 2006" "" "" -.\" disable hyphenation -.nh -.\" disable justification (adjust text to left margin only) -.ad l -.SH "NAME" -gpscorrelate \- correlates digital photos with GPS data filling EXIF fields -.SH "SYNOPSIS" -.HP 13 -\fBgpscorrelate\fR [\fB\-g\ \fR\fB\fIfile.gpx\fR\fR] [\fIoption\fR...] -.HP 17 -\fBgpscorrelate\-gui\fR -.SH "DESCRIPTION" -.PP -This manual page documents briefly the -\fBgpscorrelate\fR -and -\fBgpscorrelate\-gui\fR -commands. -.PP -This manual page was written for the -Debian(TM) -distribution because the original programs do not have a manual page. Instead, they have documentation in HTML format; see below. -.PP -\fBgpscorrelate\fR -is a program that acts on digital photo in JPEG format filling EXIF (Exchangeable Image File Format) fields related to GPS (Global Positioning System) information. Source for the GPS data is a record of GPS information encoded in GPX (GPS Exchange Format) Format. The act of filling those fields is referred to as -\fIcorrelation\fR. -.PP -If GPS data are available at the precise moment the photo was taken (with a 1\-second granularity) the GPS data are stored unmodified in EXIF fields. If they are not linear interpolation of GPS data available at moments before and after the photo was taken can be used. -.PP -\fBgpscorrelate\fR -is a command line tool implementing correlation whereas -\fBgpscorrelate\-gui\fR -is the corresponding GTK+ graphical user interface. -.SH "OPTIONS" -.PP -These programs follow the usual -GNU -command line syntax, with long options starting with two dashes (`\-'). A summary of options is included below. For a complete description, see the HTML documentation. -.TP 3n -\fB\-g\fR, \fB\-\-gps\fR -required, specifies GPX file with GPS data -.TP 3n -\fB\-z\fR, \fB\-\-timeadd\fR \fB+/\-\fR\fIXX\fR[\fB:\fR\fIXX\fR] -time to add to GPS data to make it match photos. GPS data is in UTC; photos are not likely to be in UTC. Enter the timezone used when taking the photos: eg, -\fB+8\fR -for Perth -.TP 3n -\fB\-i\fR, \fB\-\-no\-interpolation\fR -disable interpolation between points. Interpolation is linear, points are rounded if disabled -.TP 3n -\fB\-v\fR, \fB\-\-verbose\fR -show what has been selected -.TP 3n -\fB\-d\fR, \fB\-\-datum\fR \fIdatum\fR -specify measurement datum. If not set, WGS\-84 used -.TP 3n -\fB\-n\fR, \fB\-\-no\-write\fR -do not write the exif data. Useful with -\fB\-\-show\fR -.TP 3n -\fB\-m\fR, \fB\-\-max\-dist\fR \fItime\fR -max time outside points that photo will be matched. Time is in seconds -.TP 3n -\fB\-s\fR, \fB\-\-show\fR -Just show the GPS data from the given files, if it exists -.TP 3n -\fB\-o\fR, \fB\-\-machine\fR -Just show the GPS data from the given files, machine readable output -.TP 3n -\fB\-r\fR, \fB\-\-remove\fR -Strip GPS tags from the given files, and then quit -.TP 3n -\fB\-t\fR, \fB\-\-ignore\-tracksegs\fR -Interpolate between track segments too -.TP 3n -\fB\-M\fR, \fB\-\-no\-mtime\fR -Do not change mtime of modified files -.TP 3n -\fB\-h\fR, \fB\-\-help\fR -Show summary of options. -.SH "SEE ALSO" -.PP -gpsd (1), gpsbabel (1), gpxlogger (1), cgpxlogger (1). -.PP -The documentation of gpscorrelate and gpscorrelate\-gui in HTML format are available on the filesystem at -\fI/usr/local/share/doc/gpscorrelate/html/\fR. -.SH "AUTHOR" -.PP -This manual page was written by Stefano Zacchiroli - -for the -Debian(TM) -system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the -GNU -General Public License, Version 2 any later version published by the Free Software Foundation. -.PP -On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL. -.SH "AUTHOR" -.PP -\fBStefano\fR \fBZacchiroli\fR -.sp -1n -.IP "" 3n -Author. -.SH "COPYRIGHT" -Copyright \(co 2006 Stefano Zacchiroli -.br - diff -urN /usr/ports/astro/gpscorrelate/pkg-plist astro/gpscorrelate/pkg-plist --- /usr/ports/astro/gpscorrelate/pkg-plist 2008-03-08 05:18:17.000000000 +0900 +++ astro/gpscorrelate/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,13 +0,0 @@ -bin/gpscorrelate -bin/gpscorrelate-gui -share/gpscorrelate/README -share/gpscorrelate/RELEASES -share/gpscorrelate/command-line-options.txt -share/doc/gpscorrelate/html/command.html -share/doc/gpscorrelate/html/concepts.html -share/doc/gpscorrelate/html/corr.png -share/doc/gpscorrelate/html/gui.html -share/doc/gpscorrelate/html/index.html -@dirrm share/doc/gpscorrelate/html -@dirrm share/doc/gpscorrelate -@dirrm share/gpscorrelate >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8B14E106567B for ; Tue, 25 Sep 2012 18:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6043B8FC1C for ; Tue, 25 Sep 2012 18:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIA8r3016631 for ; Tue, 25 Sep 2012 18:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIA89D016625; Tue, 25 Sep 2012 18:10:08 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:08 GMT Resent-Message-Id: <201209251810.q8PIA89D016625@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 45702106566C for ; Tue, 25 Sep 2012 18:00:29 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id D8F818FC08 for ; Tue, 25 Sep 2012 18:00:27 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id ABB6E4AC036 for ; Wed, 26 Sep 2012 03:00:17 +0900 (JST) Message-Id: <20120926022011.5173d4adcf6a50d9dbfa69b0@yahoo.com> Date: Wed, 26 Sep 2012 02:20:11 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171956: astro/sunclock: Update to version 3.57 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:08 -0000 X-List-Received-Date: Tue, 25 Sep 2012 18:10:08 -0000 >Number: 171956 >Category: ports >Synopsis: astro/sunclock: Update to version 3.57 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 3.57 New file: files/patch-widgets.c Remove file: files/patch-Imakefile files/patch-editkit_Imakefile >How-To-Repeat: >Fix: diff -urN /usr/ports/astro/sunclock/Makefile astro/sunclock/Makefile --- /usr/ports/astro/sunclock/Makefile 2012-06-01 14:15:51.000000000 +0900 +++ astro/sunclock/Makefile 2012-09-25 03:15:40.000000000 +0900 @@ -1,30 +1,66 @@ -# ex:ts=8 -# New ports collection makefile for: sunclock -# Date created: 15 September 1996 -# Whom: torstenb -# +# Created by: torstenb # $FreeBSD: ports/astro/sunclock/Makefile,v 1.36 2012/06/01 05:15:51 dinoex Exp $ -# PORTNAME= sunclock -PORTVERSION= 3.56 -PORTREVISION= 5 +PORTVERSION= 3.57 CATEGORIES= astro x11-clocks -MASTER_SITES= ftp://ftp.ac-grenoble.fr/ge/geosciences/sunclock/ \ - http://mbsd.msk.ru/dist/ +MASTER_SITES= http://www.arvernes.com/files/jpd/ MAINTAINER= ports@FreeBSD.org COMMENT= Shows which portion of the Earth's surface is illuminated by the Sun -LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \ +LICENSE= GPLv2 + +LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg \ png15:${PORTSDIR}/graphics/png USE_BZIP2= yes USE_XORG= xpm -USE_IMAKE= yes -CFLAGS+= -I${LOCALBASE}/include -CPPFLAGS+= -I${LOCALBASE}/include +MAKE_JOBS_SAFE= yes + +CPPFLAGS+= $$(libpng-config --I_opts) \ + -I${LOCALBASE}/include \ + -DEMXBINDIR=\\\"${PREFIX}/bin\\\" \ + -DDOCDIR=\\\"${PREFIX}/lib/X11/doc\\\" +LDFLAGS+= $$(libpng-config --L_opts) \ + -L${LOCALBASE}/lib MAN1= sunclock.1 +post-patch: + @cd ${WRKSRC} && ${SED} -e \ + '/^DESTDIR/s|=.*|=${PREFIX}| ; \ + s|/X11R6/man|$$(DESTDIR)/man| ; \ + s|bin/X11|bin| ; \ + s|^CC=|CC?=| ; \ + s|^CFLAGS=|CFLAGS+=| ; \ + s|-I/usr/include/X11 -O|$${CPPFLAGS}| ; \ + s|-L/usr/X11R6/lib|$${LDFLAGS}| ; \ + s| make | $$(MAKE) | ; \ + s|$$(SHAREDIR)/bin|$$(DESTDIR)/bin| ; \ + s|$$(SHAREDIR)/editkit|$$(DESTDIR)/share/sunclock/editkit|' \ + < Makefile.noimake > Makefile + @${LN} -sf sunclock.man ${WRKSRC}/sunclock.1 + @${REINPLACE_CMD} -e \ + 's|= -O2|+= $${CPPFLAGS}| ; \ + s|-L/usr/X11R6/lib|$${LDFLAGS}| ; \ + s|gcc |$$(CC) |' ${WRKSRC}/editkit/Makefile.kit + @${LN} -sf rc.example ${WRKSRC}/editkit/emxrc + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/sunclock ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/sunclock.1 ${MANPREFIX}/man/man1 + @${MKDIR} ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/Sunclockrc ${DATADIR} + @${MKDIR} ${DATADIR}/earthmaps/vmf + ${INSTALL_DATA} ${WRKSRC}/vmf/*.vmf ${DATADIR}/earthmaps/vmf + ${GZIP_CMD} ${DATADIR}/earthmaps/vmf/*.vmf + @${MKDIR} ${DATADIR}/i18n + ${INSTALL_DATA} ${WRKSRC}/i18n/Sunclock.?? ${DATADIR}/i18n + ${INSTALL_PROGRAM} ${WRKSRC}/editkit/emx ${PREFIX}/bin + @${MKDIR} ${DATADIR}/editkit + ${INSTALL_DATA} ${WRKSRC}/editkit/MANUAL.emacs ${DATADIR}/editkit + ${INSTALL_DATA} ${WRKSRC}/editkit/README ${DATADIR}/editkit + ${INSTALL_DATA} ${WRKSRC}/editkit/emxrc ${DATADIR}/editkit + .include diff -urN /usr/ports/astro/sunclock/distinfo astro/sunclock/distinfo --- /usr/ports/astro/sunclock/distinfo 2011-03-19 21:27:40.000000000 +0900 +++ astro/sunclock/distinfo 2012-08-14 03:40:21.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (sunclock-3.56.tar.bz2) = 27871a3f0d908e887dcbf128cc3722b9a62daa8748d21e241f7882b29c62a22f -SIZE (sunclock-3.56.tar.bz2) = 1313390 +SHA256 (sunclock-3.57.tar.bz2) = 4328200ceaa31160e901fb855d664033566d72b26a90605acc5d0ed9365402be +SIZE (sunclock-3.57.tar.bz2) = 1325138 diff -urN /usr/ports/astro/sunclock/files/patch-Imakefile astro/sunclock/files/patch-Imakefile --- /usr/ports/astro/sunclock/files/patch-Imakefile 2010-03-10 05:43:58.000000000 +0900 +++ astro/sunclock/files/patch-Imakefile 1970-01-01 09:00:00.000000000 +0900 @@ -1,74 +0,0 @@ ---- Imakefile.orig Sun Jun 18 23:58:50 2006 -+++ Imakefile Fri Aug 4 19:11:06 2006 -@@ -1,18 +1,18 @@ - XCOMM Should install to /usr or /usr/local ?? --DESTDIR=/usr -+DESTDIR=${PREFIX} - - XCOMM Name of man subdirectory of DESTDIR: --MANDIR=/X11R6/man/man1 -+MANDIR=/man/man1 - - XCOMM Name of bin subdirectory of DESTDIR: /X11R6/bin or maybe just /bin --BINDIR=/X11R6/bin -+BINDIR=/bin - - XCOMM Name of share subdirectory of DESTDIR: - SHAREDIR=/share/sunclock - - XCOMM Name of DOCDIR's subdirectories of DESTDIR: - DOCDIR=/X11R6/lib/X11/doc --DOCHTMLDIR=/X11R6/lib/X11/doc/html -+DOCHTMLDIR=/lib/X11/doc/html - - XCOMM - XCOMM Compile options: -@@ -42,13 +42,12 @@ - #CCOPTIONS=-O -DZLIB -DNEW_CTIME -DSHAREDIR=\"$(DESTDIR)$(SHAREDIR)\" - - # Solaris, Linux --#XPMLIBDIR=-L/usr/X11R6/lib --#XPMINC=-I/usr/X11R6/include/X11 --#JLIBDIR=-L/usr/lib --#ZLIBDIR=-L/usr/lib --#JINC=-I/usr/include -- --CCOPTIONS=-O -DZLIB -DSHAREDIR=\"$(DESTDIR)$(SHAREDIR)\" -+XPMLIBDIR=-L${LOCALBASE}/lib -+XPMINC=-I${LOCALBASE}/include/X11 -+JLIBDIR=-L${LOCALBASE}/lib -+ZLIBDIR=-L${LOCALBASE}/lib -+JINC=-I${LOCALBASE}/include -+CCOPTIONS=-DZLIB -DSHAREDIR=\"$(DESTDIR)$(SHAREDIR)\" -DNEW_CTIME -I${LOCALBASE}/include -L${LOCALBASE}/lib - #endif - - SRCS=sunclock.c astro.c widgets.c tildepath.c dirlist.c \ -@@ -64,7 +63,7 @@ - all:: - cd editkit ; xmkmf ; make emx \ - DESTDIR=$(DESTDIR) \ -- BINDIR=$(SHAREDIR)/bin \ -+ BINDIR=/bin \ - MANDIR=$(SHAREDIR)/editkit \ - SHAREDIR=$(DESTDIR)$(SHAREDIR)/editkit - -@@ -74,14 +73,13 @@ - - install:: install.man - $(MKDIRHIER) $(DESTDIR)$(SHAREDIR)/i18n -- cp -f Sunclockrc $(DESTDIR)$(SHAREDIR) -- cd i18n ; rm -f *~ ; cp -f Sunclock.* $(DESTDIR)$(SHAREDIR)/i18n -+ ${BSD_INSTALL_DATA} Sunclockrc $(DESTDIR)$(SHAREDIR) -+ cd i18n ; rm -f *~ ; ${BSD_INSTALL_DATA} Sunclock.* $(DESTDIR)$(SHAREDIR)/i18n - $(MKDIRHIER) $(DESTDIR)$(SHAREDIR)/earthmaps/vmf -- cd vmf ; rm -f *~ ; cp -f * $(DESTDIR)$(SHAREDIR)/earthmaps/vmf -- $(MKDIRHIER) $(DESTDIR)$(SHAREDIR)/bin -- install -c -s editkit/emx $(DESTDIR)$(SHAREDIR)/bin -+ cd vmf ; rm -f *~ ; ${BSD_INSTALL_DATA} * $(DESTDIR)$(SHAREDIR)/earthmaps/vmf -+ ${BSD_INSTALL_PROGRAM} editkit/emx $(DESTDIR)/bin - $(MKDIRHIER) $(DESTDIR)$(SHAREDIR)/editkit -- cd editkit ; install -c -m 444 rc.example README MANUAL.emacs \ -+ cd editkit ; ${BSD_INSTALL_DATA} rc.example README MANUAL.emacs \ - $(DESTDIR)$(SHAREDIR)/editkit - cd $(DESTDIR)$(SHAREDIR)/editkit ; mv -f rc.example emxrc - cat MESSAGE diff -urN /usr/ports/astro/sunclock/files/patch-editkit_Imakefile astro/sunclock/files/patch-editkit_Imakefile --- /usr/ports/astro/sunclock/files/patch-editkit_Imakefile 2008-04-20 02:46:11.000000000 +0900 +++ astro/sunclock/files/patch-editkit_Imakefile 1970-01-01 09:00:00.000000000 +0900 @@ -1,35 +0,0 @@ ---- editkit/Imakefile.orig Sat Mar 11 00:11:23 2006 -+++ editkit/Imakefile Fri Aug 4 19:13:21 2006 -@@ -33,7 +33,9 @@ - XCOMM Compile options: - XCOMM - --CFLAGS = -O2 -fomit-frame-pointer -pipe -Wall -DTHREED -DGREEK -DJUSTIFY -DSHAREDIR="\"$(SHAREDIR)\"" -+COPTS = -DTHREED -DGREEK -DJUSTIFY -DSHAREDIR="\"$(SHAREDIR)\"" -I${LOCALBASE}/include -L${LOCALBASE}/lib -+ -+CCOPTIONS=${COPTS} - - LOCAL_LIBRARIES=$(XLIB) - DEPLIBS= # I don't know what I'm doing, and I hate imake! -@@ -45,7 +47,7 @@ - - x11.o: - ln -sf MANUAL.emacs emx.man -- $(CC) $(CFLAGS) -DEMACS -o x11.o -c x11.c -+ $(CC) $(COPTS) ${CFLAGS} -DEMACS -o x11.o -c x11.c - - install.man:: - if [ -r $(DESTDIR)$(MANDIR)/emx.1.gz ] ; \ -@@ -55,9 +57,9 @@ - - install:: - mkdir -p $(SHAREDIR) -- cp -f rc.example $(SHAREDIR)/rc.common -- cd $(SHAREDIR); ln -sf rc.common emxrc -- cp -f README $(SHAREDIR) -+ ${BSD_INSTALL_DATA} rc.example $(SHAREDIR)/rc.common -+ ${BSD_INSTALL_DATA} $(SHAREDIR); ln -sf rc.common emxrc -+ ${BSD_INSTALL_DATA} README $(SHAREDIR) - - clean:: - rm -f core *~ emx.man diff -urN /usr/ports/astro/sunclock/files/patch-sunclock.c astro/sunclock/files/patch-sunclock.c --- /usr/ports/astro/sunclock/files/patch-sunclock.c 2010-03-10 05:43:58.000000000 +0900 +++ astro/sunclock/files/patch-sunclock.c 2012-08-14 03:48:40.000000000 +0900 @@ -59,16 +59,6 @@ Context->projtime = -1L; Context->roottime = -1L; Context->animtime = -1L; -@@ -3142,8 +3131,8 @@ - { - int ilon, ilat, width, dw = 0; - struct TextLabel * label; -- if(!Context->wintype) return; - char *text, *text0, *ptr; -+ if(!Context->wintype) return; - - label = Context->label; - while (label) if (label->text && *label->text) { @@ -3918,7 +3907,7 @@ if (button_pressed) return; diff -urN /usr/ports/astro/sunclock/files/patch-widgets.c astro/sunclock/files/patch-widgets.c --- /usr/ports/astro/sunclock/files/patch-widgets.c 1970-01-01 09:00:00.000000000 +0900 +++ astro/sunclock/files/patch-widgets.c 2012-08-14 04:13:57.000000000 +0900 @@ -0,0 +1,9 @@ +--- widgets.c.orig 2011-07-09 18:51:18.000000000 +0900 ++++ widgets.c 2012-08-14 04:13:36.000000000 +0900 +@@ -1,6 +1,5 @@ + #include + #include +-#include + #include + #include + diff -urN /usr/ports/astro/sunclock/pkg-descr astro/sunclock/pkg-descr --- /usr/ports/astro/sunclock/pkg-descr 2002-03-30 09:21:44.000000000 +0900 +++ astro/sunclock/pkg-descr 2012-08-14 03:34:43.000000000 +0900 @@ -1,9 +1,9 @@ This program is a clock that shows which portion of the Earth's surface is -illuminated by the sun. It is designed to be usually iconic, but can be +illuminated by the sun. It is designed to be usually iconic, but can be opened for a larger display with the time updated every second and both the -local time zone and UTC displayed. The Suntools version had a menu that +local time zone and UTC displayed. The Suntools version had a menu that allowed you to speed up time, show different dates, etc., but I have never implemented any of that in the X version; there is some support for it in the code, however. -WWW: http://frmas.free.fr/li_1.htm +WWW: http://www.arvernes.com/wiki/index.php/Sunclock diff -urN /usr/ports/astro/sunclock/pkg-plist astro/sunclock/pkg-plist --- /usr/ports/astro/sunclock/pkg-plist 2006-07-28 15:20:50.000000000 +0900 +++ astro/sunclock/pkg-plist 2012-08-14 05:27:24.000000000 +0900 @@ -1,9 +1,9 @@ -bin/emx bin/sunclock +bin/emx %%DATADIR%%/Sunclockrc -%%DATADIR%%/earthmaps/vmf/countries.vmf -%%DATADIR%%/earthmaps/vmf/landwater.vmf -%%DATADIR%%/earthmaps/vmf/timezones.vmf +%%DATADIR%%/earthmaps/vmf/countries.vmf.gz +%%DATADIR%%/earthmaps/vmf/landwater.vmf.gz +%%DATADIR%%/earthmaps/vmf/timezones.vmf.gz %%DATADIR%%/editkit/MANUAL.emacs %%DATADIR%%/editkit/README %%DATADIR%%/editkit/emxrc @@ -15,9 +15,9 @@ %%DATADIR%%/i18n/Sunclock.nl %%DATADIR%%/i18n/Sunclock.no %%DATADIR%%/i18n/Sunclock.pl -%%DATADIR%%/i18n/Sunclock.se -@dirrmtry %%DATADIR%%/i18n -@dirrmtry %%DATADIR%%/editkit -@dirrmtry %%DATADIR%%/earthmaps/vmf -@dirrmtry %%DATADIR%%/earthmaps -@dirrmtry %%DATADIR%% +%%DATADIR%%/i18n/Sunclock.sv +@dirrm %%DATADIR%%/i18n +@dirrm %%DATADIR%%/editkit +@dirrm %%DATADIR%%/earthmaps/vmf +@dirrm %%DATADIR%%/earthmaps +@dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3787C106567E for ; Tue, 25 Sep 2012 18:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BF0C08FC1F for ; Tue, 25 Sep 2012 18:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIA84u016734 for ; Tue, 25 Sep 2012 18:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIA8Qm016719; Tue, 25 Sep 2012 18:10:08 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:08 GMT Resent-Message-Id: <201209251810.q8PIA8Qm016719@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 79E9A106566B for ; Tue, 25 Sep 2012 18:00:32 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 4429A8FC0A for ; Tue, 25 Sep 2012 18:00:32 +0000 (UTC) Received: from msa105lp.auone-net.jp (MSA105lp [172.27.12.183]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 92FA35702D4 for ; Wed, 26 Sep 2012 03:00:31 +0900 (JST) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 7E36B50036 for ; Wed, 26 Sep 2012 03:00:24 +0900 (JST) Message-Id: <20120926022015.a1759aa72a3a466014e5cfec@yahoo.com> Date: Wed, 26 Sep 2012 02:20:15 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171957: astro/viking: Update to version 1.3.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:09 -0000 X-List-Received-Date: Tue, 25 Sep 2012 18:10:09 -0000 >Number: 171957 >Category: ports >Synopsis: astro/viking: Update to version 1.3.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.3.2 >How-To-Repeat: >Fix: diff -urN /usr/ports/astro/viking/Makefile astro/viking/Makefile --- /usr/ports/astro/viking/Makefile 2012-08-05 13:37:54.000000000 +0900 +++ astro/viking/Makefile 2012-09-24 22:19:55.000000000 +0900 @@ -1,12 +1,8 @@ -# New ports collection makefile for: viking -# Date created: 29 April 2008 -# Whom: David Le Brun -# +# Created by: David Le Brun # $FreeBSD: ports/astro/viking/Makefile,v 1.33 2012/08/05 04:37:54 miwi Exp $ -# PORTNAME= viking -PORTVERSION= 1.3.1 +PORTVERSION= 1.3.2 CATEGORIES= astro MASTER_SITES= SF @@ -19,7 +15,7 @@ expat:${PORTSDIR}/textproc/expat2 RUN_DEPENDS= gpsbabel:${PORTSDIR}/astro/gpsbabel -OPTIONS_DEFINE= GEOTAR GPSD +OPTIONS_DEFINE= GEOTAG GPSD OPTIONS_DEFAULT= GEOTAG GEOTAG_DESC= Enable Geotag support GPSD_DESC= Enable realtime GPS tracking diff -urN /usr/ports/astro/viking/distinfo astro/viking/distinfo --- /usr/ports/astro/viking/distinfo 2012-08-05 13:37:54.000000000 +0900 +++ astro/viking/distinfo 2012-09-24 19:34:30.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (viking-1.3.1.tar.gz) = d6511059eb554426dd6f5c76dd7d30913429a0445bddef63647fc9458c5c0920 -SIZE (viking-1.3.1.tar.gz) = 1094445 +SHA256 (viking-1.3.2.tar.gz) = bce315d45c6e2667d212c906676d0e04a60c81fed1849579878be1a7b354dc94 +SIZE (viking-1.3.2.tar.gz) = 1097171 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C756D10656A6 for ; Tue, 25 Sep 2012 18:10:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8368D8FC1F for ; Tue, 25 Sep 2012 18:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAFda018282 for ; Tue, 25 Sep 2012 18:10:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAFKZ018273; Tue, 25 Sep 2012 18:10:15 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:15 GMT Resent-Message-Id: <201209251810.q8PIAFKZ018273@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BCF8D106568D for ; Tue, 25 Sep 2012 18:02:28 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 8E69A8FC1F for ; Tue, 25 Sep 2012 18:02:28 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id DB7002BC03B for ; Wed, 26 Sep 2012 03:02:26 +0900 (JST) Message-Id: <20120926022129.5e9ae2d0ea9a15aaa5a481af@yahoo.com> Date: Wed, 26 Sep 2012 02:21:29 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171977: deskutils/xwrits: Update to version 2.26 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:15 -0000 >Number: 171977 >Category: ports >Synopsis: deskutils/xwrits: Update to version 2.26 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:15 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 2.26 >How-To-Repeat: >Fix: diff -urN /usr/ports/deskutils/xwrits/Makefile deskutils/xwrits/Makefile --- /usr/ports/deskutils/xwrits/Makefile 2012-09-22 12:40:46.000000000 +0900 +++ deskutils/xwrits/Makefile 2012-09-23 19:43:15.000000000 +0900 @@ -2,17 +2,17 @@ # $FreeBSD: ports/deskutils/xwrits/Makefile,v 1.15 2012/09/22 03:40:46 tabthorpe Exp $ PORTNAME= xwrits -PORTVERSION= 2.24 -PORTREVISION= 2 +PORTVERSION= 2.26 CATEGORIES= deskutils MASTER_SITES= http://www.lcdf.org/xwrits/ MAINTAINER= ports@FreeBSD.org COMMENT= Reminds you to take wrist breaks -GNU_CONFIGURE= yes +LICENSE= GPLv2 -USE_XORG= x11 xext +USE_XORG= x11 xext xinerama +GNU_CONFIGURE= yes MAN1= xwrits.1 PLIST_FILES= bin/xwrits diff -urN /usr/ports/deskutils/xwrits/distinfo deskutils/xwrits/distinfo --- /usr/ports/deskutils/xwrits/distinfo 2011-03-20 21:48:46.000000000 +0900 +++ deskutils/xwrits/distinfo 2012-09-23 19:35:01.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (xwrits-2.24.tar.gz) = ead0762b812c7633ebc24fea9534d078196a135752c11c174cf7dc4cf2e1147e -SIZE (xwrits-2.24.tar.gz) = 190168 +SHA256 (xwrits-2.26.tar.gz) = aaca4809b4cd62a627335ca14a231d4ab556fc872458bdb6fdbf6e76b103fed8 +SIZE (xwrits-2.26.tar.gz) = 196529 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0608D10656B0 for ; Tue, 25 Sep 2012 18:10:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D63B38FC2A for ; Tue, 25 Sep 2012 18:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAFjS018362 for ; Tue, 25 Sep 2012 18:10:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAF5r018353; Tue, 25 Sep 2012 18:10:15 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:15 GMT Resent-Message-Id: <201209251810.q8PIAF5r018353@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E99F21065693 for ; Tue, 25 Sep 2012 18:02:33 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 901808FC1A for ; Tue, 25 Sep 2012 18:02:33 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 1F90034037 for ; Wed, 26 Sep 2012 03:02:30 +0900 (JST) Message-Id: <20120926022132.ec7c3fe01943b1c9363cf4f1@yahoo.com> Date: Wed, 26 Sep 2012 02:21:32 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171978: devel/ace: Update to version 6.1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:16 -0000 >Number: 171978 >Category: ports >Synopsis: devel/ace: Update to version 6.1.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:15 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 6.1.4 >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/ace/Makefile devel/ace/Makefile --- /usr/ports/devel/ace/Makefile 2012-07-26 14:40:22.000000000 +0900 +++ devel/ace/Makefile 2012-09-25 03:19:08.000000000 +0900 @@ -1,16 +1,12 @@ -# Ports collection makefile for: ace -# Date created: 5 January 2004 -# Whom: Sergey Matveychuk -# +# Created by: Sergey Matveychuk # $FreeBSD: ports/devel/ace/Makefile,v 1.36 2012/07/26 05:40:22 bapt Exp $ -# PORTNAME= ace -PORTVERSION= 6.1.2 +PORTVERSION= 6.1.4 CATEGORIES= devel MASTER_SITES= ftp://download.dre.vanderbilt.edu/previous_versions/ \ http://download.dre.vanderbilt.edu/previous_versions/ -DISTNAME= ACE-${PORTVERSION} +DISTNAME= ${PORTNAME:U}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= The Adaptive Communication Environment for C++ @@ -27,12 +23,12 @@ USE_BZIP2= yes USE_PERL5_BUILD=yes +USE_PKGCONFIG= build USE_GMAKE= yes MAKE_ENV= LD_LIBRARY_PATH="${WRKSRC}/lib" ACE_ROOT="${WRKSRC}" \ CROSS-COMPILE=1 MAKEFILE= GNUmakefile USE_LDCONFIG= yes -USE_PKGCONFIG= yes MAKE_JOBS_SAFE= yes CPPFLAGS+= -I${LOCALBASE}/include diff -urN /usr/ports/devel/ace/distinfo devel/ace/distinfo --- /usr/ports/devel/ace/distinfo 2012-06-06 05:46:44.000000000 +0900 +++ devel/ace/distinfo 2012-08-31 04:10:54.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (ACE-6.1.2.tar.bz2) = 6e2af99acdbb1b769bed1e5a6d2e21a0165597097739aed77a4382de0f9257e8 -SIZE (ACE-6.1.2.tar.bz2) = 7911861 +SHA256 (ACE-6.1.4.tar.bz2) = 1150aa7cea640dbd3301ee873ec4cd79cb9f8735fc894a89b242dacced67d356 +SIZE (ACE-6.1.4.tar.bz2) = 8021269 diff -urN /usr/ports/devel/ace/pkg-plist devel/ace/pkg-plist --- /usr/ports/devel/ace/pkg-plist 2012-06-06 05:46:44.000000000 +0900 +++ devel/ace/pkg-plist 2012-08-31 04:21:28.000000000 +0900 @@ -204,6 +204,8 @@ include/ace/Compression/Compressor.inl include/ace/Compression/rle/ACE_RLECompression_export.h include/ace/Compression/rle/RLECompressor.h +include/ace/Condition_Attributes.h +include/ace/Condition_Attributes.inl include/ace/Condition_Recursive_Thread_Mutex.h include/ace/Condition_T.cpp include/ace/Condition_T.h @@ -596,6 +598,8 @@ include/ace/Monitor_Control_Types.h include/ace/Monitor_Point_Registry.h include/ace/Monitor_Size.h +include/ace/Monotonic_Time_Policy.h +include/ace/Monotonic_Time_Policy.inl include/ace/Msg_WFMO_Reactor.h include/ace/Msg_WFMO_Reactor.inl include/ace/Multihomed_INET_Addr.h @@ -980,6 +984,9 @@ include/ace/Time_Policy_T.inl include/ace/Time_Value.h include/ace/Time_Value.inl +include/ace/Time_Value_T.cpp +include/ace/Time_Value_T.h +include/ace/Time_Value_T.inl include/ace/Timeprobe.h include/ace/Timeprobe.inl include/ace/Timeprobe_T.cpp @@ -1353,6 +1360,7 @@ %%DATADIR%%/bin/MakeProjectCreator/config/ace_tkreactor.mpb %%DATADIR%%/bin/MakeProjectCreator/config/ace_unicode.mpb %%DATADIR%%/bin/MakeProjectCreator/config/ace_x11.mpb +%%DATADIR%%/bin/MakeProjectCreator/config/ace_xml_utils.mpb %%DATADIR%%/bin/MakeProjectCreator/config/ace_xt.mpb %%DATADIR%%/bin/MakeProjectCreator/config/ace_xtreactor.mpb %%DATADIR%%/bin/MakeProjectCreator/config/ace_zlib.mpb @@ -1439,6 +1447,7 @@ %%DATADIR%%/docs/ACE-development-process.html %%DATADIR%%/docs/ACE-guidelines.html %%DATADIR%%/docs/ACE-lessons.html +%%DATADIR%%/docs/ACE-monotonic-timer.html %%DATADIR%%/docs/ACE-porting.html %%DATADIR%%/docs/ACE-subsets.html %%DATADIR%%/docs/CE-status.txt >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DD5110656D2 for ; Tue, 25 Sep 2012 18:10:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 37EEC8FC2E for ; Tue, 25 Sep 2012 18:10:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAGeI018437 for ; Tue, 25 Sep 2012 18:10:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAGht018431; Tue, 25 Sep 2012 18:10:16 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:16 GMT Resent-Message-Id: <201209251810.q8PIAGht018431@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 746011065670 for ; Tue, 25 Sep 2012 18:02:38 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 1D8338FC1D for ; Tue, 25 Sep 2012 18:02:38 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id EA02450037 for ; Wed, 26 Sep 2012 03:02:35 +0900 (JST) Message-Id: <20120926022136.687e90eb1c35d6ebbc0bd193@yahoo.com> Date: Wed, 26 Sep 2012 02:21:36 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171979: devel/bcpp: Update to version 20120318 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:16 -0000 >Number: 171979 >Category: ports >Synopsis: devel/bcpp: Update to version 20120318 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:15 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 20120318 Remove file: files/patch-code__bcpp.cpp pkg-message >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/bcpp/Makefile devel/bcpp/Makefile --- /usr/ports/devel/bcpp/Makefile 2012-09-22 12:00:28.000000000 +0900 +++ devel/bcpp/Makefile 2012-09-23 20:45:18.000000000 +0900 @@ -2,7 +2,7 @@ # $FreeBSD: ports/devel/bcpp/Makefile,v 1.8 2012/09/22 03:00:28 tabthorpe Exp $ PORTNAME= bcpp -PORTVERSION= 20050725 +PORTVERSION= 20120318 CATEGORIES= devel MASTER_SITES= ftp://invisible-island.net/bcpp/ EXTRACT_SUFX= .tgz @@ -10,27 +10,30 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A utility similar to indent for C++ code -WRKSRC= ${WRKDIR}/${DISTNAME} -MAKEFILE= makefile +OPTIONS_DEFINE= DOCS + GNU_CONFIGURE= yes +MAKEFILE= makefile + +CFLAGS+= -DBCPP_CONFIG_DIR=\\\"${PREFIX}/etc/${PORTNAME}\\\" + +.include post-patch: - @${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g' \ - ${WRKSRC}/code/bcpp.cpp + @${REINPLACE_CMD} -e \ + 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/code/bcpp.cpp do-install: ${INSTALL_PROGRAM} ${WRKSRC}/code/${PORTNAME} ${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/code/${PORTNAME}.cfg \ ${PREFIX}/etc/${PORTNAME}.cfg.sample - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} +.if !exists(${PREFIX}/etc/${PORTNAME}.cfg) + cd ${PREFIX}/etc && ${CP} -p ${PORTNAME}.cfg.sample ${PORTNAME}.cfg +.endif +.if ${PORT_OPTIONS:MDOCS} + @@${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/txtdocs/hirachy.txt ${DOCSDIR} ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/txtdocs/manual.txt ${DOCSDIR} .endif - @${ECHO_CMD} - @${CAT} ${PKGMESSAGE} - @${ECHO_CMD} .include diff -urN /usr/ports/devel/bcpp/distinfo devel/bcpp/distinfo --- /usr/ports/devel/bcpp/distinfo 2011-07-03 23:55:15.000000000 +0900 +++ devel/bcpp/distinfo 2012-09-23 20:32:37.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (bcpp-20050725.tgz) = 1a4b5e8e741d6be400eb68b7c4a3eebc6dabe29948a72a7a0bccb1db075eaa2a -SIZE (bcpp-20050725.tgz) = 132649 +SHA256 (bcpp-20120318.tgz) = 75a7035da6387ff94111e643ff9efd26f742b52732f0bb8e434c216b8a642507 +SIZE (bcpp-20120318.tgz) = 147987 diff -urN /usr/ports/devel/bcpp/files/patch-code__bcpp.cpp devel/bcpp/files/patch-code__bcpp.cpp --- /usr/ports/devel/bcpp/files/patch-code__bcpp.cpp 2006-04-16 06:13:53.000000000 +0900 +++ devel/bcpp/files/patch-code__bcpp.cpp 1970-01-01 09:00:00.000000000 +0900 @@ -1,24 +0,0 @@ ---- code/bcpp.cpp.orig Sat May 18 13:53:27 2002 -+++ code/bcpp.cpp Fri Jun 7 14:39:33 2002 -@@ -2755,6 +2757,7 @@ - char* pSPath = getenv ("PATH"); - char* pEPath = NULL; - char* pNameMem = NULL; -+ char* tmpCfgName = new char[strlen("%%PREFIX%%/etc") + strlen(pCfgName)+1]; - char sepChar = NULLC; - const char* pathSepChar; - char backUp; -@@ -2763,6 +2766,13 @@ - // test to see if file is in current directory first ! - if ((pCfgFile = fopen(pCfgName, "r")) != NULL) - return; -+ -+ // look to see if it's in %%PREFIX%%/etc -+ tmpCfgName = strcat( tmpCfgName, "%%PREFIX%%/etc/" ); -+ tmpCfgName = strcat( tmpCfgName, pCfgName ); -+ if ((pCfgFile = fopen(tmpCfgName, "r")) != NULL) -+ return; -+ - - // environment variable not found, lord knows what it is ! - if (pSPath == NULL) diff -urN /usr/ports/devel/bcpp/pkg-message devel/bcpp/pkg-message --- /usr/ports/devel/bcpp/pkg-message 2001-12-19 12:52:40.000000000 +0900 +++ devel/bcpp/pkg-message 1970-01-01 09:00:00.000000000 +0900 @@ -1,2 +0,0 @@ -You should modify /usr/local/etc/bcpp.cfg.sample to your liking and -copy it to /usr/local/etc/bcpp.cfg diff -urN /usr/ports/devel/bcpp/pkg-plist devel/bcpp/pkg-plist --- /usr/ports/devel/bcpp/pkg-plist 2006-04-16 06:13:53.000000000 +0900 +++ devel/bcpp/pkg-plist 2012-09-23 20:47:47.000000000 +0900 @@ -1,5 +1,7 @@ bin/bcpp +@unexec if cmp -s %D/etc/bcpp.cfg %D/etc/bcpp.cfg.sample; then rm -f %D/etc/bcpp.cfg; fi etc/bcpp.cfg.sample +@exec if [ ! -f %D/etc/bcpp.cfg ] ; then cp -p %D/etc/bcpp.cfg.sample %D/etc/bcpp.cfg; fi %%PORTDOCS%%%%DOCSDIR%%/hirachy.txt %%PORTDOCS%%%%DOCSDIR%%/manual.txt %%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C97E41065675 for ; Tue, 25 Sep 2012 18:10:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8D8268FC14 for ; Tue, 25 Sep 2012 18:10:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAGr8018518 for ; Tue, 25 Sep 2012 18:10:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAGj4018513; Tue, 25 Sep 2012 18:10:16 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:16 GMT Resent-Message-Id: <201209251810.q8PIAGj4018513@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B41361065673 for ; Tue, 25 Sep 2012 18:02:42 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 861518FC22 for ; Tue, 25 Sep 2012 18:02:42 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id DF00F50037 for ; Wed, 26 Sep 2012 03:02:40 +0900 (JST) Message-Id: <20120926022139.2932d8e58a5e6de430ec13cc@yahoo.com> Date: Wed, 26 Sep 2012 02:21:39 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171980: devel/bin86: Update to version 0.16.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:16 -0000 >Number: 171980 >Category: ports >Synopsis: devel/bin86: Update to version 0.16.19 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:16 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.16.19 >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/bin86/Makefile devel/bin86/Makefile --- /usr/ports/devel/bin86/Makefile 2012-06-06 05:49:55.000000000 +0900 +++ devel/bin86/Makefile 2012-09-25 03:19:22.000000000 +0900 @@ -1,18 +1,16 @@ -# New ports collection makefile for: bin86 -# Date created: 2000-10-19 -# Whom: trevor -# +# Created by: trevor # $FreeBSD: ports/devel/bin86/Makefile,v 1.24 2012/06/05 20:49:55 sylvio Exp $ -# PORTNAME= bin86 -PORTVERSION= 0.16.18 +PORTVERSION= 0.16.19 CATEGORIES= devel MASTER_SITES= http://www.debath.co.uk/dev86/ MAINTAINER= ports@FreeBSD.org COMMENT= 16-bit assembler and loader +OPTIONS_DEFINE= DOCS + MAKE_JOBS_SAFE= yes MAN1= as86.1 ld86.1 @@ -34,7 +32,7 @@ .for i in ${BINS} ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/bin .endfor -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif diff -urN /usr/ports/devel/bin86/distinfo devel/bin86/distinfo --- /usr/ports/devel/bin86/distinfo 2012-06-06 05:49:55.000000000 +0900 +++ devel/bin86/distinfo 2012-08-14 20:08:46.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (bin86-0.16.18.tar.gz) = 10b1aa5c0813e0bb01b8cab8b06543809e75b06b8e55db462351887c4a9ed831 -SIZE (bin86-0.16.18.tar.gz) = 146383 +SHA256 (bin86-0.16.19.tar.gz) = 35b99e05395264d0692f8b327f9b4f18de9e483484faa5ccbaa7c9f353d9c30c +SIZE (bin86-0.16.19.tar.gz) = 151088 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B5E0106568D for ; Tue, 25 Sep 2012 18:10:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E92108FC24 for ; Tue, 25 Sep 2012 18:10:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAGMI018593 for ; Tue, 25 Sep 2012 18:10:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAGtx018585; Tue, 25 Sep 2012 18:10:16 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:16 GMT Resent-Message-Id: <201209251810.q8PIAGtx018585@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF1F61065675 for ; Tue, 25 Sep 2012 18:02:48 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 7168E8FC1B for ; Tue, 25 Sep 2012 18:02:48 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 331ED34034 for ; Wed, 26 Sep 2012 03:02:44 +0900 (JST) Message-Id: <20120926022143.23d5090ee913e7c6ef106ea6@yahoo.com> Date: Wed, 26 Sep 2012 02:21:43 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171981: devel/cc65: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:17 -0000 >Number: 171981 >Category: ports >Synopsis: devel/cc65: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:16 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Update pkg-descr Remove file: files/patch-make_gcc.mak >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/cc65/Makefile devel/cc65/Makefile --- /usr/ports/devel/cc65/Makefile 2012-09-01 02:36:09.000000000 +0900 +++ devel/cc65/Makefile 2012-09-25 03:19:47.000000000 +0900 @@ -2,52 +2,58 @@ PORTNAME= cc65 PORTVERSION= 2.13.3 +DISTVERSIONPREFIX= sources- CATEGORIES= devel -MASTER_SITES= ftp://ftp.musoftware.de/pub/uz/cc65/ \ - http://www.funet.fi/pub/cbm/programming/cc65/ \ - http://www.acc.umu.se/~arvid/cc65_mirror/ \ - http://bj.spline.de/cc65/ -DISTNAME= ${PORTNAME}-sources-${PORTVERSION} +MASTER_SITES= http://bj.spline.de/cc65/ \ + http://cc65.oldos.net/ \ + ftp://ftp.musoftware.de/pub/uz/cc65/ MAINTAINER= ports@FreeBSD.org COMMENT= Cross-compiler for 6502-based systems, includes 65816 assembler -USE_SUBMAKE= yes +OPTIONS_DEFINE= DOCS EXAMPLES + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + USE_BZIP2= yes +USE_PERL5_BUILD=yes USE_GMAKE= yes -WRKSRC= ${WRKDIR}/cc65-${PORTVERSION} MAKEFILE= ${WRKSRC}/make/gcc.mak -USE_PERL5_BUILD=yes -MAKE_JOBS_UNSAFE= yes +MAKE_JOBS_UNSAFE=yes SUB_FILES= pkg-message +.include + post-patch: -# -# CFLAGS safety -# - @(${FIND} ${WRKSRC}/ -name gcc.mak -type f|${XARGS} ${REINPLACE_CMD} -E \ - -e "s,=[[:space:]]*-g -O2 -Wall -W(.*),+=\1," \ - -e "s,=[[:space:]]*-g -O2 -Wall(.*),+=\1," \ - -e "s,=[[:space:]]*-O2 -g -Wall -W(.*),+=\1," \ - -e "s,-std=c89,-std=c99,g" \ - -e "s,CC[[:space:]]*=.*,#&,") -.if defined(NOPORTDOCS) - @${REINPLACE_CMD} -E -e "s,(install:.*)install-docs(.*)$$,\1\2," \ - -e '/\(MKDIR\)[[:space:]]+\$$\(CC65DOC\)/d' \ - ${WRKSRC}/make/gcc.mak - @${REINPLACE_CMD} -E -e "s,^(docdir[[:space:]]*=).*,\1," \ - -e "s,^(CC65_DOC[[:space:]]*=).*,\1," ${WRKSRC}/make/gcc.mak -.endif + @${FIND} ${WRKSRC} -name "gcc.mak" | ${XARGS} ${REINPLACE_CMD} -e \ + '/gcc/s|^CC|#CC| ; \ + /-O2/s|^CFLAGS|#CFLAGS|' + @${REINPLACE_CMD} -e \ + '/^prefix/s|=.*|= $${PREFIX}| ; \ + /^docdir/s|=.*|=| ; \ + /^CC65_DOC/s|=.*|=| ; \ + /^INSTALL_DATA/s|=.*|= $${BSD_INSTALL_DATA}| ; \ + /^INSTALL_PROG/s|=.*|= $${BSD_INSTALL_SCRIPT}| ; \ + /^INSTALL_STRIP/s|=.*|= $${BSD_INSTALL_PROGRAM}| ; \ + /^all:/s|docs|| ; \ + /^install:/s|install-docs||' ${WRKSRC}/make/gcc.mak # XXX: gmake>=3.82 hack: beats the hell out of me. Quick fix. pre-install: @${MKDIR} -p ${PREFIX}/lib/cc65/tgi post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${EXAMPLESDIR} - @(cd ${WRKSRC}/samples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}) +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} +.for i in BUGS CREDITS compile.txt internal.txt newvers.txt readme.1st + ${INSTALL_DATA} ${WRKSRC}/doc/${i} ${DOCSDIR} +.endfor + ${INSTALL_DATA} ${WRKSRC}/src/ca65/macpack/*.mac ${DOCSDIR} +.endif +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} + @(cd ${WRKSRC}/samples && ${COPYTREE_SHARE} . ${EXAMPLESDIR}) .endif @${CAT} ${PKGMESSAGE} diff -urN /usr/ports/devel/cc65/files/patch-make_gcc.mak devel/cc65/files/patch-make_gcc.mak --- /usr/ports/devel/cc65/files/patch-make_gcc.mak 2008-05-15 19:12:03.000000000 +0900 +++ devel/cc65/files/patch-make_gcc.mak 1970-01-01 09:00:00.000000000 +0900 @@ -1,33 +0,0 @@ ---- make/gcc.mak.orig 2007-06-22 00:40:27.000000000 +0400 -+++ make/gcc.mak 2008-05-15 12:55:04.000000000 +0400 -@@ -14,7 +14,7 @@ - MAKEOVERRIDES= - - # The install prefix and directories --prefix = /usr/local -+prefix = ${PREFIX} - exec_prefix = $(prefix) - - bindir = $(exec_prefix)/bin -@@ -36,9 +36,9 @@ - # BSD-like install-script/-program - INSTALL = make/install-sh - --INSTALL_DATA = $(INSTALL) -c -m 644 --INSTALL_PROG = $(INSTALL) -c -m 755 --INSTALL_STRIP = $(INSTALL_PROG) -s -+INSTALL_DATA = ${BSD_INSTALL_DATA} -+INSTALL_PROG = ${BSD_INSTALL_SCRIPT} -+INSTALL_STRIP = ${BSD_INSTALL_PROGRAM} - - # This file-name extension is needed on DOS/Windows systems. - ifdef COMSPEC -@@ -52,7 +52,7 @@ - # a system on the command-line. (A user can do those rules with their - # defaults by putting "all samples tests" on the command-line.) - # --all: bins libs docs $(SYS:%=samples tests) -+all: bins libs $(SYS:%=samples tests) - - bins: - @$(MAKE) -C src -f make/gcc.mak CC65_INC=\\\"${CC65INC}/\\\" CC65_LIB=\\\"${CC65LIB}/\\\" diff -urN /usr/ports/devel/cc65/pkg-descr devel/cc65/pkg-descr --- /usr/ports/devel/cc65/pkg-descr 2003-05-23 06:32:42.000000000 +0900 +++ devel/cc65/pkg-descr 2012-08-02 02:16:42.000000000 +0900 @@ -1,24 +1,21 @@ -CC65 is a C cross-compiler for 6502 and 65C02 systems. CC65 includes -a powerful macro assembler, a debugger, an archiver, and a highly -configurable linker. The linker supports overlays, ROMable code, and -split output, among other features. The compiler supports a large -subset of ISO C (as per the ISO 9899 specification) and can compile -the uIP TCP stack. A 6502 simulator is available in the distribution -but is not currently installed by the FreeBSD port/package. +cc65 is a complete cross development package for 65(C)02 systems, +including a powerful macro assembler, a C compiler, linker, librarian +and several other tools. -It is easy to write code for standalone 6502 boards (target none). In -addition, particular support for the following targets is included: +Direct library support (that is, startup/initialization code) and +support libraries for other features are available for... - - C64 and C128 - - the GEOS operating system for the C64 and C128 - - Commodore C16, C116, Plus/4 - - Commodore VIC20 - - CBM 600/700 family (programs run in bank 1) - - Newer PET machines (not 2001) - - The Apple ][ - - Atari 8bit machines - - The Oric Atmos (beta) - -The assembler and linker also support 65816 as a target. + - the Commodore C64 + - the GEOS operating system for the Commodore C64 + - the Commodore C128 + - the Commodore C16, C116 and Plus/4 + - the Commodore P500 + - the Commodore 600/700 family of computers + - the Apple ][ + - the Atari 8bit machines + - the Oric Atmos + - the Nintendo Entertainment System (NES) + - the Supervision Game Console + - the Atari Lynx Console WWW: http://www.cc65.org/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 758771065691 for ; Tue, 25 Sep 2012 18:10:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 506FC8FC32 for ; Tue, 25 Sep 2012 18:10:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAHn6018663 for ; Tue, 25 Sep 2012 18:10:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAHL7018658; Tue, 25 Sep 2012 18:10:17 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:17 GMT Resent-Message-Id: <201209251810.q8PIAHL7018658@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E20F106567A for ; Tue, 25 Sep 2012 18:02:53 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id 5D8B78FC12 for ; Tue, 25 Sep 2012 18:02:52 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id DDD2523C031 for ; Wed, 26 Sep 2012 03:02:50 +0900 (JST) Message-Id: <20120926022146.55f0f1a1131f7eb2b6610b78@yahoo.com> Date: Wed, 26 Sep 2012 02:21:46 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171982: devel/ditrack: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:17 -0000 >Number: 171982 >Category: ports >Synopsis: devel/ditrack: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:16 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/ditrack/Makefile devel/ditrack/Makefile --- /usr/ports/devel/ditrack/Makefile 2010-05-18 13:07:37.000000000 +0900 +++ devel/ditrack/Makefile 2012-09-25 03:19:57.000000000 +0900 @@ -1,15 +1,11 @@ -# New ports collection makefile for: ditrack -# Date created: 2007-02-04 -# Whom: Gea-Suan Lin -# +# Created by: Gea-Suan Lin # $FreeBSD: ports/devel/ditrack/Makefile,v 1.11 2010/05/18 04:07:37 pgollucci Exp $ -# PORTNAME= ditrack PORTVERSION= 0.8 PORTREVISION= 2 CATEGORIES= devel -MASTER_SITES= http://www.ditrack.org/files/ +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}%20${PORTVERSION} EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org @@ -17,20 +13,23 @@ RUN_DEPENDS= svn:${PORTSDIR}/devel/subversion +OPTIONS_DEFINE= DOCS + +WRKSRC= ${WRKDIR}/DITrack-${PORTVERSION} NO_BUILD= yes + USE_PYTHON= yes USE_PYDISTUTILS= yes PYDISTUTILS_PKGNAME= DITrack -WRKSRC= ${WRKDIR}/DITrack-${PORTVERSION} -.include +.include post-install: - ${MKDIR} ${DATADIR} + @${MKDIR} ${DATADIR} ${INSTALL_SCRIPT} ${WRKSRC}/upgrade-0.7-db.py ${DATADIR} -.ifndef(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/html/index.html ${DOCSDIR} .endif -.include +.include diff -urN /usr/ports/devel/ditrack/pkg-descr devel/ditrack/pkg-descr --- /usr/ports/devel/ditrack/pkg-descr 2007-02-05 23:53:15.000000000 +0900 +++ devel/ditrack/pkg-descr 2012-06-23 19:02:15.000000000 +0900 @@ -3,4 +3,4 @@ of a backend database. It is written in Python and runs in UNIX environment (*BSD, Linux, MacOS X). -WWW: http://www.ditrack.org/ +WWW: http://sourceforge.net/projects/ditrack/ diff -urN /usr/ports/devel/ditrack/pkg-plist devel/ditrack/pkg-plist --- /usr/ports/devel/ditrack/pkg-plist 2008-08-10 11:50:05.000000000 +0900 +++ devel/ditrack/pkg-plist 2012-06-23 19:11:41.000000000 +0900 @@ -1,6 +1,6 @@ @comment $FreeBSD: ports/devel/ditrack/pkg-plist,v 1.5 2008/08/10 02:50:05 chinsan Exp $ -%%DATADIR%%/upgrade-0.7-db.py -%%PORTDOCS%%%%DOCSDIR%%/index.html +bin/dt +bin/dt-createdb %%PYTHON_SITELIBDIR%%/DITrack/Backend/__init__.py %%PYTHON_SITELIBDIR%%/DITrack/Backend/__init__.pyc %%PYTHON_SITELIBDIR%%/DITrack/Backend/__init__.pyo @@ -121,8 +121,10 @@ %%PYTHON_SITELIBDIR%%/DITrack/dt/globals.py %%PYTHON_SITELIBDIR%%/DITrack/dt/globals.pyc %%PYTHON_SITELIBDIR%%/DITrack/dt/globals.pyo -bin/dt -bin/dt-createdb +%%DATADIR%%/upgrade-0.7-db.py +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm %%DATADIR%% @dirrmtry %%PYTHON_SITELIBDIR%%/DITrack/dt @dirrmtry %%PYTHON_SITELIBDIR%%/DITrack/ThirdParty/Python @dirrmtry %%PYTHON_SITELIBDIR%%/DITrack/ThirdParty @@ -131,5 +133,3 @@ @dirrmtry %%PYTHON_SITELIBDIR%%/DITrack/Command @dirrmtry %%PYTHON_SITELIBDIR%%/DITrack/Backend @dirrmtry %%PYTHON_SITELIBDIR%%/DITrack -@dirrm %%DATADIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D59871065677 for ; Tue, 25 Sep 2012 18:10:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AFC268FC1A for ; Tue, 25 Sep 2012 18:10:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAHwU018746 for ; Tue, 25 Sep 2012 18:10:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAHe5018737; Tue, 25 Sep 2012 18:10:17 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:17 GMT Resent-Message-Id: <201209251810.q8PIAHe5018737@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 50338106564A for ; Tue, 25 Sep 2012 18:02:57 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 1ECBC8FC1A for ; Tue, 25 Sep 2012 18:02:57 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 7701B34034 for ; Wed, 26 Sep 2012 03:02:55 +0900 (JST) Message-Id: <20120926022150.82e2bf089579eae4898d852e@yahoo.com> Date: Wed, 26 Sep 2012 02:21:50 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171983: devel/fc++: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:18 -0000 >Number: 171983 >Category: ports >Synopsis: devel/fc++: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:17 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Support PORTDOCS >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/fc++/Makefile devel/fc++/Makefile --- /usr/ports/devel/fc++/Makefile 2012-09-21 15:52:44.000000000 +0900 +++ devel/fc++/Makefile 2012-09-25 03:20:10.000000000 +0900 @@ -1,27 +1,28 @@ -# ex:ts=8 -# New ports collection makefile for: fc++ -# Date created: Oct 10, 2001 -# Whom: ijliao -# +# Created by: ijliao # $FreeBSD: ports/devel/fc++/Makefile,v 1.9 2012/09/21 06:52:44 bapt Exp $ -# PORTNAME= fc++ PORTVERSION= 1.5 +PORTREVISION= 1 CATEGORIES= devel -MASTER_SITES= http://www.cc.gatech.edu/~yannis/fc++/ -DISTNAME= FC++.${PORTVERSION} +MASTER_SITES= http://people.cs.umass.edu/~yannis/fc++/ +DISTNAME= ${PORTNAME:U}.${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Functional Programming in C++ -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 +OPTIONS_DEFINE= DOCS NO_BUILD= yes +.include + do-install: @${MKDIR} ${PREFIX}/include/fc++ - ${CP} ${WRKSRC}/*.h ${PREFIX}/include/fc++ + ${INSTALL_DATA} ${WRKSRC}/*.h ${PREFIX}/include/fc++ +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/changes.html ${DOCSDIR} +.endif .include diff -urN /usr/ports/devel/fc++/pkg-descr devel/fc++/pkg-descr --- /usr/ports/devel/fc++/pkg-descr 2001-10-10 23:36:22.000000000 +0900 +++ devel/fc++/pkg-descr 2012-06-23 22:26:09.000000000 +0900 @@ -18,4 +18,4 @@ used to replace C++ pointers, many common logical and arithmetic operators in a form that can be used with higher-order functions, and more. -WWW: http://www.cc.gatech.edu/~yannis/fc++/ +WWW: http://people.cs.umass.edu/~yannis/fc++/ diff -urN /usr/ports/devel/fc++/pkg-plist devel/fc++/pkg-plist --- /usr/ports/devel/fc++/pkg-plist 2004-01-07 18:03:29.000000000 +0900 +++ devel/fc++/pkg-plist 2012-06-23 22:28:41.000000000 +0900 @@ -12,4 +12,6 @@ include/fc++/reuse.h include/fc++/signature.h include/fc++/smart.h +%%PORTDOCS%%%%DOCSDIR%%/changes.html +%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm include/fc++ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 40B2D106567F for ; Tue, 25 Sep 2012 18:10:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1BF308FC26 for ; Tue, 25 Sep 2012 18:10:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAHUM018812 for ; Tue, 25 Sep 2012 18:10:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAHtI018808; Tue, 25 Sep 2012 18:10:17 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:17 GMT Resent-Message-Id: <201209251810.q8PIAHtI018808@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 72A471065672 for ; Tue, 25 Sep 2012 18:03:02 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id 354D28FC12 for ; Tue, 25 Sep 2012 18:03:02 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id ABFF647C036 for ; Wed, 26 Sep 2012 03:02:59 +0900 (JST) Message-Id: <20120926022154.a3277480f15734003935c18c@yahoo.com> Date: Wed, 26 Sep 2012 02:21:54 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171984: devel/jrtplib: Update to version 3.9.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:18 -0000 >Number: 171984 >Category: ports >Synopsis: devel/jrtplib: Update to version 3.9.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:17 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 3.9.1 Remove file: files/patch-src-rtperrors.cpp >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/jrtplib/Makefile devel/jrtplib/Makefile --- /usr/ports/devel/jrtplib/Makefile 2012-09-22 14:32:27.000000000 +0900 +++ devel/jrtplib/Makefile 2012-09-24 22:36:07.000000000 +0900 @@ -2,23 +2,25 @@ # $FreeBSD: ports/devel/jrtplib/Makefile,v 1.18 2012/09/22 05:32:27 tabthorpe Exp $ PORTNAME= jrtplib -PORTVERSION= 3.7.1 +PORTVERSION= 3.9.1 CATEGORIES= devel MASTER_SITES= http://research.edm.uhasselt.be/jori/jrtplib/ MAINTAINER= ports@FreeBSD.org COMMENT= Object-oriented RTP library written in C++ -USE_AUTOTOOLS= libtool -GNU_CONFIGURE= yes -USE_GMAKE= yes +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.MIT + +USE_BZIP2= yes +USE_CMAKE= yes USE_LDCONFIG= yes -CONFIGURE_ARGS= --disable-jthread +MAKE_JOBS_SAFE= yes -PLIST_SUB+= JRTPLIB_VER=${PORTVERSION} +PLIST_SUB= JRTPLIB_VER="${PORTVERSION}" post-patch: - @${REINPLACE_CMD} -e 's|\$$(libdir)/pkgconfig|\$$(prefix)/libdata/pkgconfig|' \ - ${WRKSRC}/pkgconfig/Makefile.in + @${REINPLACE_CMD} -e \ + '/pkgconfig/s|$${LIBRARY_INSTALL_DIR}|$${CMAKE_INSTALL_PREFIX}/libdata|' ${WRKSRC}/CMakeLists.txt .include diff -urN /usr/ports/devel/jrtplib/distinfo devel/jrtplib/distinfo --- /usr/ports/devel/jrtplib/distinfo 2011-07-03 23:55:58.000000000 +0900 +++ devel/jrtplib/distinfo 2012-09-24 22:23:52.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (jrtplib-3.7.1.tar.gz) = 9c098c4778aee40df55fd00831a29d247336c2a7a3ac0692e79e5693b6d87cd6 -SIZE (jrtplib-3.7.1.tar.gz) = 474916 +SHA256 (jrtplib-3.9.1.tar.bz2) = a99a0d5764e8ca9f84bf167e6de91c3092ce3633497bacc3e2d13b69aa4403df +SIZE (jrtplib-3.9.1.tar.bz2) = 117735 diff -urN /usr/ports/devel/jrtplib/files/patch-src-rtperrors.cpp devel/jrtplib/files/patch-src-rtperrors.cpp --- /usr/ports/devel/jrtplib/files/patch-src-rtperrors.cpp 2008-11-18 02:01:29.000000000 +0900 +++ devel/jrtplib/files/patch-src-rtperrors.cpp 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- src/rtperrors.cpp.orig 2008-11-17 14:35:19.000000000 +0800 -+++ src/rtperrors.cpp 2008-11-17 14:35:50.000000000 +0800 -@@ -38,7 +38,7 @@ - struct RTPErrorInfo - { - int code; -- char *description; -+ std::string description; - }; - - static RTPErrorInfo ErrorDescriptions[]= diff -urN /usr/ports/devel/jrtplib/files/patch-src-rtperrors.h devel/jrtplib/files/patch-src-rtperrors.h --- /usr/ports/devel/jrtplib/files/patch-src-rtperrors.h 2007-02-12 22:22:04.000000000 +0900 +++ devel/jrtplib/files/patch-src-rtperrors.h 2012-09-24 22:25:45.000000000 +0900 @@ -1,10 +1,10 @@ ---- src/rtperrors.h Tue Feb 21 17:31:13 2006 -+++ src/rtperrors.h Sun Apr 16 20:46:09 2006 -@@ -34,6 +34,7 @@ - +--- src/rtperrors.h.orig 2011-08-29 22:43:27.000000000 +0900 ++++ src/rtperrors.h 2012-09-24 22:25:22.000000000 +0900 +@@ -39,6 +39,7 @@ #define RTPERRORS_H + #include "rtpconfig.h" +#include #include - std::string RTPGetErrorString(int errcode); + namespace jrtplib diff -urN /usr/ports/devel/jrtplib/pkg-plist devel/jrtplib/pkg-plist --- /usr/ports/devel/jrtplib/pkg-plist 2008-11-18 02:01:29.000000000 +0900 +++ devel/jrtplib/pkg-plist 2012-09-24 22:35:20.000000000 +0900 @@ -11,13 +11,13 @@ include/jrtplib3/rtcpsrpacket.h include/jrtplib3/rtcpunknownpacket.h include/jrtplib3/rtpaddress.h +include/jrtplib3/rtpbyteaddress.h include/jrtplib3/rtpcollisionlist.h include/jrtplib3/rtpconfig.h -include/jrtplib3/rtpconfig_unix.h -include/jrtplib3/rtpconfig_win.h include/jrtplib3/rtpdebug.h include/jrtplib3/rtpdefines.h include/jrtplib3/rtperrors.h +include/jrtplib3/rtpexternaltransmitter.h include/jrtplib3/rtpfaketransmitter.h include/jrtplib3/rtphashtable.h include/jrtplib3/rtpinternalsourcedata.h @@ -33,6 +33,9 @@ include/jrtplib3/rtppacketbuilder.h include/jrtplib3/rtppollthread.h include/jrtplib3/rtprandom.h +include/jrtplib3/rtprandomrand48.h +include/jrtplib3/rtprandomrands.h +include/jrtplib3/rtprandomurandom.h include/jrtplib3/rtprawpacket.h include/jrtplib3/rtpsession.h include/jrtplib3/rtpsessionparams.h @@ -43,13 +46,14 @@ include/jrtplib3/rtptimeutilities.h include/jrtplib3/rtptransmitter.h include/jrtplib3/rtptypes.h -include/jrtplib3/rtptypes_unix.h include/jrtplib3/rtptypes_win.h include/jrtplib3/rtpudpv4transmitter.h include/jrtplib3/rtpudpv6transmitter.h -lib/libjrtp-%%JRTPLIB_VER%%.so +lib/cmake/JRTPLIB/JRTPLIBConfig.cmake lib/libjrtp.a -lib/libjrtp.la lib/libjrtp.so +lib/libjrtp.so.%%JRTPLIB_VER%% libdata/pkgconfig/jrtplib.pc +@dirrm lib/cmake/JRTPLIB +@dirrmtry lib/cmake @dirrm include/jrtplib3 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1EE2106564A for ; Tue, 25 Sep 2012 18:10:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7CBF08FC08 for ; Tue, 25 Sep 2012 18:10:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAIVw018882 for ; Tue, 25 Sep 2012 18:10:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAIJG018874; Tue, 25 Sep 2012 18:10:18 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:18 GMT Resent-Message-Id: <201209251810.q8PIAIJG018874@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A81391065678 for ; Tue, 25 Sep 2012 18:03:06 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 791D88FC1D for ; Tue, 25 Sep 2012 18:03:06 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id A715850036 for ; Wed, 26 Sep 2012 03:03:04 +0900 (JST) Message-Id: <20120926022158.0e8ce91c231b1d4332917020@yahoo.com> Date: Wed, 26 Sep 2012 02:21:58 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171985: devel/jtag: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:18 -0000 >Number: 171985 >Category: ports >Synopsis: devel/jtag: Support USE_READLINE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:18 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Support USE_READLINE - Add LICENSE - Add MAKE_JOBS_SAFE >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/jtag/Makefile devel/jtag/Makefile --- /usr/ports/devel/jtag/Makefile 2012-01-22 02:37:10.000000000 +0900 +++ devel/jtag/Makefile 2012-09-25 03:20:23.000000000 +0900 @@ -1,10 +1,5 @@ -# New ports collection makefile for: jtag -# Date created: 2006-08-05 -# Whom: Stanislav Sedov -# -# $MBSDlabs$ +# Created by: Stanislav Sedov # $FreeBSD: ports/devel/jtag/Makefile,v 1.11 2012/01/21 17:37:10 eadler Exp $ -# PORTNAME= jtag PORTVERSION= 0.5.1 @@ -15,25 +10,36 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Utility to work with JTAG-aware boards +LICENSE= GPLv2 # (or later) + BUILD_DEPENDS= ${OPENWINCE_INCLUDE_DEP}:${PORTSDIR}/devel/openwince-include RUN_DEPENDS:= ${BUILD_DEPENDS} +OPTIONS_DEFINE= NLS DOCS +OPTIONS_DEFAULT=NLS + USE_BZIP2= yes -USE_GETTEXT= yes +USE_READLINE= yes GNU_CONFIGURE= yes +MAKE_JOBS_SAFE= yes + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +PORTDOCS= * ONLY_FOR_ARCHS= i386 OPENWINCE_INCLUDE=${LOCALBASE}/include/openwince OPENWINCE_INCLUDE_DEP=${OPENWINCE_INCLUDE}/common.h -.if !defined(NOPORTDOCS) -PORTDOCS= * -.endif +.include -.include - -.if exists(${LOCALBASE}/lib/libreadline.so.6) -LIB_DEPENDS+= readline.6:${PORTSDIR}/devel/readline +.if ${PORT_OPTIONS:MNLS} +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+=--disable-nls +PLIST_SUB+= NLS="@comment " .endif post-extract: @@ -42,10 +48,11 @@ ${WRKSRC}/configure post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/TODO \ - ${WRKSRC}/doc/internals.xml ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} +.for f in README TODO doc/internals.xml + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor .endif -.include +.include diff -urN /usr/ports/devel/jtag/pkg-plist devel/jtag/pkg-plist --- /usr/ports/devel/jtag/pkg-plist 2007-05-20 05:02:56.000000000 +0900 +++ devel/jtag/pkg-plist 2012-09-08 23:45:42.000000000 +0900 @@ -41,7 +41,7 @@ %%DATADIR%%/xilinx/xcr3128xl-cs144/xcr3128xl-cs144 %%DATADIR%%/xilinx/xcr3256xl-ft256/STEPPINGS %%DATADIR%%/xilinx/xcr3256xl-ft256/xcr3256xl-ft256 -share/locale/sk/LC_MESSAGES/jtag.mo +%%NLS%%share/locale/sk/LC_MESSAGES/jtag.mo @dirrm %%DATADIR%%/xilinx/xcr3256xl-ft256 @dirrm %%DATADIR%%/xilinx/xcr3128xl-cs144 @dirrm %%DATADIR%%/xilinx/xc2c256-tq144 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0AC971065675 for ; Tue, 25 Sep 2012 18:10:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D959A8FC16 for ; Tue, 25 Sep 2012 18:10:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAIkK018955 for ; Tue, 25 Sep 2012 18:10:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAIR5018951; Tue, 25 Sep 2012 18:10:18 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:18 GMT Resent-Message-Id: <201209251810.q8PIAIR5018951@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 753A41065674 for ; Tue, 25 Sep 2012 18:03:12 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id 36A918FC0A for ; Tue, 25 Sep 2012 18:03:12 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 2815C23C031 for ; Wed, 26 Sep 2012 03:03:08 +0900 (JST) Message-Id: <20120926022201.e20f183c930950fe6627a2d9@yahoo.com> Date: Wed, 26 Sep 2012 02:22:01 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171986: devel/jwasm: Update to version 2.0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:19 -0000 >Number: 171986 >Category: ports >Synopsis: devel/jwasm: Update to version 2.0.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:18 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 2.0.8 Remove file: files/patch-GccUnix.mak files/patch-H__memalloc.h pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/jwasm/Makefile devel/jwasm/Makefile --- /usr/ports/devel/jwasm/Makefile 2012-08-03 11:06:44.000000000 +0900 +++ devel/jwasm/Makefile 2012-09-25 03:20:31.000000000 +0900 @@ -1,12 +1,8 @@ -# New ports collection makefile for: jwasm -# Date created: 7 April 2009 -# Whom: Pedro F. Giffuni -# +# Created by: Pedro F. Giffuni # $FreeBSD: ports/devel/jwasm/Makefile,v 1.4 2012/08/03 02:06:44 wxs Exp $ -# PORTNAME= jwasm -PORTVERSION= 207a +PORTVERSION= 208 CATEGORIES= devel MASTER_SITES= http://www.japheth.de/Download/JWasm/ DISTNAME= JWasm${PORTVERSION}s @@ -14,22 +10,40 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Fork of OpenWatcom's x86 assembler with AMD64 support +OPTIONS_DEFINE= DOCS + ONLY_FOR_ARCHS= amd64 i386 +NO_WRKSUBDIR= yes + USE_ZIP= yes +USE_DOS2UNIX= yes USE_GMAKE= yes MAKEFILE= GccUnix.mak -NO_WRKSUBDIR= yes -EXTRACT_BEFORE_ARGS= -qa +MAKE_JOBS_SAFE= yes + +PORTDOCS= * +PLIST_FILES= bin/jwasm + +.include + +post-patch: + @${REINPLACE_CMD} -e \ + '/^extra_c_flags/s|-O2|$$(CFLAGS)| ; \ + /^CC/s| =| ?=| ; \ + s|-s -o|-o|' ${WRKSRC}/GccUnix.mak + @${REINPLACE_CMD} -e \ + '/v2.07/s|||' ${WRKSRC}/H/memalloc.h do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/GccUnixR/jwasm ${PREFIX}/bin/ -.if !defined(NOPORTDOCS) + ${INSTALL_PROGRAM} ${WRKSRC}/GccUnixR/jwasm ${PREFIX}/bin +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/*.txt ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/*.txt ${DOCSDIR} + @${GZIP_CMD} ${DOCSDIR}/*.txt @${MKDIR} ${DOCSDIR}/manual - @${INSTALL_DATA} ${WRKSRC}/Doc/*.txt ${DOCSDIR}/manual - @${GZIP_CMD} ${DOCSDIR}/*.txt ${DOCSDIR}/manual/*.txt + ${INSTALL_DATA} ${WRKSRC}/Doc/*.txt ${DOCSDIR}/manual + @${GZIP_CMD} ${DOCSDIR}/manual/*.txt .endif .include diff -urN /usr/ports/devel/jwasm/distinfo devel/jwasm/distinfo --- /usr/ports/devel/jwasm/distinfo 2012-08-03 11:06:44.000000000 +0900 +++ devel/jwasm/distinfo 2012-09-02 05:38:29.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (JWasm207as.zip) = 78c6f76ab729d9ecccf0a7fcf335457d6f76b613172a85c8d44b56ef79d328cc -SIZE (JWasm207as.zip) = 804843 +SHA256 (JWasm208s.zip) = 7d0159c80b16c4c7c4b6391cb913b525039614ae9b82f3cd6756177d79b4fe58 +SIZE (JWasm208s.zip) = 822030 diff -urN /usr/ports/devel/jwasm/files/patch-GccUnix.mak devel/jwasm/files/patch-GccUnix.mak --- /usr/ports/devel/jwasm/files/patch-GccUnix.mak 2010-12-17 23:07:17.000000000 +0900 +++ devel/jwasm/files/patch-GccUnix.mak 1970-01-01 09:00:00.000000000 +0900 @@ -1,20 +0,0 @@ ---- GccUnix.mak.orig 2009-06-07 14:07:37.000000000 -0500 -+++ GccUnix.mak 2009-06-07 14:09:18.000000000 -0500 -@@ -14,7 +14,7 @@ - #cflags stuff - - ifeq ($(DEBUG),0) --extra_c_flags = -DNDEBUG -O2 -+extra_c_flags = -DNDEBUG ${CFLAGS} - OUTD=GccUnixR - else - extra_c_flags = -DDEBUG_OUT -g -@@ -23,7 +23,7 @@ - - c_flags =-D__UNIX__ $(extra_c_flags) - --CC = gcc -+#CC = cc - - .SUFFIXES: - .SUFFIXES: .c .o diff -urN /usr/ports/devel/jwasm/files/patch-H__memalloc.h devel/jwasm/files/patch-H__memalloc.h --- /usr/ports/devel/jwasm/files/patch-H__memalloc.h 2012-08-03 11:06:44.000000000 +0900 +++ devel/jwasm/files/patch-H__memalloc.h 1970-01-01 09:00:00.000000000 +0900 @@ -1,20 +0,0 @@ ---- H/memalloc.h.orig 2012-07-29 14:44:42.000000000 -0500 -+++ H/memalloc.h 2012-07-29 14:51:44.000000000 -0500 -@@ -40,14 +40,15 @@ - #if defined(__WATCOMC__) || defined(__BORLANDC__) || defined(__OCC__) - #define myalloca alloca - #include --#elif defined(__GNUC__) || defined(__TINYC__) -+#elif (defined(__GNUC__) || defined(__TINYC__)) && !defined(__FreeBSD__) - #define myalloca alloca - #include /* added v2.07 */ - #elif defined(__PCC__) - #define myalloca _alloca - #include - #else --#define myalloca _alloca -+#define myalloca alloca -+#include - #endif - - /* AsmAlloc() and AsmFree() are fast variants, which diff -urN /usr/ports/devel/jwasm/pkg-descr devel/jwasm/pkg-descr --- /usr/ports/devel/jwasm/pkg-descr 2012-08-03 11:06:44.000000000 +0900 +++ devel/jwasm/pkg-descr 2012-07-08 03:47:02.000000000 +0900 @@ -6,14 +6,14 @@ JWasm Features: - JWasm natively supports output formats Intel OMF, MS Coff (32- and -64-bit), Elf (32-and 64-bit), Bin and DOS MZ. + 64-bit), Elf (32- and 64-bit), Bin and DOS MZ. - precompiled JWasm binaries are available for DOS, Windows and Linux. For -OS/2 and FreeBSD, makefiles are supplied. -- Instructions up to AVX are supported. + OS/2 and FreeBSD, makefiles are supplied. +- Instructions up to SSSE3 are supported. - The JWasm source is portable and has successfully been tested with Open -Watcom, MS VC, GCC and more. + Watcom, MS VC, GCC and more. - As far as programming for Windows is concerned, JWasm can be used with -both Win32Inc and Masm32. + both Win32Inc and Masm32. - C header files can be converted to include files for JWasm with h2incX. WWW: http://www.japheth.de/JWasm.html diff -urN /usr/ports/devel/jwasm/pkg-plist devel/jwasm/pkg-plist --- /usr/ports/devel/jwasm/pkg-plist 2012-08-03 11:06:44.000000000 +0900 +++ devel/jwasm/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ -@comment $FreeBSD: ports/devel/jwasm/pkg-plist,v 1.2 2012/08/03 02:06:44 wxs Exp $ -bin/jwasm -%%PORTDOCS%%%%DOCSDIR%%/History.txt.gz -%%PORTDOCS%%%%DOCSDIR%%/License.txt.gz -%%PORTDOCS%%%%DOCSDIR%%/Readme.txt.gz -%%PORTDOCS%%%%DOCSDIR%%/manual/enh.txt.gz -%%PORTDOCS%%%%DOCSDIR%%/manual/fixes.txt.gz -%%PORTDOCS%%%%DOCSDIR%%/manual/gencode.txt.gz -%%PORTDOCS%%%%DOCSDIR%%/manual/overview.txt.gz -%%PORTDOCS%%@dirrm %%DOCSDIR%%/manual -%%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68D1B106567A for ; Tue, 25 Sep 2012 18:10:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 443468FC19 for ; Tue, 25 Sep 2012 18:10:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAJJE019062 for ; Tue, 25 Sep 2012 18:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAJ7n019051; Tue, 25 Sep 2012 18:10:19 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:19 GMT Resent-Message-Id: <201209251810.q8PIAJ7n019051@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 608AF106564A for ; Tue, 25 Sep 2012 18:03:17 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 09D3E8FC08 for ; Tue, 25 Sep 2012 18:03:17 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id CA1964AC037 for ; Wed, 26 Sep 2012 03:03:14 +0900 (JST) Message-Id: <20120926022205.066dfb5c64d37c2473fc95ef@yahoo.com> Date: Wed, 26 Sep 2012 02:22:05 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171987: devel/libepp-nicbr: Update to vesion 1.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:19 -0000 >Number: 171987 >Category: ports >Synopsis: devel/libepp-nicbr: Update to vesion 1.12 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:18 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.12 >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/libepp-nicbr/Makefile devel/libepp-nicbr/Makefile --- /usr/ports/devel/libepp-nicbr/Makefile 2011-09-02 09:32:20.000000000 +0900 +++ devel/libepp-nicbr/Makefile 2012-09-25 03:20:38.000000000 +0900 @@ -1,27 +1,42 @@ -# New ports collection makefile for: libepp-nicbr -# Date created: 2006-07-04 -# Whom: Jean Milanez Melo -# +# Created by: Jean Milanez Melo # $FreeBSD: ports/devel/libepp-nicbr/Makefile,v 1.9 2011/09/02 00:32:20 sylvio Exp $ -# PORTNAME= libepp-nicbr -PORTVERSION= 1.11 +PORTVERSION= 1.12 CATEGORIES= devel MASTER_SITES= ftp://ftp.registro.br/pub/libepp-nicbr/ MAINTAINER= ports@FreeBSD.org COMMENT= Partial Extensible Provisioning Protocol to .br domains -LIB_DEPENDS= xerces-c:${PORTSDIR}/textproc/xerces-c2 +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= xerces-c:${PORTSDIR}/textproc/xerces-c3 + +OPTIONS_DEFINE= READLINE +OPTIONS_DEFAULT=READLINE +READLINE_DESC= Enable readline support USE_OPENSSL= yes GNU_CONFIGURE= yes +CONFIGURE_ENV= ac_cv_header_cppunit_TestRunner_h=no CONFIGURE_ARGS= --with-xerces-c=${LOCALBASE} \ --with-openssl=${OPENSSLBASE} +MAKE_JOBS_SAFE= yes -DATADIR= share/${PORTNAME:S/-/_/} +DATADIR= ${PREFIX}/share/${PORTNAME:S/-/_/} PLIST_SUB= VER="${PORTVERSION}" +.include + +.if ${PORT_OPTIONS:MREADLINE} +USE_READLINE= yes +PLIST_SUB+= READLINE="" +.else +CONFIGURE_ENV+= ac_cv_lib_readline_readline=no +PLIST_SUB+= READLINE="@comment " +.endif + .include diff -urN /usr/ports/devel/libepp-nicbr/distinfo devel/libepp-nicbr/distinfo --- /usr/ports/devel/libepp-nicbr/distinfo 2011-09-02 09:32:20.000000000 +0900 +++ devel/libepp-nicbr/distinfo 2012-09-10 17:54:22.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (libepp-nicbr-1.11.tar.gz) = 886f971ca341957af49591b9e12819089444b5b04dd695bc5761f0e2aa871771 -SIZE (libepp-nicbr-1.11.tar.gz) = 315121 +SHA256 (libepp-nicbr-1.12.tar.gz) = 3a4569425db2075ea928f75ba50ce7d77421d02ad5e4e7c95405daef711d589c +SIZE (libepp-nicbr-1.12.tar.gz) = 314578 diff -urN /usr/ports/devel/libepp-nicbr/pkg-descr devel/libepp-nicbr/pkg-descr --- /usr/ports/devel/libepp-nicbr/pkg-descr 2006-07-06 05:20:24.000000000 +0900 +++ devel/libepp-nicbr/pkg-descr 2012-09-10 23:13:19.000000000 +0900 @@ -1,14 +1,14 @@ -This is the LIBEPP-NICBR C++ library that partially implements the Extensible -Provisioning Protocol (EPP), as described in the Internet Drafts RFC3730bis to -RFC3734bis and RFC3735. +This is the LIBEPP-NICBR C++ library that partially implements the +Extensible Provisioning Protocol (EPP), as described in the Internet +Drafts RFC3730bis to RFC3734bis and RFC3735. -RFC3731bis - EPP Domain Name Mapping - was implemented with hosts as attributes -of the Domain Object. +RFC3731bis - EPP Domain Name Mapping - was implemented with hosts as +attributes of the Domain Object. -In order to conform to the .BR model, extensions to the EPP Domain Name and -Contact Mapping were made (draft-neves-epp-brdomain and draft-neves-epp-brorg), -supported since version 0.2. The documentation for these extensions is -available at EPP References [1]. +In order to conform to the .BR model, extensions to the EPP Domain Name +and Contact Mapping were made (draft-neves-epp-brdomain and +draft-neves-epp-brorg), supported since version 0.2. The documentation +for these extensions is available at EPP References [1]. [1] http://registro.br/epp/rfc-EN.html diff -urN /usr/ports/devel/libepp-nicbr/pkg-plist devel/libepp-nicbr/pkg-plist --- /usr/ports/devel/libepp-nicbr/pkg-plist 2011-09-02 09:32:20.000000000 +0900 +++ devel/libepp-nicbr/pkg-plist 2012-09-10 23:26:21.000000000 +0900 @@ -1,4 +1,4 @@ -bin/shepp +%%READLINE%%bin/shepp include/libepp_nicbr/Action.H include/libepp_nicbr/AsnCheck.H include/libepp_nicbr/AsnCheckCmd.H @@ -135,6 +135,7 @@ include/libepp_nicbr/TransportTLSCommon.H include/libepp_nicbr/XmlException.H include/libepp_nicbr/libepp_nicbr.H +include/libepp_nicbr/libepp_nicbr.H.template lib/libepp-nicbr-%%VER%%.a %%DATADIR%%/schemas/asn-1.0.xsd %%DATADIR%%/schemas/brdomain-1.0.xsd >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 97614106567B; Tue, 25 Sep 2012 18:10:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6BCCB8FC1B; Tue, 25 Sep 2012 18:10:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAJJH019114; Tue, 25 Sep 2012 18:10:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAJdh019101; Tue, 25 Sep 2012 18:10:19 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:10:19 GMT Message-Id: <201209251810.q8PIAJdh019101@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171955: astro/gpscorrelate: Update to version 1.6.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:19 -0000 Synopsis: astro/gpscorrelate: Update to version 1.6.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:10:18 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171955 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F6C4106567D for ; Tue, 25 Sep 2012 18:10:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 98C038FC1F for ; Tue, 25 Sep 2012 18:10:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAJ2v019159 for ; Tue, 25 Sep 2012 18:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAJbj019157; Tue, 25 Sep 2012 18:10:19 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:19 GMT Resent-Message-Id: <201209251810.q8PIAJbj019157@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 60373106566B for ; Tue, 25 Sep 2012 18:03:22 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 0743D8FC14 for ; Tue, 25 Sep 2012 18:03:21 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id 8C3142BC03B for ; Wed, 26 Sep 2012 03:03:19 +0900 (JST) Message-Id: <20120926022209.7adf9ccec1a05d0485dfd63f@yahoo.com> Date: Wed, 26 Sep 2012 02:22:09 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171988: devel/omake: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:20 -0000 >Number: 171988 >Category: ports >Synopsis: devel/omake: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:19 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Support USE_NCURSES - Support USE_READLINE >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/omake/Makefile devel/omake/Makefile --- /usr/ports/devel/omake/Makefile 2011-11-11 06:44:07.000000000 +0900 +++ devel/omake/Makefile 2012-09-25 03:20:46.000000000 +0900 @@ -1,40 +1,30 @@ -# New ports collection makefile for: omake -# Date created: 2006-08-06 -# Whom: Stanislav Sedov -# -# $MBSDlabs$ +# Created by: Stanislav Sedov # $FreeBSD: ports/devel/omake/Makefile,v 1.12 2011/11/10 21:44:07 linimon Exp $ -# PORTNAME= omake PORTVERSION= 0.9.8.5 PORTREVISION= 1 CATEGORIES= devel -MASTER_SITES= http://omake.metaprl.org/downloads/ -DISTNAME= omake-0.9.8.5-3 +MASTER_SITES= http://main.metaprl.org/download/omake/ +DISTNAME= ${PORTNAME}-${PORTVERSION}-3 MAINTAINER= ports@FreeBSD.org COMMENT= A flexible build system +OPTIONS_DEFINE= DOCS + WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + USE_OCAML= yes NO_OCAML_RUNDEPENDS=yes +USE_NCURSES= yes +USE_READLINE= yes MAKE_JOBS_UNSAFE= yes -FETCH_CMD?= /usr/bin/fetch -Rr - -.if !defined(NOPORTDOCS) INFO= omake-doc -.endif .include -.if exists(${LOCALBASE}/lib/libreadline.so.6) -LIB_DEPENDS+= readline.6:${PORTSDIR}/devel/readline -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -.endif - .if ${ARCH} == "powerpc" BROKEN= Does not build on powerpc .endif @@ -43,23 +33,26 @@ # # Dirty hack for PREFIX safety # - @${REINPLACE_CMD} -E -e "s,(getenv[[:space:]]+)LIBDIR,\1PREFLIBDIR," \ - ${WRKSRC}/mk/defaults + @${REINPLACE_CMD} -E -e \ + 's|(getenv[[:space:]]+)LIBDIR|\1PREFLIBDIR|' ${WRKSRC}/mk/defaults # # Permissions safety # - @${REINPLACE_CMD} -E -e "s,cp -f -m 444,\$$(BSD_INSTALL_DATA)," \ - -e "s,cp -f -m 555,\$$(BSD_INSTALL_PROGRAM)," \ - ${WRKSRC}/OMakefile ${WRKSRC}/src/main/OMakefile \ - ${WRKSRC}/doc/OMakefile +.for f in OMakefile doc/OMakefile src/main/OMakefile + @${REINPLACE_CMD} -e \ + 's|cp -f -m 444|$$(BSD_INSTALL_DATA)| ; \ + s|cp -f -m 555|$$(BSD_INSTALL_PROGRAM)|' ${WRKSRC}/${f} +.endfor post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR}/ - @(cd ${WRKSRC}/doc/html/ && ${COPYTREE_SHARE} \* "${DOCSDIR}/") - @(cd ${WRKSRC}/doc/info/ \ - && ${COPYTREE_SHARE} \* "${PREFIX}/${INFO_PATH}/") + @(cd ${WRKSRC}/doc/info \ + && ${INSTALL_DATA} omake-doc.info ${PREFIX}/${INFO_PATH}) + @(cd ${WRKSRC}/doc/info \ + && ${INSTALL_DATA} omake-doc.info-* ${PREFIX}/${INFO_PATH}) +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + @(cd ${WRKSRC}/doc/html && ${COPYTREE_SHARE} . ${DOCSDIR}) .endif .include diff -urN /usr/ports/devel/omake/pkg-descr devel/omake/pkg-descr --- /usr/ports/devel/omake/pkg-descr 2006-09-06 16:33:20.000000000 +0900 +++ devel/omake/pkg-descr 2012-09-10 17:44:00.000000000 +0900 @@ -1,5 +1,5 @@ -OMake is a build system designed for scalability and portability. It uses a -syntax similar to make utilities you may have used, but it features many -additional enhancements. +OMake is a build system designed for scalability and portability. It uses +a syntax similar to make utilities you may have used, but it features +many additional enhancements. -WWW: http://omake.metaprl.org/index.html +WWW: http://omake.metaprl.org/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45C61106567E for ; Tue, 25 Sep 2012 18:10:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F05358FC22 for ; Tue, 25 Sep 2012 18:10:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAJIV019245 for ; Tue, 25 Sep 2012 18:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAJHV019233; Tue, 25 Sep 2012 18:10:19 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:19 GMT Resent-Message-Id: <201209251810.q8PIAJHV019233@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E0971065672 for ; Tue, 25 Sep 2012 18:03:37 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id CFCD38FC12 for ; Tue, 25 Sep 2012 18:03:36 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 6651C23C036 for ; Wed, 26 Sep 2012 03:03:24 +0900 (JST) Message-Id: <20120926022213.afd71884056c9fc004af7394@yahoo.com> Date: Wed, 26 Sep 2012 02:22:13 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171989: devel/rudiments: Update to version 0.37 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:20 -0000 >Number: 171989 >Category: ports >Synopsis: devel/rudiments: Update to version 0.37 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:19 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.37 >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/rudiments/Makefile devel/rudiments/Makefile --- /usr/ports/devel/rudiments/Makefile 2012-07-26 14:40:22.000000000 +0900 +++ devel/rudiments/Makefile 2012-09-25 03:20:54.000000000 +0900 @@ -1,12 +1,8 @@ -# New ports collection makefile for: rudiments -# Date created: 2 July 2001 -# Whom: Akinori MUSHA aka knu -# +# Created by: Akinori MUSHA aka knu # $FreeBSD: ports/devel/rudiments/Makefile,v 1.44 2012/07/26 05:40:22 bapt Exp $ -# PORTNAME= rudiments -PORTVERSION= 0.36.1 +PORTVERSION= 0.37 CATEGORIES= devel MASTER_SITES= SF @@ -15,9 +11,11 @@ LICENSE= LGPL20 +OPTIONS_DEFINE= DOCS + USE_OPENSSL= yes +USE_PKGCONFIG= build USE_GMAKE= yes -USE_PKGCONFIG= yes USE_AUTOTOOLS= libtool CONFIGURE_ENV= PTHREADINCLUDES="${PTHREAD_CFLAGS}" \ PTHREADLIB="${PTHREAD_LIBS}" @@ -28,6 +26,9 @@ MAKE_JOBS_SAFE= yes MAN1= rudiments-config.1 +PORTDOCS= * + +.include post-patch: @${REINPLACE_CMD} -e \ @@ -39,11 +40,11 @@ 's| -release $$(RUDIMENTS_VERSION)||' ${WRKSRC}/src/Makefile post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} @(${TAR} -C ${WRKSRC}/doc --exclude CVS --exclude "Makefile" \ - --exclude "*.bak" --exclude "*.in" -cf - . | \ - ${TAR} -C ${DOCSDIR} --unlink -xf -) + --exclude "*#*" --exclude "*.bak" --exclude "*.in" \ + -cf - . | ${TAR} -C ${DOCSDIR} --unlink -xf -) @${FIND} ${DOCSDIR} | ${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP} @${FIND} ${DOCSDIR} -type d | ${XARGS} ${CHMOD} a+rx @${FIND} ${DOCSDIR} -type f | ${XARGS} ${CHMOD} ${SHAREMODE} diff -urN /usr/ports/devel/rudiments/distinfo devel/rudiments/distinfo --- /usr/ports/devel/rudiments/distinfo 2012-05-21 12:10:30.000000000 +0900 +++ devel/rudiments/distinfo 2012-08-16 21:52:51.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (rudiments-0.36.1.tar.gz) = 83be56c78bd98e2051cffd7374360b8803a9c60467d0e394e8af59c80417c4cd -SIZE (rudiments-0.36.1.tar.gz) = 1418733 +SHA256 (rudiments-0.37.tar.gz) = 82cc1aa552655c9fe634cd2546c356767c7876019a891a3fe74561af86081cf3 +SIZE (rudiments-0.37.tar.gz) = 2481648 diff -urN /usr/ports/devel/rudiments/pkg-plist devel/rudiments/pkg-plist --- /usr/ports/devel/rudiments/pkg-plist 2012-05-04 01:31:29.000000000 +0900 +++ devel/rudiments/pkg-plist 2012-09-11 22:17:09.000000000 +0900 @@ -206,587 +206,5 @@ lib/librudiments.so lib/librudiments.so.1 libdata/pkgconfig/rudiments.pc -%%PORTDOCS%%%%DOCSDIR%%/classes/doxygen.config -%%PORTDOCS%%%%DOCSDIR%%/classes/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/bc_s.png -%%PORTDOCS%%%%DOCSDIR%%/classes/html/character_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/characterincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/charstring_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/charstringincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/chat_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/chatincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classcharacter-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classcharacter.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classcharstring-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classcharstring.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classchat-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classchat.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classclient-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classclient.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classclientserverfactory-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classclientserverfactory.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classclientsocket-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classclientsocket.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classcommandline-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classcommandline.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classconststringdictionary-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classconststringdictionary.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classconststringdictionarylist-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classconststringdictionarylist.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classconststringdictionarylistnode-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classconststringdictionarylistnode.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classconststringdictionarynode-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classconststringdictionarynode.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classcrypt-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classcrypt.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdaemonprocess-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdaemonprocess.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdatetime-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdatetime.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdevice-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdevice.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdictionary-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdictionary.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdictionarylist-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdictionarylist.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdictionarylistnode-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdictionarylistnode.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdictionarynode-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdictionarynode.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdirectory-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdirectory.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdirectorylisting.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdtd-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdtd.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdynamiclib-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classdynamiclib.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classenvironment-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classenvironment.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classerror-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classerror.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classes.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classfile-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classfile.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classfiledescriptor-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classfiledescriptor.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classfiledestination-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classfiledestination.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classfilesystem-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classfilesystem.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classgroupentry-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classgroupentry.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classhostentry-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classhostentry.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classinetclientsocket-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classinetclientsocket.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classinetserversocket-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classinetserversocket.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classinetsocketutil-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classinetsocketutil.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classintervaltimer-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classintervaltimer.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classlink-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classlink.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classlinkedlist-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classlinkedlist.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classlinkedlistnode-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classlinkedlistnode.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classlinkedlistutil-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classlinkedlistutil.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classlistener-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classlistener.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classlogdestination.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classlogger-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classlogger.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classloginrecord.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmath-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmath.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmemorymap-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmemorymap.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmemorypool-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmemorypool.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmessagequeue.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmodemclient-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmodemclient.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmodemserver-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmodemserver.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmodemutil-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmodemutil.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmutex-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classmutex.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classnetworkinterface-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classnetworkinterface.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classnetworkinterfaces-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classnetworkinterfaces.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classnumericdictionary-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classnumericdictionary.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classnumericdictionarylist-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classnumericdictionarylist.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classnumericdictionarylistnode-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classnumericdictionarylistnode.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classnumericdictionarynode-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classnumericdictionarynode.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classparameterstring-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classparameterstring.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classpasswdentry-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classpasswdentry.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classpermissions-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classpermissions.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classpipe-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classpipe.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classprocess-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classprocess.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classprotocolentry-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classprotocolentry.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classpseudotty-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classpseudotty.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classrandomnumber-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classrandomnumber.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classrawbuffer-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classrawbuffer.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classregularexpression-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classregularexpression.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classrpcentry-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classrpcentry.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsemaphoreset-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsemaphoreset.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classserialport-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classserialport.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classserialportprofile-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classserialportprofile.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classserver-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classserver.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classserversocket-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classserversocket.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classserviceentry-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classserviceentry.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classshadowentry-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classshadowentry.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsharedmemory-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsharedmemory.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classshellcommand-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classshellcommand.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classshmfile-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classshmfile.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsignalhandler-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsignalhandler.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsignalmanager-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsignalmanager.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsignalset-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsignalset.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsnooze-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsnooze.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classstderrdestination.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classstdoutdestination.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classstringbuffer-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classstringbuffer.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classstringdictionary-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classstringdictionary.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classstringdictionarylist-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classstringdictionarylist.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classstringdictionarylistnode-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classstringdictionarylistnode.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classstringdictionarynode-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classstringdictionarynode.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsyslogdestination-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsyslogdestination.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classsystem.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classthread.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classtimezonefile-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classtimezonefile.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classtty-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classtty.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classunixclientsocket-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classunixclientsocket.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classunixserversocket-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classunixserversocket.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classunixsocketutil-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classunixsocketutil.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classvariablebuffer-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classvariablebuffer.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classwinsock-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classwinsock.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classxmldom-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classxmldom.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classxmldomnode-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classxmldomnode.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classxmlsax-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/classxmlsax.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/clientincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/clientserverfactory_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/clientserverfactoryincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/clientsocket_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/clientsocketincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/closed.png -%%PORTDOCS%%%%DOCSDIR%%/classes/html/commandline_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/commandlineincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/config_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/config_8windows_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/crypt_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/cryptincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/daemonprocess_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/daemonprocessincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/datetime_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/datetimeincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/device_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/deviceincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/dictionary_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/dictionaryincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/dictionaryinlines_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/dictionarynode_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/dictionarynodeinlines_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/directory_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/directoryincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/directorylisting_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/dll_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/classes/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/classes/html/dtd_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/dtdincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/dynamiclib_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/dynamiclibincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/environment_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/environmentincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/error_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/errorincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/file_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/filedescriptor_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/filedescriptorincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/filedestination_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/fileincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/filesystem_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/filesystemincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x62.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x63.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x64.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x65.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x66.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x67.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x68.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x69.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x6b.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x6c.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x6d.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x6e.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x6f.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x70.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x71.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x72.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x73.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x74.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x75.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x76.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x77.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x78.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x7a.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_0x7e.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x62.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x63.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x64.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x65.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x66.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x67.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x68.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x69.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x6b.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x6c.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x6d.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x6e.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x6f.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x70.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x71.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x72.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x73.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x74.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x75.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x76.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x77.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x78.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x7a.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_func_0x7e.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/functions_vars.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/groupentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/groupentryincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/hierarchy.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/hostentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/hostentryincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/inetclientsocket_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/inetclientsocketincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/inetserversocket_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/inetserversocketincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/inetsocketutil_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/inetsocketutilincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/intervaltimer_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/intervaltimerincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/inttypes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/link_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/linkedlist_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/linkedlistincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/linkedlistinlines_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/linkedlistnode_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/linkedlistnodeinlines_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/linkedlistutil_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/linkedlistutilinlines_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/listener_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/listenerincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/logdestination_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/logger_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/loggerincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/loginrecord_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/math_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/mathincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/mathinlines_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/memorymap_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/memorymapincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/memorypool_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/memorypoolincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/messagequeue_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/modemclient_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/modemclientincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/modemserver_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/modemserverincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/modemutil_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/mutex_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/mutexincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/nav_f.png -%%PORTDOCS%%%%DOCSDIR%%/classes/html/nav_h.png -%%PORTDOCS%%%%DOCSDIR%%/classes/html/networkinterface_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/networkinterfaces_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/open.png -%%PORTDOCS%%%%DOCSDIR%%/classes/html/parameterstring_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/parameterstringincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/passwdentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/passwdentryincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/permissions_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/permissionsincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/pipe_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2charstring_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2chat_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2client_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2clientsocket_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2commandline_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2crypt_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2daemonprocess_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2datetime_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2device_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2dictionary_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2directory_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2dtd_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2dynamiclib_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2environment_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2file_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2filedescriptor_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2filesystem_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2groupentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2hostentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2inetclientsocket_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2inetserversocket_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2inetsocketutil_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2intervaltimer_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2link_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2linkedlist_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2listener_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2logger_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2loginrecord_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2memorymap_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2memorypool_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2messagequeue_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2modemclient_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2modemserver_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2mutex_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2parameterstring_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2passwdentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2pipe_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2protocolentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2pseudotty_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2regularexpression_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2rpcentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2semaphoreset_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2serialport_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2serialportprofile_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2serversocket_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2serviceentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2shadowentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2sharedmemory_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2shellcommand_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2shmfile_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2stringbuffer_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2system_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2thread_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2timezonefile_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2tty_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2unixclientsocket_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2unixserversocket_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2unixsocketutil_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2variablebuffer_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2xmldom_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2xmldomnode_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/private_2xmlsax_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/process_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/processincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/protocolentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/protocolentryincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/pseudotty_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/randomnumber_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/randomnumberincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/rawbuffer_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/rawbufferincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/regularexpression_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/regularexpressionincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/resultcodes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/rpcentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/rpcentryincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/rudimentsinlines_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/semaphoreset_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/semaphoresetincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/serialport_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/serialportincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/serialportprofile_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/serialportprofileincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/server_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/serverincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/serversocket_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/serversocketincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/serviceentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/serviceentryincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/shadowentry_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/shadowentryincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/sharedmemory_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/sharedmemoryincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/shellcommand_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/shmfile_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/shmfileincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/signalclasses_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/signalclassesincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/signalhandler_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/signalset_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/snooze_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/snoozeincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/stderrdestination_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/stdoutdestination_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/stringbuffer_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/stringbufferincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/structsockaddr__un-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/structsockaddr__un.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/structtermios-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/structtermios.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/structttinfo-members.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/structttinfo.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/syslogdestination_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/system_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/tab_a.png -%%PORTDOCS%%%%DOCSDIR%%/classes/html/tab_b.png -%%PORTDOCS%%%%DOCSDIR%%/classes/html/tab_h.png -%%PORTDOCS%%%%DOCSDIR%%/classes/html/tab_s.png -%%PORTDOCS%%%%DOCSDIR%%/classes/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/classes/html/thread_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/timezonefile_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/timezonefileincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/tty_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/unixclientsocket_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/unixclientsocketincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/unixserversocket_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/unixserversocketincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/unixsocketutil_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/unixsocketutilincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/variablebuffer_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/variablebufferincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/winsock_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/xmldom_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/xmldomincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/xmldomnode_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/xmldomnodeincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/xmlsax_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/html/xmlsaxincludes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/classes/makedoc -%%PORTDOCS%%%%DOCSDIR%%/css/styles.css -%%PORTDOCS%%%%DOCSDIR%%/guide.html -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/introduction.html -%%PORTDOCS%%%%DOCSDIR%%/invisible.gif -%%PORTDOCS%%%%DOCSDIR%%/programming/baseclasses.html -%%PORTDOCS%%%%DOCSDIR%%/programming/insert.pl -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/character.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/charstring.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/chat.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/commandline.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/crypt.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/daemonprocess.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/datetime.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/device.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/dictionary.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/directory.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/dtd.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/dynamiclib.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/environment.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/error.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/file.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/filesystem.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/groupentry.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/handoff1.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/handoff2.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/handoffclient.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/hostentry.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/inetclientsocket.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/inetclntbench.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/inetsvrbench.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/intervaltimer.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/linkedlist.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/listener.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/lock1.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/lock2.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/logger.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/math.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/memorymap.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/memorypool.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/mutex.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/nonhandoff1.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/nonhandoff2.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/nonhandoffclient.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/oneshotclnt.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/oneshotsvr.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/parameterstring.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/passwdentry.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/permissions.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/process.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/protocolentry.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/randomnumber.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/rawbuffer.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/regularexpression.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/rpcentry.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/semaphoreset1.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/semaphoreset2.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/serialport.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/serialportprofile.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/server.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/serviceentry.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/shadowentry.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/sharedmemory1.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/sharedmemory2.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/shmfile.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/signal.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/snooze.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/sslclnt.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/sslsvr.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/stringbuffer.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/timezonefile.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/unixclientsocket.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/variablebuffer.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/xattr.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/xmld.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/parts/xmls.C.html -%%PORTDOCS%%%%DOCSDIR%%/programming/utilclasses.html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/programming/parts -%%PORTDOCS%%@dirrm %%DOCSDIR%%/programming -%%PORTDOCS%%@dirrm %%DOCSDIR%%/css -%%PORTDOCS%%@dirrm %%DOCSDIR%%/classes/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/classes -%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm include/rudiments/private @dirrm include/rudiments >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7572A1065687 for ; Tue, 25 Sep 2012 18:10:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 50E588FC24 for ; Tue, 25 Sep 2012 18:10:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAKUA019323 for ; Tue, 25 Sep 2012 18:10:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAKj8019313; Tue, 25 Sep 2012 18:10:20 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:20 GMT Resent-Message-Id: <201209251810.q8PIAKj8019313@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1936106566C for ; Tue, 25 Sep 2012 18:03:43 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 74C818FC15 for ; Tue, 25 Sep 2012 18:03:43 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 4AB4D34037 for ; Wed, 26 Sep 2012 03:03:39 +0900 (JST) Message-Id: <20120926022216.0873184d0f67deb72843d2e3@yahoo.com> Date: Wed, 26 Sep 2012 02:22:16 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171990: devel/sdts++: Fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:21 -0000 >Number: 171990 >Category: ports >Synopsis: devel/sdts++: Fix build >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:19 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Fix build New file: files/patch-sdts++__io__FormatParset.yy files/patch-sdts++__io__sio_8211Converter.cpp files/patch-sdts++__io__sio_8211DDRField.cpp files/patch-sdts++__io__sio_Utils.cpp files/patch-sysutils__t_basename.cpp files/patch-sysutils__t_dirname.cpp files/patch-sysutils__t_stringutils.cpp Remove file: files/patch-ac files/patch-configure.in files/patch-sdts++-io-sio_8211Converter.h >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/sdts++/Makefile devel/sdts++/Makefile --- /usr/ports/devel/sdts++/Makefile 2012-05-29 05:59:15.000000000 +0900 +++ devel/sdts++/Makefile 2012-09-25 03:21:04.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: sdts++ -# Date created: 08 Feb 2000 -# Whom: erik@habatech.no -# +# Created by: erik@habatech.no # $FreeBSD: ports/devel/sdts++/Makefile,v 1.28 2012/05/28 20:59:15 pav Exp $ -# PORTNAME= sdts++ PORTVERSION= 1.5.1 @@ -15,16 +11,17 @@ MAINTAINER= ports@FreeBSD.org COMMENT= C++ library for SDTS related development -LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost-libs +LIB_DEPENDS= boost_thread:${PORTSDIR}/devel/boost-libs -BROKEN= does not compile - -USE_AUTOTOOLS= libtool +USE_DOS2UNIX= sdts++/io/sio_Utils.cpp USE_GMAKE= yes -GNU_CONFIGURE= yes -USE_LDCONFIG= yes +USE_AUTOTOOLS= libtoolize aclocal automake autoconf +LIBTOOLIZE_ARGS=--copy --force +ACLOCAL_ARGS= -I ${LOCALBASE}/share/aclocal +AUTOMAKE_ARGS= --add-missing --copy --foreign CONFIGURE_ARGS= --with-boost=${LOCALBASE}/include -MAKE_ARGS= CXX="${CXX}" +USE_LDCONFIG= yes +MAKE_JOBS_SAFE= yes INFO= sdts++ diff -urN /usr/ports/devel/sdts++/files/patch-ac devel/sdts++/files/patch-ac --- /usr/ports/devel/sdts++/files/patch-ac 2003-12-14 01:27:51.000000000 +0900 +++ devel/sdts++/files/patch-ac 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- sdts++/Makefile.in.orig Sat Dec 13 14:19:23 2003 -+++ sdts++/Makefile.in Sat Dec 13 14:21:14 2003 -@@ -147,7 +147,7 @@ - - AUTOMAKE_OPTIONS := subdir-objects - --AM_CPPFLAGS := -I. -I.. -Icontainer -Iio -Ibuilder -Ilogical -I${prefix}/include -I${BOOST_HEADER} -+AM_CPPFLAGS := -I. -I.. -Icontainer -Iio -Ibuilder -Ilogical -I${prefix}/include -I${BOOST_HEADER} -I${BOOST_HEADER}/stlport - - container_sources := container/sc_Subfield.cpp \ - container/sc_Field.cpp \ diff -urN /usr/ports/devel/sdts++/files/patch-configure.in devel/sdts++/files/patch-configure.in --- /usr/ports/devel/sdts++/files/patch-configure.in 2012-05-17 01:09:15.000000000 +0900 +++ devel/sdts++/files/patch-configure.in 1970-01-01 09:00:00.000000000 +0900 @@ -1,31 +0,0 @@ ---- configure.in.orig 2012-03-11 19:45:25.000000000 +0300 -+++ configure.in 2012-03-11 19:46:08.000000000 +0300 -@@ -23,13 +23,6 @@ - - AC_HEADER_STAT - --dnl --dnl see if std::vector::iterator == char * --dnl --AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]], [[ --char v[2]; --std::vector::iterator i = &v[0]; --]])],[],[AC_DEFINE(VECTOR_ITERATOR_POINTER_NOT_EQUIVALENT) ]) - - dnl program checks - -@@ -93,6 +86,14 @@ - export BOOST_HEADER - - -+dnl -+dnl see if std::vector::iterator == char * -+dnl -+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]], [[ -+char const v[2]; -+std::vector::const_iterator i = &v[0]; -+]])],[],[AC_DEFINE(VECTOR_ITERATOR_POINTER_NOT_EQUIVALENT) ]) -+ - - dnl - dnl let's make sure the sysutils package is happy diff -urN /usr/ports/devel/sdts++/files/patch-sdts++-io-sio_8211Converter.h devel/sdts++/files/patch-sdts++-io-sio_8211Converter.h --- /usr/ports/devel/sdts++/files/patch-sdts++-io-sio_8211Converter.h 2012-05-17 01:09:15.000000000 +0900 +++ devel/sdts++/files/patch-sdts++-io-sio_8211Converter.h 1970-01-01 09:00:00.000000000 +0900 @@ -1,54 +0,0 @@ ---- sdts++/io/sio_8211Converter.h.orig 2002-12-03 21:48:05.000000000 +0300 -+++ sdts++/io/sio_8211Converter.h 2012-03-11 19:56:04.000000000 +0300 -@@ -51,14 +51,16 @@ - char const* data, - long bitLength) const = 0; - --#ifdef VECTOR_ITERATOR_POINTER_NOT_EQUIVALENT -- long makeFixedSubfield(sc_Subfield& subfield, -- std::vector::const_iterator & data, -- long bitLength) const -- { -- return makeFixedSubfield( subfield, &data[0], bitLength ); -- } --#endif -+// The overload, incorrectly permitted by Autoconf, is disabled -+ -+// #ifdef VECTOR_ITERATOR_POINTER_NOT_EQUIVALENT -+// long makeFixedSubfield(sc_Subfield& subfield, -+// std::vector::const_iterator & data, -+// long bitLength) const -+// { -+// return makeFixedSubfield( subfield, &data[0], bitLength ); -+// } -+// #endif - - /// Variable width subfields - /** Returns the length of the data converted. This does not__ included -@@ -68,15 +70,17 @@ - long maxLength, - char delimiter) const; - --#ifdef VECTOR_ITERATOR_POINTER_NOT_EQUIVALENT -- long makeVarSubfield(sc_Subfield& subfield, -- std::vector::const_iterator & data, -- long maxLength, -- char delimiter) const -- { -- return makeVarSubfield( subfield, &data[0], maxLength, delimiter ); -- } --#endif -+// The overload, incorrectly permitted by Autoconf, is disabled -+ -+// #ifdef VECTOR_ITERATOR_POINTER_NOT_EQUIVALENT -+// long makeVarSubfield(sc_Subfield& subfield, -+// std::vector::const_iterator & data, -+// long maxLength, -+// char delimiter) const -+// { -+// return makeVarSubfield( subfield, &data[0], maxLength, delimiter ); -+// } -+// #endif - - /// Adds a "null field" (adds an end-of-field character) to the buffer. - virtual long addEmptySubfield(sio_Buffer& buffer) const; diff -urN /usr/ports/devel/sdts++/files/patch-sdts++__io__FormatParset.yy devel/sdts++/files/patch-sdts++__io__FormatParset.yy --- /usr/ports/devel/sdts++/files/patch-sdts++__io__FormatParset.yy 1970-01-01 09:00:00.000000000 +0900 +++ devel/sdts++/files/patch-sdts++__io__FormatParset.yy 2012-09-12 16:56:42.000000000 +0900 @@ -0,0 +1,13 @@ +--- sdts++/io/FormatParser.yy.orig 2002-10-08 05:44:24.000000000 +0900 ++++ sdts++/io/FormatParser.yy 2012-09-12 16:53:19.000000000 +0900 +@@ -71,6 +71,10 @@ + + #include + ++#include ++ ++#include ++ + #ifndef INCLUDED_SIO8211FIELDFORMAT_H + #include "sdts++/io/sio_8211FieldFormat.h" + #endif diff -urN /usr/ports/devel/sdts++/files/patch-sdts++__io__sio_8211Converter.cpp devel/sdts++/files/patch-sdts++__io__sio_8211Converter.cpp --- /usr/ports/devel/sdts++/files/patch-sdts++__io__sio_8211Converter.cpp 1970-01-01 09:00:00.000000000 +0900 +++ devel/sdts++/files/patch-sdts++__io__sio_8211Converter.cpp 2012-09-12 16:57:21.000000000 +0900 @@ -0,0 +1,10 @@ +--- sdts++/io/sio_8211Converter.cpp.orig 2002-11-25 07:07:43.000000000 +0900 ++++ sdts++/io/sio_8211Converter.cpp 2012-09-12 16:47:10.000000000 +0900 +@@ -16,6 +16,7 @@ + + #include + #include ++#include + + #include + diff -urN /usr/ports/devel/sdts++/files/patch-sdts++__io__sio_8211DDRField.cpp devel/sdts++/files/patch-sdts++__io__sio_8211DDRField.cpp --- /usr/ports/devel/sdts++/files/patch-sdts++__io__sio_8211DDRField.cpp 1970-01-01 09:00:00.000000000 +0900 +++ devel/sdts++/files/patch-sdts++__io__sio_8211DDRField.cpp 2012-09-12 16:57:52.000000000 +0900 @@ -0,0 +1,10 @@ +--- sdts++/io/sio_8211DDRField.cpp.orig 2002-11-25 07:07:43.000000000 +0900 ++++ sdts++/io/sio_8211DDRField.cpp 2012-09-12 16:48:13.000000000 +0900 +@@ -18,6 +18,7 @@ + #endif + + #include ++#include + + + diff -urN /usr/ports/devel/sdts++/files/patch-sdts++__io__sio_Utils.cpp devel/sdts++/files/patch-sdts++__io__sio_Utils.cpp --- /usr/ports/devel/sdts++/files/patch-sdts++__io__sio_Utils.cpp 1970-01-01 09:00:00.000000000 +0900 +++ devel/sdts++/files/patch-sdts++__io__sio_Utils.cpp 2012-09-12 17:02:29.000000000 +0900 @@ -0,0 +1,10 @@ +--- sdts++/io/sio_Utils.cpp.orig 2002-10-08 05:44:24.000000000 +0900 ++++ sdts++/io/sio_Utils.cpp 2012-09-12 16:50:32.000000000 +0900 +@@ -15,6 +15,7 @@ + #endif + + #include ++#include + + + diff -urN /usr/ports/devel/sdts++/files/patch-sysutils__t_basename.cpp devel/sdts++/files/patch-sysutils__t_basename.cpp --- /usr/ports/devel/sdts++/files/patch-sysutils__t_basename.cpp 1970-01-01 09:00:00.000000000 +0900 +++ devel/sdts++/files/patch-sysutils__t_basename.cpp 2012-09-12 16:58:37.000000000 +0900 @@ -0,0 +1,10 @@ +--- sysutils/t_basename.cpp.orig 2002-11-27 09:21:34.000000000 +0900 ++++ sysutils/t_basename.cpp 2012-09-12 16:55:05.000000000 +0900 +@@ -3,6 +3,7 @@ + // + + #include ++#include + + #include "fileutils.h" + diff -urN /usr/ports/devel/sdts++/files/patch-sysutils__t_dirname.cpp devel/sdts++/files/patch-sysutils__t_dirname.cpp --- /usr/ports/devel/sdts++/files/patch-sysutils__t_dirname.cpp 1970-01-01 09:00:00.000000000 +0900 +++ devel/sdts++/files/patch-sysutils__t_dirname.cpp 2012-09-12 16:58:50.000000000 +0900 @@ -0,0 +1,10 @@ +--- sysutils/t_dirname.cpp.orig 2002-11-27 09:21:34.000000000 +0900 ++++ sysutils/t_dirname.cpp 2012-09-12 16:54:58.000000000 +0900 +@@ -3,6 +3,7 @@ + // + + #include ++#include + + #include "fileutils.h" + diff -urN /usr/ports/devel/sdts++/files/patch-sysutils__t_stringutils.cpp devel/sdts++/files/patch-sysutils__t_stringutils.cpp --- /usr/ports/devel/sdts++/files/patch-sysutils__t_stringutils.cpp 1970-01-01 09:00:00.000000000 +0900 +++ devel/sdts++/files/patch-sysutils__t_stringutils.cpp 2012-09-12 16:59:13.000000000 +0900 @@ -0,0 +1,10 @@ +--- sysutils/t_stringutils.cpp.orig 2001-07-18 05:50:15.000000000 +0900 ++++ sysutils/t_stringutils.cpp 2012-09-12 16:44:29.000000000 +0900 +@@ -5,6 +5,7 @@ + #include + #include + #include ++#include + + using namespace std; + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3487F1065672 for ; Tue, 25 Sep 2012 18:10:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A2BC28FC1C for ; Tue, 25 Sep 2012 18:10:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAKeE019399 for ; Tue, 25 Sep 2012 18:10:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAKZF019395; Tue, 25 Sep 2012 18:10:20 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:20 GMT Resent-Message-Id: <201209251810.q8PIAKZF019395@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D856106566B for ; Tue, 25 Sep 2012 18:03:48 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 44D4C8FC17 for ; Tue, 25 Sep 2012 18:03:48 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 0180234037 for ; Wed, 26 Sep 2012 03:03:45 +0900 (JST) Message-Id: <20120926022220.5adcaac79dee1e90e883ba70@yahoo.com> Date: Wed, 26 Sep 2012 02:22:20 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171991: editors/uemacs: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:21 -0000 >Number: 171991 >Category: ports >Synopsis: editors/uemacs: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:20 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line >How-To-Repeat: >Fix: diff -urN /usr/ports/editors/uemacs/Makefile editors//uemacs/Makefile --- /usr/ports/editors/uemacs/Makefile 2012-09-21 15:52:44.000000000 +0900 +++ editors//uemacs/Makefile 2012-09-25 17:14:48.000000000 +0900 @@ -1,28 +1,23 @@ -# New ports collection makefile for: MicroEmacs -# Date created: 16 Jan 1995 -# Whom: Thomas Gellekum -# +# Created by: Thomas Gellekum # $FreeBSD: ports/editors/uemacs/Makefile,v 1.21 2012/09/21 06:52:44 bapt Exp $ -# PORTNAME= uemacs PORTVERSION= 4.0 CATEGORIES= editors -MASTER_SITES= http://uemacs.tripod.com/ \ +MASTER_SITES= http://debian.uni-duisburg-essen.de/misc/memacs/disk2/ \ + http://www.hpcc.ecs.soton.ac.uk/software/uemacs400/disk2/ \ ftp://aquest.com/pub/uemacs400/disk2/ DISTNAME= ue400dev MAINTAINER= ports@FreeBSD.org COMMENT= A full screen editor -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 - NO_CDROM= "Resale allowed for media cost only" NO_WRKSUBDIR= yes USE_ZIP= yes EXTRACT_BEFORE_ARGS= -Laq +MAKE_JOBS_SAFE= yes post-patch: @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/src/*.c diff -urN /usr/ports/editors/uemacs/pkg-descr editors//uemacs/pkg-descr --- /usr/ports/editors/uemacs/pkg-descr 1996-10-16 15:53:52.000000000 +0900 +++ editors//uemacs/pkg-descr 2011-08-11 19:58:12.000000000 +0900 @@ -1,17 +1,18 @@ - MicroEMACS is a tool for creating and changing documents, -programs, and other text files. It is both relatively easy for the -novice to use, but also very powerful in the hands of an expert. -MicroEMACS can be extensively customized for the needs of the individual -user. +MicroEMACS is a tool for creating and changing documents, programs, +and other text files. It is both relatively easy for the novice to +use, but also very powerful in the hands of an expert. MicroEMACS +can be extensively customized for the needs of the individual user. - MicroEMACS allows several files to be edited at the same time. -The screen can be split into different windows and screens, and text may -be moved freely from one window on any screen to the next. Depending on -the type of file being edited, MicroEMACS can change how it behaves to -make editing simple. Editing standard text files, program files and -word processing documents are all possible at the same time. +MicroEMACS allows several files to be edited at the same time. The +screen can be split into different windows and screens, and text may +be moved freely from one window on any screen to the next. Depending +on the type of file being edited, MicroEMACS can change how it behaves +to make editing simple. Editing standard text files, program files +and word processing documents are all possible at the same time. - There are extensive capabilities to make word processing and -editing easier. These include commands for string searching and -replacing, paragraph reformatting and deleting, automatic word wrapping, -word move and deletes, easy case controlling, and automatic word counts. +There are extensive capabilities to make word processing and editing +easier. These include commands for string searching and replacing, +paragraph reformatting and deleting, automatic word wrapping, word +move and deletes, easy case controlling, and automatic word counts. + +WWW: http://www.aquest.com/emacs.htm >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5724C1065670 for ; Tue, 25 Sep 2012 18:10:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 09A358FC26 for ; Tue, 25 Sep 2012 18:10:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAKfu019489 for ; Tue, 25 Sep 2012 18:10:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAKwQ019478; Tue, 25 Sep 2012 18:10:20 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:20 GMT Resent-Message-Id: <201209251810.q8PIAKwQ019478@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B309E1065672 for ; Tue, 25 Sep 2012 18:03:54 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id 584D98FC08 for ; Tue, 25 Sep 2012 18:03:54 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id B1EC623C036 for ; Wed, 26 Sep 2012 03:03:50 +0900 (JST) Message-Id: <20120926022224.f1142ca1763dee7485f021b4@yahoo.com> Date: Wed, 26 Sep 2012 02:22:24 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171992: emulators/bochs: Update to version 2.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:21 -0000 >Number: 171992 >Category: ports >Synopsis: emulators/bochs: Update to version 2.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:20 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 2.6 New file files/patch-iodev__network__eth_fbsd.cc Remove file: files/patch-iodev-eth_fbsd.cc >How-To-Repeat: >Fix: diff -urN /usr/ports/emulators/bochs/Makefile emulators/bochs/Makefile --- /usr/ports/emulators/bochs/Makefile 2012-06-08 20:58:48.000000000 +0900 +++ emulators/bochs/Makefile 2012-09-25 03:21:14.000000000 +0900 @@ -1,13 +1,8 @@ -# Ports collection makefile for: bochs -# Date created: 16 December 1997 -# Whom: alex -# +# Created by: alex # $FreeBSD: ports/emulators/bochs/Makefile,v 1.95 2012/06/08 11:58:48 madpilot Exp $ -# PORTNAME= bochs -PORTVERSION= 2.5.1 -PORTREVISION= 1 +PORTVERSION= 2.6 PORTEPOCH= 2 CATEGORIES= emulators MASTER_SITES= SF @@ -16,17 +11,21 @@ COMMENT= An IA-32 (x86) PC emulator that runs DOS, Win 95, and more LICENSE= LGPL21 -LICENSE_FILE= ${WRKSRC}/COPYING -OPTIONS_DEFINE= A20_PIN ALIGN_CHECK ASSERT_CHECK CDROM CHAINING CLGD54XX CONF_MSRS CPP_SUFX \ - DEBUG DEBUGGER_X86 DISASM DOCS ES1370 FAST_FUNCCALL FPU GAMEPORT IDLE_HACK \ - INSTRUMENT IODEBUG LARGE_RAMFILE LOGGING LONG_PHY_ADDR MISALIGNEDSSE MWAIT NE2000 \ - OPTIMIZATIONS PCI PLUGINS PNIC RAW_SERIAL READLINE REPEAT_SPEED RFB SB16 SDL \ - SHOW_IPS SMP SVGA TERM USB USB_OHCI USB_XHCI VMX WX X11 X86_64 XPM +OPTIONS_DEFINE= A20_PIN ALIGN_CHECK ASSERT_CHECK \ + CDROM CHAINING CLGD54XX CONF_MSRS CPP_SUFX \ + DEBUG DEBUGGER_X86 DISASM DOCS \ + E1000 ES1370 FAST_FUNCCALL FPU \ + GAMEPORT IDLE_HACK IODEBUG \ + LARGE_RAMFILE LOGGING LONG_PHY_ADDR \ + MISALIGNEDSSE MWAIT NE2000 OPTIMIZATIONS PCI PLUGINS PNIC \ + RAW_SERIAL READLINE REPEAT_SPEED RFB \ + SB16 SDL SHOW_IPS SMP SVGA SVM TERM USB USB_OHCI USB_XHCI \ + VMX WX X11 X86_64 XPM OPTIONS_SINGLE= DEBUG OPTIONS_SINGLE_DEBUG= DEBUGGER GDB_STUB -OPTIONS_DEFAULT= A20_PIN ALIGN_CHECK CDROM CONF_MSRS DISASM FPU LOGGING NE2000 \ - OPTIMIZATIONS SB16 X11 +OPTIONS_DEFAULT=A20_PIN ALIGN_CHECK CDROM CONF_MSRS DISASM FPU LOGGING \ + NE2000 OPTIMIZATIONS SB16 X11 A20_PIN_DESC= Enable support for A20 pin ALIGN_CHECK_DESC= Enable alignment check support @@ -40,13 +39,13 @@ DEBUGGER_DESC= Enable debugger support DEBUGGER_X86_DESC= Enable x86 hardware debugger DISASM_DESC= Enable disassemler support +E1000_DESC= Enable Intel(R) Gigabit Ethernet support ES1370_DESC= Enable ES1370 soundcard support FAST_FUNCCALL_DESC= Enable fast function calls support (x86 only) FPU_DESC= Enable FPU emulator GAMEPORT_DESC= Enable standard PC gameport support GDB_STUB_DESC= Enable GDB stub support IDLE_HACK_DESC= Keep Bochs from using all CPU time -INSTRUMENT_DESC= Enable support for instrumentation IODEBUG_DESC= Enable I/O interface to debugger LARGE_RAMFILE_DESC= Enable large ramfile support LOGGING_DESC= Enable logging @@ -67,6 +66,7 @@ SHOW_IPS_DESC= Enable logging of measured IPS SMP_DESC= Enable SMP simulation support (CPU level 6) SVGA_DESC= Enable SVGAlib support +SVM_DESC= Enable SVM (AMD: secure virtual machine) emulation TERM_DESC= Use text only, console based interface USB_DESC= Enable limited USB UHCI support USB_OHCI_DESC= Enable limited USB OHCI support @@ -78,7 +78,7 @@ USE_GMAKE= yes USE_AUTOTOOLS= libtool -CONFIGURE_ARGS= --disable-docbook +CONFIGURE_ARGS= --disable-docbook --disable-instrumentation MAKE_JOBS_SAFE= yes CFLAGS+= -fno-exceptions -fomit-frame-pointer ${CPPFLAGS} @@ -94,7 +94,7 @@ .include -.if !${PORT_OPTIONS:MTERM} && !${PORT_OPTIONS:MWX} && ${PORT_OPTIONS:MX!!} +.if !${PORT_OPTIONS:MTERM} && !${PORT_OPTIONS:MWX} && !${PORT_OPTIONS:MX11} CONFIGURE_ARGS+=--with-nogui .endif @@ -164,6 +164,18 @@ CONFIGURE_ARGS+=--disable-disasm .endif +.if ${PORT_OPTIONS:ME1000} +CONFIGURE_ARGS+=--enable-e1000 +.else +CONFIGURE_ARGS+=--disable-e1000 +.endif + +.if ${PORT_OPTIONS:MES1370} +CONFIGURE_ARGS+=--enable-es1370 +.else +CONFIGURE_ARGS+=--disable-es1370 +.endif + .if ${PORT_OPTIONS:MFAST_FUNCCALL} CONFIGURE_ARGS+=--enable-fast-function-calls .else @@ -194,13 +206,6 @@ CONFIGURE_ARGS+=--disable-idle-hack .endif -.if ${PORT_OPTIONS:MINSTRUMENT} -BROKEN= currently unbuildable -CONFIGURE_ARGS+=--enable-instrumentation -.else -CONFIGURE_ARGS+=--disable-instrumentation -.endif - .if ${PORT_OPTIONS:MIODEBUG} CONFIGURE_ARGS+=--enable-iodebug .else @@ -274,6 +279,7 @@ .endif .if ${PORT_OPTIONS:MREADLINE} +USE_READLINE= yes CONFIGURE_ARGS+=--enable-readline .else CONFIGURE_ARGS+=--disable-readline @@ -312,12 +318,22 @@ .endif .if ${PORT_OPTIONS:MSVGA} -LIB_DEPENDS+= vga.1:${PORTSDIR}/graphics/svgalib +LIB_DEPENDS+= vga:${PORTSDIR}/graphics/svgalib CONFIGURE_ARGS+=--with-svga +.else +CONFIGURE_ARGS+=--without-svga +.endif + +.if ${PORT_OPTIONS:MSVM} +CONFIGURE_ARGS+=--enable-svm +.else +CONFIGURE_ARGS+=--disable-svm .endif .if ${PORT_OPTIONS:MTERM} CONFIGURE_ARGS+=--with-term +.else +CONFIGURE_ARGS+=--without-term .endif .if ${PORT_OPTIONS:MUSB} @@ -379,7 +395,7 @@ .endif .if ${PORT_OPTIONS:MSB16} || ${PORT_OPTIONS:MES1370} -LIB_DEPENDS+= asound.2:${PORTSDIR}/audio/alsa-lib +LIB_DEPENDS+= asound:${PORTSDIR}/audio/alsa-lib CONFIGURE_ENV+= SOUND_LINK_OPTS="-L${LOCALBASE}/lib" .endif diff -urN /usr/ports/emulators/bochs/distinfo emulators/bochs/distinfo --- /usr/ports/emulators/bochs/distinfo 2012-01-29 02:50:20.000000000 +0900 +++ emulators/bochs/distinfo 2012-09-03 23:32:49.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (bochs-2.5.1.tar.gz) = 8d3f2ccd8fc3df2aff7ea370afc521cadd4a4f545faf6b0421013453ce3ea26e -SIZE (bochs-2.5.1.tar.gz) = 4126651 +SHA256 (bochs-2.6.tar.gz) = 65123e44a6d2c1148d741da025d16311b9ccd600ef268b911aba73c67eaf86e1 +SIZE (bochs-2.6.tar.gz) = 4212828 diff -urN /usr/ports/emulators/bochs/files/patch-iodev-eth_fbsd.cc emulators/bochs/files/patch-iodev-eth_fbsd.cc --- /usr/ports/emulators/bochs/files/patch-iodev-eth_fbsd.cc 2006-11-20 00:09:53.000000000 +0900 +++ emulators/bochs/files/patch-iodev-eth_fbsd.cc 1970-01-01 09:00:00.000000000 +0900 @@ -1,17 +0,0 @@ ---- iodev/eth_fbsd.cc.orig Sat Dec 10 19:37:35 2005 -+++ iodev/eth_fbsd.cc Sun Nov 19 15:56:46 2006 -@@ -227,6 +227,14 @@ - return; - } - -+ v = 1; -+ if (ioctl(this->bpf_fd, BIOCIMMEDIATE, &v) < 0) { -+ BX_PANIC(("eth_freebsd: could not enable immediate mode")); -+ close(this->bpf_fd); -+ this->bpf_fd = -1; -+ return; -+ } -+ - // Set up non-blocking i/o - v = 1; - if (ioctl(this->bpf_fd, FIONBIO, &v) < 0) { diff -urN /usr/ports/emulators/bochs/files/patch-iodev__network__eth_fbsd.cc emulators/bochs/files/patch-iodev__network__eth_fbsd.cc --- /usr/ports/emulators/bochs/files/patch-iodev__network__eth_fbsd.cc 1970-01-01 09:00:00.000000000 +0900 +++ emulators/bochs/files/patch-iodev__network__eth_fbsd.cc 2012-09-03 23:44:06.000000000 +0900 @@ -0,0 +1,17 @@ +--- iodev/network/eth_fbsd.cc.orig 2012-09-02 20:30:11.000000000 +0900 ++++ iodev/network/eth_fbsd.cc 2012-09-03 23:41:03.000000000 +0900 +@@ -235,6 +235,14 @@ + return; + } + ++ v = 1; ++ if (ioctl(this->bpf_fd, BIOCIMMEDIATE, &v) < 0) { ++ BX_PANIC(("eth_freebsd: could not enable immediate mode")); ++ close(this->bpf_fd); ++ this->bpf_fd = -1; ++ return; ++ } ++ + // Set up non-blocking i/o + v = 1; + if (ioctl(this->bpf_fd, FIONBIO, &v) < 0) { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83DB2106568A for ; Tue, 25 Sep 2012 18:10:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5BE5F8FC2A for ; Tue, 25 Sep 2012 18:10:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIALvV019564 for ; Tue, 25 Sep 2012 18:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIALTh019559; Tue, 25 Sep 2012 18:10:21 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:21 GMT Resent-Message-Id: <201209251810.q8PIALTh019559@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2DE40106566C for ; Tue, 25 Sep 2012 18:03:59 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id F24518FC0A for ; Tue, 25 Sep 2012 18:03:58 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id E97972BC03E for ; Wed, 26 Sep 2012 03:03:56 +0900 (JST) Message-Id: <20120926022227.278d45d3ca1c50ed391b5d98@yahoo.com> Date: Wed, 26 Sep 2012 02:22:27 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171993: emulators/catapult: Update to version 0.9.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:21 -0000 >Number: 171993 >Category: ports >Synopsis: emulators/catapult: Update to version 0.9.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:21 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.9.0 >How-To-Repeat: >Fix: diff -urN /usr/ports/emulators/catapult/Makefile emulators/catapult/Makefile --- /usr/ports/emulators/catapult/Makefile 2012-06-01 14:18:12.000000000 +0900 +++ emulators/catapult/Makefile 2012-09-25 03:21:21.000000000 +0900 @@ -1,14 +1,8 @@ -# New ports collection makefile for: emulators/catapult -# Date created: 14 November 2007 -# Whom: Martin Tournoij -# -# $Carpetsmoker: ports/emulators/catapult/Makefile,v 1.2 2008/07/21 12:54:29 carpetsmoker Exp $ +# Created by: Martin Tournoij # $FreeBSD: ports/emulators/catapult/Makefile,v 1.14 2012/06/01 05:18:12 dinoex Exp $ -# PORTNAME= catapult -PORTVERSION= 0.8.2 -PORTREVISION= 1 +PORTVERSION= 0.9.0 CATEGORIES= emulators MASTER_SITES= SF/openmsx/openmsx/${PORTVERSION} DISTNAME= openmsx-${PORTNAME}-${PORTVERSION} @@ -21,6 +15,8 @@ BUILD_DEPENDS= openmsx:${PORTSDIR}/emulators/openmsx RUN_DEPENDS= openmsx:${PORTSDIR}/emulators/openmsx +OPTIONS_DEFINE= DEBUG DOCS + USE_GNOME= libxml2 USE_WX= 2.6+ USE_PYTHON_BUILD=yes @@ -32,15 +28,18 @@ CATAPULT_OPENMSX_BINARY="${LOCALBASE}/bin/openmsx" \ CATAPULT_OPENMSX_SHARE="${LOCALBASE}/share/openmsx" \ SYMLINK_FOR_BINARY="false" +MAKE_JOBS_SAFE= yes + +.include -.if defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} +MAKE_ARGS+= INSTALL_DOC_DIR="${DOCSDIR}" +.else # Use dummy target rather than rewriting makefile MAKE_ARGS+= INSTALL_DOC_DIR="${WRKSRC}/dummy" -.else -MAKE_ARGS+= INSTALL_DOC_DIR="${DOCSDIR}" .endif -.if defined(WITH_DEBUG) +.if ${PORT_OPTIONS:MDEBUG} CFLAGS+= -DDEBUG CATAPULT_STRIP= false .else @@ -51,10 +50,11 @@ post-patch: @${REINPLACE_CMD} 's|INSTALL_BASE|INSTALL_SHARE_DIR|' \ ${WRKSRC}/build/info2code.mk -.for FILE in build/main.mk build/probe.mk - @${REINPLACE_CMD} 's|@$$(CXX)|$$(CXX)| ; \ - s|wx-config|${WX_CONFIG}|g' ${WRKSRC}/${FILE} -.endfor + @${REINPLACE_CMD} '/--no-strict-aliasing/s|^CXXFLAGS|#CXXFLAGS| ; \ + /--cxx/s|^CXX|#CXX| ; \ + s|@$$(CXX)|$$(CXX)|' ${WRKSRC}/build/main.mk + @${REINPLACE_CMD} 's|wx-config --|${WX_CONFIG:T} --|g' \ + ${WRKSRC}/build/probe.mk @${ECHO_CMD} > ${WRKSRC}/build/flavour-portbld.mk @${ECHO_CMD} 'CXXFLAGS+=${CXXFLAGS}' \ >> ${WRKSRC}/build/flavour-portbld.mk diff -urN /usr/ports/emulators/catapult/distinfo emulators/catapult/distinfo --- /usr/ports/emulators/catapult/distinfo 2012-02-20 08:24:55.000000000 +0900 +++ emulators/catapult/distinfo 2012-08-13 15:38:45.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (openmsx-catapult-0.8.2.tar.gz) = 9168b0c88d4d2a3b76691fd4b995f464de8365ec882f0ea3948a833ea783dddd -SIZE (openmsx-catapult-0.8.2.tar.gz) = 1284311 +SHA256 (openmsx-catapult-0.9.0.tar.gz) = f189ae9b9934467944ec03cb21d1ace55d4ae1f45265bde1508d5293c6cd7f26 +SIZE (openmsx-catapult-0.9.0.tar.gz) = 1284318 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF79010656B0 for ; Tue, 25 Sep 2012 18:10:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AEEC78FC0A for ; Tue, 25 Sep 2012 18:10:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAL3U019644 for ; Tue, 25 Sep 2012 18:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIALtX019636; Tue, 25 Sep 2012 18:10:21 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:21 GMT Resent-Message-Id: <201209251810.q8PIALtX019636@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3457B1065670 for ; Tue, 25 Sep 2012 18:04:06 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id CA35F8FC16 for ; Tue, 25 Sep 2012 18:04:05 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 5BAC434037 for ; Wed, 26 Sep 2012 03:04:01 +0900 (JST) Message-Id: <20120926022231.ab5c559e5ecabc120e41d97b@yahoo.com> Date: Wed, 26 Sep 2012 02:22:31 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171994: emulators/mame: Update to version 0.147 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:22 -0000 >Number: 171994 >Category: ports >Synopsis: emulators/mame: Update to version 0.147 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:21 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.147 >How-To-Repeat: >Fix: diff -urN /usr/ports/emulators/mame/Makefile emulators/mame/Makefile --- /usr/ports/emulators/mame/Makefile 2012-06-18 05:23:48.000000000 +0900 +++ emulators/mame/Makefile 2012-09-26 00:18:02.000000000 +0900 @@ -1,12 +1,8 @@ -# New ports collection makefile for: sdlmame -# Date created: 2007-01-10 -# Whom: alepulver -# +# Created by: alepulver # $FreeBSD: ports/emulators/mame/Makefile,v 1.43 2012/06/17 20:23:48 sylvio Exp $ -# PORTNAME= mame -PORTVERSION= 0.146${PATCHSUFFIX} +PORTVERSION= 0.147${PATCHSUFFIX} CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}.mirror/${PORTNAME:U}%20${PORTVERSION} \ http://mame.mirrors.zippykid.com/releases/ \ @@ -38,7 +34,8 @@ USE_GCC= 4.6+ USE_GMAKE= yes MAKE_ENV= NOWERROR=1 OPTIMIZE=0 USE_NETWORK=1 \ - OPT_FLAGS="${CXXFLAGS}" GCC_LDFLAGS="${LDFLAGS}" + OPT_FLAGS="${CXXFLAGS}" GCC_LDFLAGS="${LDFLAGS}" \ + TARGET="${PORTNAME}" MAKEFILE= makefile MAKE_JOBS_SAFE= yes @@ -110,8 +107,8 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin @${MKDIR} ${PREFIX}/libexec/${PORTNAME} -.for FILE in chdman jedutil ldresample ldverify romcmp testkeys unidasm - ${INSTALL_PROGRAM} ${WRKSRC}/${FILE} ${PREFIX}/libexec/${PORTNAME} +.for F in chdman jedutil ldresample ldverify romcmp testkeys unidasm + ${INSTALL_PROGRAM} ${WRKSRC}/${F} ${PREFIX}/libexec/${PORTNAME} .endfor @${MKDIR} ${DATADIR} @(cd ${WRKSRC} && ${COPYTREE_SHARE} artwork ${DATADIR}) @@ -119,7 +116,6 @@ @(cd ${WRKSRC}/src/osd/sdl && ${COPYTREE_SHARE} keymaps ${DATADIR}) .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/*.txt ${DOCSDIR} @(cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${DOCSDIR}) .endif .if ${PORT_OPTIONS:MEXAMPLES} diff -urN /usr/ports/emulators/mame/distinfo emulators/mame/distinfo --- /usr/ports/emulators/mame/distinfo 2012-06-18 05:23:48.000000000 +0900 +++ emulators/mame/distinfo 2012-09-19 15:28:30.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (mame/mame0146s.zip) = d6a61febbafd73d084955e11e5e42378aef2202a81e7febe364c1602fd1846e9 -SIZE (mame/mame0146s.zip) = 20933242 +SHA256 (mame/mame0147s.zip) = 4567df6ff381248fdf6e731a87f784d242b17086a1e0dd46826fac29f9304d68 +SIZE (mame/mame0147s.zip) = 32354285 diff -urN /usr/ports/emulators/mame/pkg-descr emulators/mame/pkg-descr --- /usr/ports/emulators/mame/pkg-descr 2010-05-18 07:20:25.000000000 +0900 +++ emulators/mame/pkg-descr 2012-09-19 17:43:23.000000000 +0900 @@ -1,9 +1,8 @@ -MAME stands for Multiple Arcade Machine Emulator. -When used in conjunction with images of the original -arcade game's ROM and disk data, MAME attempts to -reproduce that game as faithfully as possible on a -more modern general-purpose computer. MAME can currently -emulate several thousand different classic arcade video -games from the late 1970s through the modern era. +MAME stands for Multiple Arcade Machine Emulator. When used in conjunction +with images of the original arcade game's ROM and disk data, MAME attempts +to reproduce that game as faithfully as possible on a more modern +general-purpose computer. MAME can currently emulate several thousand +different classic arcade video games from the late 1970s through the +modern era. -WWW: http://mamedev.org +WWW: http://mamedev.org/ diff -urN /usr/ports/emulators/mame/pkg-plist emulators/mame/pkg-plist --- /usr/ports/emulators/mame/pkg-plist 2012-06-18 05:23:48.000000000 +0900 +++ emulators/mame/pkg-plist 2012-09-25 04:34:26.000000000 +0900 @@ -8,18 +8,205 @@ libexec/mame/unidasm %%PORTDOCS%%%%DOCSDIR%%/docs/config.txt %%PORTDOCS%%%%DOCSDIR%%/docs/hlsl.txt +%%PORTDOCS%%%%DOCSDIR%%/docs/imgtool.txt %%PORTDOCS%%%%DOCSDIR%%/docs/license.txt %%PORTDOCS%%%%DOCSDIR%%/docs/mame.txt %%PORTDOCS%%%%DOCSDIR%%/docs/newvideo.txt +%%PORTDOCS%%%%DOCSDIR%%/docs/nscsi.txt %%PORTDOCS%%%%DOCSDIR%%/docs/windows.txt -%%PORTDOCS%%%%DOCSDIR%%/whatsnew.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mame.ini %%DATADIR%%/artwork/aperture.png %%DATADIR%%/artwork/white.png +%%DATADIR%%/hash/32x.xml +%%DATADIR%%/hash/3do_m2.xml +%%DATADIR%%/hash/a2600.xml +%%DATADIR%%/hash/a2600_cass.xml +%%DATADIR%%/hash/a5200.hsi +%%DATADIR%%/hash/a5200.xml +%%DATADIR%%/hash/a7800.xml +%%DATADIR%%/hash/a800.xml +%%DATADIR%%/hash/abc1600.xml +%%DATADIR%%/hash/abc80.xml +%%DATADIR%%/hash/abc800.xml +%%DATADIR%%/hash/abc806.xml +%%DATADIR%%/hash/advision.xml +%%DATADIR%%/hash/alice32.xml +%%DATADIR%%/hash/alice90.xml +%%DATADIR%%/hash/apfm1000.xml +%%DATADIR%%/hash/apple1.xml +%%DATADIR%%/hash/apple2.xml +%%DATADIR%%/hash/apple2gs.xml +%%DATADIR%%/hash/aquarius.xml +%%DATADIR%%/hash/arcadia.xml +%%DATADIR%%/hash/astrocde.xml +%%DATADIR%%/hash/atom.xml +%%DATADIR%%/hash/bbca_cass.xml +%%DATADIR%%/hash/bbcb_cass.xml +%%DATADIR%%/hash/bbcbc.xml +%%DATADIR%%/hash/bbcm_cart.xml +%%DATADIR%%/hash/bbcm_cass.xml +%%DATADIR%%/hash/bw12.xml +%%DATADIR%%/hash/bw2.xml +%%DATADIR%%/hash/c128_cart.xml +%%DATADIR%%/hash/c128_flop.xml +%%DATADIR%%/hash/c128_rom.xml +%%DATADIR%%/hash/c64_cart.xml +%%DATADIR%%/hash/c64_flop.xml +%%DATADIR%%/hash/casloopy.xml +%%DATADIR%%/hash/cbm700_cart.xml +%%DATADIR%%/hash/cd32.xml +%%DATADIR%%/hash/cdi.xml +%%DATADIR%%/hash/cdtv.xml +%%DATADIR%%/hash/channelf.xml +%%DATADIR%%/hash/coco_cart.xml +%%DATADIR%%/hash/coleco.xml +%%DATADIR%%/hash/compis.xml +%%DATADIR%%/hash/cpc_cass.xml +%%DATADIR%%/hash/cpc_flop.xml +%%DATADIR%%/hash/crvision.xml +%%DATADIR%%/hash/dim68k.xml +%%DATADIR%%/hash/einstein.xml +%%DATADIR%%/hash/electron_cart.xml +%%DATADIR%%/hash/famicom_flop.xml +%%DATADIR%%/hash/fm77av.xml +%%DATADIR%%/hash/fm7_cass.xml +%%DATADIR%%/hash/fm7_disk.xml +%%DATADIR%%/hash/gameboy.xml +%%DATADIR%%/hash/gamecom.xml +%%DATADIR%%/hash/gamegear.xml +%%DATADIR%%/hash/gamepock.xml +%%DATADIR%%/hash/gba.xml +%%DATADIR%%/hash/gbcolor.xml +%%DATADIR%%/hash/gmaster.xml +%%DATADIR%%/hash/gx4000.xml +%%DATADIR%%/hash/ibm5140.xml +%%DATADIR%%/hash/ibm5150.xml +%%DATADIR%%/hash/ibm5150_cass.xml +%%DATADIR%%/hash/ibm5170.xml +%%DATADIR%%/hash/ibmpcjr_cart.xml +%%DATADIR%%/hash/ibmpcjr_flop.xml +%%DATADIR%%/hash/intv.hsi +%%DATADIR%%/hash/intv.xml +%%DATADIR%%/hash/intvecs.xml +%%DATADIR%%/hash/iq151_cart.xml +%%DATADIR%%/hash/iq151_flop.xml +%%DATADIR%%/hash/jaguar.xml +%%DATADIR%%/hash/juicebox.xml +%%DATADIR%%/hash/kc_cart.xml +%%DATADIR%%/hash/kc_cass.xml +%%DATADIR%%/hash/kc_flop.xml +%%DATADIR%%/hash/lisa.xml +%%DATADIR%%/hash/lisa2.xml +%%DATADIR%%/hash/lynx.xml +%%DATADIR%%/hash/m5.xml +%%DATADIR%%/hash/mac_flop.xml +%%DATADIR%%/hash/mac_hdd.xml +%%DATADIR%%/hash/mbc55x.xml +%%DATADIR%%/hash/megacd.xml +%%DATADIR%%/hash/megacdj.xml +%%DATADIR%%/hash/megadriv.xml +%%DATADIR%%/hash/megaduck.xml +%%DATADIR%%/hash/megapc.xml %%DATADIR%%/hash/megatech.xml +%%DATADIR%%/hash/mpz80.xml +%%DATADIR%%/hash/msx.hsi +%%DATADIR%%/hash/msx1_cart.xml +%%DATADIR%%/hash/msx2.hsi +%%DATADIR%%/hash/msx2_cart.xml +%%DATADIR%%/hash/mz2000_cass.xml +%%DATADIR%%/hash/mz2000_flop.xml +%%DATADIR%%/hash/mz2500.xml +%%DATADIR%%/hash/mz700_cass.xml +%%DATADIR%%/hash/n64.xml +%%DATADIR%%/hash/nes.hsi +%%DATADIR%%/hash/nes.xml %%DATADIR%%/hash/neogeo.xml +%%DATADIR%%/hash/next.xml +%%DATADIR%%/hash/ngp.xml +%%DATADIR%%/hash/ngpc.xml +%%DATADIR%%/hash/pasogo.xml +%%DATADIR%%/hash/pb2000c.xml +%%DATADIR%%/hash/pc1512.xml +%%DATADIR%%/hash/pc1640.xml +%%DATADIR%%/hash/pc8201.xml +%%DATADIR%%/hash/pc8801_cass.xml +%%DATADIR%%/hash/pc8801_flop.xml +%%DATADIR%%/hash/pc88va.xml +%%DATADIR%%/hash/pc98.xml +%%DATADIR%%/hash/pce.xml +%%DATADIR%%/hash/pcecd.xml +%%DATADIR%%/hash/pcw.xml +%%DATADIR%%/hash/pico.xml +%%DATADIR%%/hash/pippin.xml +%%DATADIR%%/hash/pippin_flop.xml +%%DATADIR%%/hash/plus4_cart.xml +%%DATADIR%%/hash/plus4_flop.xml +%%DATADIR%%/hash/pokemini.xml +%%DATADIR%%/hash/psion.xml +%%DATADIR%%/hash/psx.xml +%%DATADIR%%/hash/pv1000.xml +%%DATADIR%%/hash/pv2000.xml +%%DATADIR%%/hash/ql.xml +%%DATADIR%%/hash/ql_cass.xml +%%DATADIR%%/hash/rainbow.xml +%%DATADIR%%/hash/rx78.xml +%%DATADIR%%/hash/sage2.xml +%%DATADIR%%/hash/sat_cart.xml +%%DATADIR%%/hash/saturn.xml +%%DATADIR%%/hash/scv.xml +%%DATADIR%%/hash/segacd.xml +%%DATADIR%%/hash/sf7000.xml +%%DATADIR%%/hash/sg1000.xml +%%DATADIR%%/hash/sgx.xml +%%DATADIR%%/hash/smc777.xml +%%DATADIR%%/hash/sms.xml +%%DATADIR%%/hash/snes.xml +%%DATADIR%%/hash/sorcerer_cart.xml %%DATADIR%%/hash/softwarelist.dtd +%%DATADIR%%/hash/spectrum.xml +%%DATADIR%%/hash/st.xml +%%DATADIR%%/hash/studio2.xml %%DATADIR%%/hash/stv.xml +%%DATADIR%%/hash/super6.xml +%%DATADIR%%/hash/supracan.xml +%%DATADIR%%/hash/svi318_cart.xml +%%DATADIR%%/hash/svi318_cass.xml +%%DATADIR%%/hash/svi318_flop.xml +%%DATADIR%%/hash/svision.xml +%%DATADIR%%/hash/tandy200.xml +%%DATADIR%%/hash/tandy2k.xml +%%DATADIR%%/hash/tandy6k.xml +%%DATADIR%%/hash/tdv2324.xml +%%DATADIR%%/hash/tg16.xml +%%DATADIR%%/hash/ti99_cart.xml +%%DATADIR%%/hash/tiki100.xml +%%DATADIR%%/hash/trs80m2.xml +%%DATADIR%%/hash/trsm100.xml +%%DATADIR%%/hash/tutor.xml +%%DATADIR%%/hash/tvc_cart.xml +%%DATADIR%%/hash/uzebox.xml +%%DATADIR%%/hash/v1050.xml +%%DATADIR%%/hash/vboy.xml +%%DATADIR%%/hash/vc4000.xml +%%DATADIR%%/hash/vectrex.xml +%%DATADIR%%/hash/vg5k.xml +%%DATADIR%%/hash/vic10.xml +%%DATADIR%%/hash/vic1001_cart.xml +%%DATADIR%%/hash/vic1001_flop.xml +%%DATADIR%%/hash/vidbrain.xml +%%DATADIR%%/hash/vii.xml +%%DATADIR%%/hash/vip.xml +%%DATADIR%%/hash/vixen.xml +%%DATADIR%%/hash/vsmile.xml +%%DATADIR%%/hash/wangpc.xml +%%DATADIR%%/hash/wmbullet.xml +%%DATADIR%%/hash/wscolor.xml +%%DATADIR%%/hash/wswan.xml +%%DATADIR%%/hash/x07_card.xml +%%DATADIR%%/hash/x1_cass.xml +%%DATADIR%%/hash/x1_flop.xml +%%DATADIR%%/hash/x68k_flop.xml +%%DATADIR%%/hash/xegs.xml %%DATADIR%%/keymaps/km-be.txt %%DATADIR%%/keymaps/km-ch.txt %%DATADIR%%/keymaps/km-de.txt >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3535110656D2 for ; Tue, 25 Sep 2012 18:10:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0EB4A8FC2C for ; Tue, 25 Sep 2012 18:10:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIALvw019722 for ; Tue, 25 Sep 2012 18:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIALDE019711; Tue, 25 Sep 2012 18:10:21 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:21 GMT Resent-Message-Id: <201209251810.q8PIALDE019711@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B32B51065675 for ; Tue, 25 Sep 2012 18:04:12 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 5BF038FC0C for ; Tue, 25 Sep 2012 18:04:12 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 2F6FF4AC036 for ; Wed, 26 Sep 2012 03:04:07 +0900 (JST) Message-Id: <20120926022235.9cb1a064fb40e4f23695532a@yahoo.com> Date: Wed, 26 Sep 2012 02:22:35 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171995: emulators/mess: Update to version 0.147 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:22 -0000 >Number: 171995 >Category: ports >Synopsis: emulators/mess: Update to version 0.147 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:21 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.147 >How-To-Repeat: >Fix: diff -urN /usr/ports/emulators/mess/Makefile emulators/mess/Makefile --- /usr/ports/emulators/mess/Makefile 2012-06-18 05:12:22.000000000 +0900 +++ emulators/mess/Makefile 2012-09-25 04:53:49.000000000 +0900 @@ -1,20 +1,16 @@ -# New ports collection makefile for: sdlmess -# Date created: 2007-01-10 -# Whom: alepulver -# +# Created by: alepulver # $FreeBSD: ports/emulators/mess/Makefile,v 1.38 2012/06/17 20:12:22 sylvio Exp $ -# PORTNAME= mess -PORTVERSION= 0.146${PATCHSUFFIX} +PORTVERSION= 0.147${PATCHSUFFIX} CATEGORIES= emulators -#MASTER_SITES= http://www.mess.org/_media/downloads:/ -MASTER_SITES= http://ompldr.org/vZHV6ag/ \ - http://distfiles.exherbo.org/distfiles/ \ - http://www.umich.edu/~archive/apollo/ -DISTNAME= ${PORTNAME}${PORTVERSION:S/.//:C/p[0-9]*$//}s +MASTER_SITES= SF/mame.mirror/MAME%20${PORTVERSION} \ + http://mame.mirrors.zippykid.com/releases/ \ + http://emumovies.com/aarongiles/releases/ \ + http://mamedev.org/updates/:patchsets +DISTNAME= mame${PORTVERSION:S/.//:C/p[0-9]*$//}s DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ - ${UPDATE_PATCHES:C/$/.zip/} + ${UPDATE_PATCHES:C/$/.zip:patchsets/} DIST_SUBDIR= mame MAINTAINER= ports@FreeBSD.org @@ -38,7 +34,8 @@ USE_GCC= 4.6+ USE_GMAKE= yes MAKE_ENV= NOWERROR=1 OPTIMIZE=0 USE_NETWORK=1 \ - OPT_FLAGS="${CXXFLAGS}" GCC_LDFLAGS="${LDFLAGS}" + OPT_FLAGS="${CXXFLAGS}" GCC_LDFLAGS="${LDFLAGS}" \ + TARGET="${PORTNAME}" MAKEFILE= makefile MAKE_JOBS_SAFE= yes @@ -49,7 +46,7 @@ .if defined(PATCHLEVEL) && ${PATCHLEVEL} PATCHSUFFIX= p${PATCHLEVEL} UPDATE_PATCHES!= /usr/bin/jot -s " " \ - -w ${PORTNAME}${PORTVERSION:S/.//:C/\.p[0-9]*$//}u%d_diff \ + -w ${PORTVERSION:S/.//:C/\.p[0-9]*$//}u%d_diff \ ${PATCHLEVEL} 1 ${PATCHLEVEL} .endif @@ -78,6 +75,8 @@ .endif post-extract: + @${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${WRKDIR}/mame.zip ${EXTRACT_AFTER_ARGS} + @${RM} -f ${WRKDIR}/mame.zip # Use post-extract target to get in before dos2unix-isation .if defined(UPDATE_PATCHES) . for patch in ${UPDATE_PATCHES:S/_/./} @@ -108,9 +107,9 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin @${MKDIR} ${PREFIX}/libexec/${PORTNAME} -.for FILE in castool chdman imgtool jedutil ldresample ldverify romcmp \ +.for F in castool chdman imgtool jedutil ldresample ldverify romcmp \ testkeys unidasm - ${INSTALL_PROGRAM} ${WRKSRC}/${FILE} ${PREFIX}/libexec/${PORTNAME} + ${INSTALL_PROGRAM} ${WRKSRC}/${F} ${PREFIX}/libexec/${PORTNAME} .endfor @${MKDIR} ${DATADIR} @(cd ${WRKSRC} && ${COPYTREE_SHARE} artwork ${DATADIR}) @@ -118,7 +117,6 @@ @(cd ${WRKSRC}/src/osd/sdl && ${COPYTREE_SHARE} keymaps ${DATADIR}) .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/*.txt ${DOCSDIR} @(cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${DOCSDIR}) .endif .if ${PORT_OPTIONS:MEXAMPLES} diff -urN /usr/ports/emulators/mess/distinfo emulators/mess/distinfo --- /usr/ports/emulators/mess/distinfo 2012-06-18 05:12:22.000000000 +0900 +++ emulators/mess/distinfo 2012-09-25 04:43:24.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (mame/mess0146s.zip) = bdebfdcdef8f4d7a6e87ff80af00446a68d374c7f279fe8b5a63cf87f2b7ee28 -SIZE (mame/mess0146s.zip) = 62626787 +SHA256 (mame/mame0147s.zip) = 4567df6ff381248fdf6e731a87f784d242b17086a1e0dd46826fac29f9304d68 +SIZE (mame/mame0147s.zip) = 32354285 diff -urN /usr/ports/emulators/mess/pkg-plist emulators/mess/pkg-plist --- /usr/ports/emulators/mess/pkg-plist 2012-06-18 05:12:22.000000000 +0900 +++ emulators/mess/pkg-plist 2012-09-25 04:41:08.000000000 +0900 @@ -8,70 +8,16 @@ libexec/mess/romcmp libexec/mess/testkeys libexec/mess/unidasm -%%PORTDOCS%%%%DOCSDIR%%/docs/compiling.htm %%PORTDOCS%%%%DOCSDIR%%/docs/config.txt -%%PORTDOCS%%%%DOCSDIR%%/docs/credits.htm -%%PORTDOCS%%%%DOCSDIR%%/docs/faq.htm %%PORTDOCS%%%%DOCSDIR%%/docs/hlsl.txt -%%PORTDOCS%%%%DOCSDIR%%/docs/howto.htm %%PORTDOCS%%%%DOCSDIR%%/docs/imgtool.txt %%PORTDOCS%%%%DOCSDIR%%/docs/license.txt %%PORTDOCS%%%%DOCSDIR%%/docs/mame.txt -%%PORTDOCS%%%%DOCSDIR%%/docs/messnew.txt %%PORTDOCS%%%%DOCSDIR%%/docs/newvideo.txt +%%PORTDOCS%%%%DOCSDIR%%/docs/nscsi.txt %%PORTDOCS%%%%DOCSDIR%%/docs/windows.txt -%%PORTDOCS%%%%DOCSDIR%%/whatsnew.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mess.ini -%%DATADIR%%/artwork/4004clk.zip -%%DATADIR%%/artwork/academy.zip -%%DATADIR%%/artwork/aim65.zip -%%DATADIR%%/artwork/alm16.zip -%%DATADIR%%/artwork/alm32.zip -%%DATADIR%%/artwork/amsterd.zip %%DATADIR%%/artwork/aperture.png -%%DATADIR%%/artwork/avigo.zip -%%DATADIR%%/artwork/berlinp.zip -%%DATADIR%%/artwork/bpl32.zip -%%DATADIR%%/artwork/ccmk1.zip -%%DATADIR%%/artwork/ccmk2.zip -%%DATADIR%%/artwork/dallas16.zip -%%DATADIR%%/artwork/gen32.zip -%%DATADIR%%/artwork/gen32_41.zip -%%DATADIR%%/artwork/gen32_oc.zip -%%DATADIR%%/artwork/glasgow.zip -%%DATADIR%%/artwork/hp48g.zip -%%DATADIR%%/artwork/hp48gp.zip -%%DATADIR%%/artwork/hp48gx.zip -%%DATADIR%%/artwork/hp48s.zip -%%DATADIR%%/artwork/hp48sx.zip -%%DATADIR%%/artwork/junior.zip -%%DATADIR%%/artwork/kim1.zip -%%DATADIR%%/artwork/lond020.zip -%%DATADIR%%/artwork/lond030.zip -%%DATADIR%%/artwork/lyon16.zip -%%DATADIR%%/artwork/lyon32.zip -%%DATADIR%%/artwork/milano.zip -%%DATADIR%%/artwork/mm4.zip -%%DATADIR%%/artwork/mo5.zip -%%DATADIR%%/artwork/mo5nr.zip -%%DATADIR%%/artwork/mo6.zip -%%DATADIR%%/artwork/monteciv.zip -%%DATADIR%%/artwork/mpf1.zip -%%DATADIR%%/artwork/mpf1b.zip -%%DATADIR%%/artwork/pc1401.zip -%%DATADIR%%/artwork/pc1402.zip -%%DATADIR%%/artwork/pc1403.zip -%%DATADIR%%/artwork/polgar.zip -%%DATADIR%%/artwork/sexpertc.zip -%%DATADIR%%/artwork/ssystem3.zip -%%DATADIR%%/artwork/supercon.zip -%%DATADIR%%/artwork/to7.zip -%%DATADIR%%/artwork/to770.zip -%%DATADIR%%/artwork/to8.zip -%%DATADIR%%/artwork/to9.zip -%%DATADIR%%/artwork/to9p.zip -%%DATADIR%%/artwork/van16.zip -%%DATADIR%%/artwork/van32.zip %%DATADIR%%/artwork/white.png %%DATADIR%%/hash/32x.xml %%DATADIR%%/hash/3do_m2.xml @@ -96,7 +42,12 @@ %%DATADIR%%/hash/arcadia.xml %%DATADIR%%/hash/astrocde.xml %%DATADIR%%/hash/atom.xml +%%DATADIR%%/hash/bbca_cass.xml +%%DATADIR%%/hash/bbcb_cass.xml %%DATADIR%%/hash/bbcbc.xml +%%DATADIR%%/hash/bbcm_cart.xml +%%DATADIR%%/hash/bbcm_cass.xml +%%DATADIR%%/hash/bw12.xml %%DATADIR%%/hash/bw2.xml %%DATADIR%%/hash/c128_cart.xml %%DATADIR%%/hash/c128_flop.xml @@ -111,11 +62,13 @@ %%DATADIR%%/hash/channelf.xml %%DATADIR%%/hash/coco_cart.xml %%DATADIR%%/hash/coleco.xml +%%DATADIR%%/hash/compis.xml %%DATADIR%%/hash/cpc_cass.xml %%DATADIR%%/hash/cpc_flop.xml %%DATADIR%%/hash/crvision.xml %%DATADIR%%/hash/dim68k.xml %%DATADIR%%/hash/einstein.xml +%%DATADIR%%/hash/electron_cart.xml %%DATADIR%%/hash/famicom_flop.xml %%DATADIR%%/hash/fm77av.xml %%DATADIR%%/hash/fm7_cass.xml @@ -130,6 +83,7 @@ %%DATADIR%%/hash/gx4000.xml %%DATADIR%%/hash/ibm5140.xml %%DATADIR%%/hash/ibm5150.xml +%%DATADIR%%/hash/ibm5150_cass.xml %%DATADIR%%/hash/ibm5170.xml %%DATADIR%%/hash/ibmpcjr_cart.xml %%DATADIR%%/hash/ibmpcjr_flop.xml @@ -155,16 +109,20 @@ %%DATADIR%%/hash/megadriv.xml %%DATADIR%%/hash/megaduck.xml %%DATADIR%%/hash/megapc.xml +%%DATADIR%%/hash/megatech.xml %%DATADIR%%/hash/mpz80.xml %%DATADIR%%/hash/msx.hsi %%DATADIR%%/hash/msx1_cart.xml %%DATADIR%%/hash/msx2.hsi %%DATADIR%%/hash/msx2_cart.xml +%%DATADIR%%/hash/mz2000_cass.xml +%%DATADIR%%/hash/mz2000_flop.xml %%DATADIR%%/hash/mz2500.xml +%%DATADIR%%/hash/mz700_cass.xml %%DATADIR%%/hash/n64.xml -%%DATADIR%%/hash/neogeo.xml %%DATADIR%%/hash/nes.hsi %%DATADIR%%/hash/nes.xml +%%DATADIR%%/hash/neogeo.xml %%DATADIR%%/hash/next.xml %%DATADIR%%/hash/ngp.xml %%DATADIR%%/hash/ngpc.xml @@ -179,6 +137,7 @@ %%DATADIR%%/hash/pc98.xml %%DATADIR%%/hash/pce.xml %%DATADIR%%/hash/pcecd.xml +%%DATADIR%%/hash/pcw.xml %%DATADIR%%/hash/pico.xml %%DATADIR%%/hash/pippin.xml %%DATADIR%%/hash/pippin_flop.xml @@ -190,6 +149,7 @@ %%DATADIR%%/hash/pv1000.xml %%DATADIR%%/hash/pv2000.xml %%DATADIR%%/hash/ql.xml +%%DATADIR%%/hash/ql_cass.xml %%DATADIR%%/hash/rainbow.xml %%DATADIR%%/hash/rx78.xml %%DATADIR%%/hash/sage2.xml @@ -197,16 +157,18 @@ %%DATADIR%%/hash/saturn.xml %%DATADIR%%/hash/scv.xml %%DATADIR%%/hash/segacd.xml +%%DATADIR%%/hash/sf7000.xml %%DATADIR%%/hash/sg1000.xml %%DATADIR%%/hash/sgx.xml %%DATADIR%%/hash/smc777.xml %%DATADIR%%/hash/sms.xml %%DATADIR%%/hash/snes.xml -%%DATADIR%%/hash/softwarelist.dtd %%DATADIR%%/hash/sorcerer_cart.xml +%%DATADIR%%/hash/softwarelist.dtd %%DATADIR%%/hash/spectrum.xml %%DATADIR%%/hash/st.xml %%DATADIR%%/hash/studio2.xml +%%DATADIR%%/hash/stv.xml %%DATADIR%%/hash/super6.xml %%DATADIR%%/hash/supracan.xml %%DATADIR%%/hash/svi318_cart.xml @@ -214,6 +176,8 @@ %%DATADIR%%/hash/svi318_flop.xml %%DATADIR%%/hash/svision.xml %%DATADIR%%/hash/tandy200.xml +%%DATADIR%%/hash/tandy2k.xml +%%DATADIR%%/hash/tandy6k.xml %%DATADIR%%/hash/tdv2324.xml %%DATADIR%%/hash/tg16.xml %%DATADIR%%/hash/ti99_cart.xml @@ -233,8 +197,11 @@ %%DATADIR%%/hash/vic1001_flop.xml %%DATADIR%%/hash/vidbrain.xml %%DATADIR%%/hash/vii.xml +%%DATADIR%%/hash/vip.xml %%DATADIR%%/hash/vixen.xml %%DATADIR%%/hash/vsmile.xml +%%DATADIR%%/hash/wangpc.xml +%%DATADIR%%/hash/wmbullet.xml %%DATADIR%%/hash/wscolor.xml %%DATADIR%%/hash/wswan.xml %%DATADIR%%/hash/x07_card.xml >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 756D310656D5 for ; Tue, 25 Sep 2012 18:10:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4AD1D8FC31 for ; Tue, 25 Sep 2012 18:10:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAMAU019798 for ; Tue, 25 Sep 2012 18:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAMBZ019795; Tue, 25 Sep 2012 18:10:22 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:22 GMT Resent-Message-Id: <201209251810.q8PIAMBZ019795@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DAB411065670 for ; Tue, 25 Sep 2012 18:04:22 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 6604E8FC0A for ; Tue, 25 Sep 2012 18:04:22 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id C6B7C4AC036 for ; Wed, 26 Sep 2012 03:04:14 +0900 (JST) Message-Id: <20120926022239.c18a96bf1ab2e8d70b64cd3d@yahoo.com> Date: Wed, 26 Sep 2012 02:22:39 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171996: emulators/qmc2: Update to version 0.37 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:22 -0000 >Number: 171996 >Category: ports >Synopsis: emulators/qmc2: Update to version 0.37 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.37 >How-To-Repeat: >Fix: diff -urN /usr/ports/emulators/qmc2/Makefile emulators/qmc2/Makefile --- /usr/ports/emulators/qmc2/Makefile 2012-06-18 05:19:01.000000000 +0900 +++ emulators/qmc2/Makefile 2012-09-25 03:21:47.000000000 +0900 @@ -1,12 +1,8 @@ -# New ports collection makefile for: qmc2 -# Date created: 2007-02-25 -# Whom: alepulver -# +# Created by: alepulver # $FreeBSD: ports/emulators/qmc2/Makefile,v 1.23 2012/06/17 20:19:01 sylvio Exp $ -# PORTNAME= qmc2 -PORTVERSION= 0.36 +PORTVERSION= 0.37 CATEGORIES= emulators MASTER_SITES= SF diff -urN /usr/ports/emulators/qmc2/distinfo emulators/qmc2/distinfo --- /usr/ports/emulators/qmc2/distinfo 2012-06-18 05:19:01.000000000 +0900 +++ emulators/qmc2/distinfo 2012-09-19 02:52:02.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (qmc2-0.36.tar.bz2) = 668f0adbe1c1b16e70852a7f8c934eb9608a6dede1c75fbdd202e6c81f552bec -SIZE (qmc2-0.36.tar.bz2) = 10262563 +SHA256 (qmc2-0.37.tar.bz2) = 562ee74ff6da95d3eee25d895201469f9d9f3289724cf746c406f8d954423a08 +SIZE (qmc2-0.37.tar.bz2) = 10693803 diff -urN /usr/ports/emulators/qmc2/pkg-plist emulators/qmc2/pkg-plist --- /usr/ports/emulators/qmc2/pkg-plist 2012-06-18 05:19:01.000000000 +0900 +++ emulators/qmc2/pkg-plist 2012-09-19 03:20:33.000000000 +0900 @@ -5,7 +5,6 @@ %%PORTDOCS%%%%DOCSDIR%%/html/de/copying.html %%PORTDOCS%%%%DOCSDIR%%/html/de/credits.html %%PORTDOCS%%%%DOCSDIR%%/html/de/faq.html -%%PORTDOCS%%%%DOCSDIR%%/html/de/img %%PORTDOCS%%%%DOCSDIR%%/html/de/index.html %%PORTDOCS%%%%DOCSDIR%%/html/de/readme.html %%PORTDOCS%%%%DOCSDIR%%/html/de/todo.html @@ -13,7 +12,6 @@ %%PORTDOCS%%%%DOCSDIR%%/html/el/copying.html %%PORTDOCS%%%%DOCSDIR%%/html/el/credits.html %%PORTDOCS%%%%DOCSDIR%%/html/el/faq.html -%%PORTDOCS%%%%DOCSDIR%%/html/el/img %%PORTDOCS%%%%DOCSDIR%%/html/el/index.html %%PORTDOCS%%%%DOCSDIR%%/html/el/readme.html %%PORTDOCS%%%%DOCSDIR%%/html/el/todo.html @@ -21,7 +19,6 @@ %%PORTDOCS%%%%DOCSDIR%%/html/es/copying.html %%PORTDOCS%%%%DOCSDIR%%/html/es/credits.html %%PORTDOCS%%%%DOCSDIR%%/html/es/faq.html -%%PORTDOCS%%%%DOCSDIR%%/html/es/img %%PORTDOCS%%%%DOCSDIR%%/html/es/index.html %%PORTDOCS%%%%DOCSDIR%%/html/es/readme.html %%PORTDOCS%%%%DOCSDIR%%/html/es/todo.html @@ -29,15 +26,31 @@ %%PORTDOCS%%%%DOCSDIR%%/html/fr/copying.html %%PORTDOCS%%%%DOCSDIR%%/html/fr/credits.html %%PORTDOCS%%%%DOCSDIR%%/html/fr/faq.html -%%PORTDOCS%%%%DOCSDIR%%/html/fr/img %%PORTDOCS%%%%DOCSDIR%%/html/fr/index.html %%PORTDOCS%%%%DOCSDIR%%/html/fr/readme.html %%PORTDOCS%%%%DOCSDIR%%/html/fr/todo.html +%%PORTDOCS%%%%DOCSDIR%%/html/images/ballou.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/doc-bg.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/images/gradient1.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/gradient2.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/qmc2_logo.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/qmc2_mess_logo.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/qmc2_ume_logo.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/rene.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/robert.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/sammy.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/samwise.gif +%%PORTDOCS%%%%DOCSDIR%%/html/images/sphere_blue.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/sphere_green.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/sphere_grey.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/sphere_red.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/sphere_yellowgreen.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/teddy.png +%%PORTDOCS%%%%DOCSDIR%%/html/images/vas.png %%PORTDOCS%%%%DOCSDIR%%/html/it/changes.html %%PORTDOCS%%%%DOCSDIR%%/html/it/copying.html %%PORTDOCS%%%%DOCSDIR%%/html/it/credits.html %%PORTDOCS%%%%DOCSDIR%%/html/it/faq.html -%%PORTDOCS%%%%DOCSDIR%%/html/it/img %%PORTDOCS%%%%DOCSDIR%%/html/it/index.html %%PORTDOCS%%%%DOCSDIR%%/html/it/readme.html %%PORTDOCS%%%%DOCSDIR%%/html/it/todo.html @@ -45,7 +58,6 @@ %%PORTDOCS%%%%DOCSDIR%%/html/pl/copying.html %%PORTDOCS%%%%DOCSDIR%%/html/pl/credits.html %%PORTDOCS%%%%DOCSDIR%%/html/pl/faq.html -%%PORTDOCS%%%%DOCSDIR%%/html/pl/img %%PORTDOCS%%%%DOCSDIR%%/html/pl/index.html %%PORTDOCS%%%%DOCSDIR%%/html/pl/readme.html %%PORTDOCS%%%%DOCSDIR%%/html/pl/todo.html @@ -53,7 +65,6 @@ %%PORTDOCS%%%%DOCSDIR%%/html/pt/copying.html %%PORTDOCS%%%%DOCSDIR%%/html/pt/credits.html %%PORTDOCS%%%%DOCSDIR%%/html/pt/faq.html -%%PORTDOCS%%%%DOCSDIR%%/html/pt/img %%PORTDOCS%%%%DOCSDIR%%/html/pt/index.html %%PORTDOCS%%%%DOCSDIR%%/html/pt/readme.html %%PORTDOCS%%%%DOCSDIR%%/html/pt/todo.html @@ -61,7 +72,6 @@ %%PORTDOCS%%%%DOCSDIR%%/html/ro/copying.html %%PORTDOCS%%%%DOCSDIR%%/html/ro/credits.html %%PORTDOCS%%%%DOCSDIR%%/html/ro/faq.html -%%PORTDOCS%%%%DOCSDIR%%/html/ro/img %%PORTDOCS%%%%DOCSDIR%%/html/ro/index.html %%PORTDOCS%%%%DOCSDIR%%/html/ro/readme.html %%PORTDOCS%%%%DOCSDIR%%/html/ro/todo.html @@ -69,7 +79,6 @@ %%PORTDOCS%%%%DOCSDIR%%/html/sv/copying.html %%PORTDOCS%%%%DOCSDIR%%/html/sv/credits.html %%PORTDOCS%%%%DOCSDIR%%/html/sv/faq.html -%%PORTDOCS%%%%DOCSDIR%%/html/sv/img %%PORTDOCS%%%%DOCSDIR%%/html/sv/index.html %%PORTDOCS%%%%DOCSDIR%%/html/sv/readme.html %%PORTDOCS%%%%DOCSDIR%%/html/sv/todo.html @@ -77,24 +86,6 @@ %%PORTDOCS%%%%DOCSDIR%%/html/us/copying.html %%PORTDOCS%%%%DOCSDIR%%/html/us/credits.html %%PORTDOCS%%%%DOCSDIR%%/html/us/faq.html -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/ballou.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/doc-bg.jpg -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/gradient1.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/gradient2.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/jonas.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/qmc2_logo.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/qmc2_mess_logo.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/rene.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/robert.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/sammy.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/samwise.gif -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/sphere_blue.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/sphere_green.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/sphere_grey.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/sphere_red.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/sphere_yellowgreen.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/teddy.png -%%PORTDOCS%%%%DOCSDIR%%/html/us/img/vas.png %%PORTDOCS%%%%DOCSDIR%%/html/us/index.html %%PORTDOCS%%%%DOCSDIR%%/html/us/readme.html %%PORTDOCS%%%%DOCSDIR%%/html/us/todo.html @@ -186,6 +177,7 @@ %%DATADIR%%/img/circles/ghost_video.png %%DATADIR%%/img/circles/gradient1.png %%DATADIR%%/img/circles/gradient2.png +%%DATADIR%%/img/circles/halt.png %%DATADIR%%/img/circles/help.png %%DATADIR%%/img/circles/hint.png %%DATADIR%%/img/circles/hint_small.png @@ -196,6 +188,9 @@ %%DATADIR%%/img/circles/internet.png %%DATADIR%%/img/circles/invert_tag.png %%DATADIR%%/img/circles/invert_tag_all.png +%%DATADIR%%/img/circles/invert_tag_down.png +%%DATADIR%%/img/circles/invert_tag_up.png +%%DATADIR%%/img/circles/invert_tag_visible.png %%DATADIR%%/img/circles/joystick.png %%DATADIR%%/img/circles/keyboard.png %%DATADIR%%/img/circles/kill.png @@ -215,9 +210,11 @@ %%DATADIR%%/img/circles/media_back.png %%DATADIR%%/img/circles/media_fastbackward.png %%DATADIR%%/img/circles/media_fastforward.png +%%DATADIR%%/img/circles/media_lower_volume.png %%DATADIR%%/img/circles/media_next.png %%DATADIR%%/img/circles/media_pause.png %%DATADIR%%/img/circles/media_play.png +%%DATADIR%%/img/circles/media_raise_volume.png %%DATADIR%%/img/circles/media_stop.png %%DATADIR%%/img/circles/merge.png %%DATADIR%%/img/circles/merge_nok.png @@ -250,8 +247,12 @@ %%DATADIR%%/img/circles/qmc2_mess_logo_big.png %%DATADIR%%/img/circles/qmc2_mess_logo_small.png %%DATADIR%%/img/circles/qmc2_mess_splash.png +%%DATADIR%%/img/circles/qmc2_ume_logo_big.png +%%DATADIR%%/img/circles/qmc2_ume_logo_small.png +%%DATADIR%%/img/circles/qmc2_ume_splash.png %%DATADIR%%/img/circles/qt-logo.png %%DATADIR%%/img/circles/redo.png +%%DATADIR%%/img/circles/refresh.png %%DATADIR%%/img/circles/release.png %%DATADIR%%/img/circles/release_alternate.png %%DATADIR%%/img/circles/reload.png @@ -290,6 +291,7 @@ %%DATADIR%%/img/circles/tag.png %%DATADIR%%/img/circles/tagged.png %%DATADIR%%/img/circles/tagged_all.png +%%DATADIR%%/img/circles/tagged_visible.png %%DATADIR%%/img/circles/tape.png %%DATADIR%%/img/circles/terminate.png %%DATADIR%%/img/circles/thumbnail.png @@ -307,6 +309,7 @@ %%DATADIR%%/img/circles/unlock.png %%DATADIR%%/img/circles/untagged.png %%DATADIR%%/img/circles/untagged_all.png +%%DATADIR%%/img/circles/untagged_visible.png %%DATADIR%%/img/circles/up.png %%DATADIR%%/img/circles/url.png %%DATADIR%%/img/circles/version.png @@ -399,6 +402,7 @@ %%DATADIR%%/img/classic/ghost_video.png %%DATADIR%%/img/classic/gradient1.png %%DATADIR%%/img/classic/gradient2.png +%%DATADIR%%/img/classic/halt.png %%DATADIR%%/img/classic/help.png %%DATADIR%%/img/classic/hint.png %%DATADIR%%/img/classic/hint_small.png @@ -409,6 +413,9 @@ %%DATADIR%%/img/classic/internet.png %%DATADIR%%/img/classic/invert_tag.png %%DATADIR%%/img/classic/invert_tag_all.png +%%DATADIR%%/img/classic/invert_tag_down.png +%%DATADIR%%/img/classic/invert_tag_up.png +%%DATADIR%%/img/classic/invert_tag_visible.png %%DATADIR%%/img/classic/joystick.png %%DATADIR%%/img/classic/keyboard.png %%DATADIR%%/img/classic/kill.png @@ -428,9 +435,11 @@ %%DATADIR%%/img/classic/media_back.png %%DATADIR%%/img/classic/media_fastbackward.png %%DATADIR%%/img/classic/media_fastforward.png +%%DATADIR%%/img/classic/media_lower_volume.png %%DATADIR%%/img/classic/media_next.png %%DATADIR%%/img/classic/media_pause.png %%DATADIR%%/img/classic/media_play.png +%%DATADIR%%/img/classic/media_raise_volume.png %%DATADIR%%/img/classic/media_stop.png %%DATADIR%%/img/classic/merge.png %%DATADIR%%/img/classic/merge_nok.png @@ -463,8 +472,12 @@ %%DATADIR%%/img/classic/qmc2_mess_logo_big.png %%DATADIR%%/img/classic/qmc2_mess_logo_small.png %%DATADIR%%/img/classic/qmc2_mess_splash.png +%%DATADIR%%/img/classic/qmc2_ume_logo_big.png +%%DATADIR%%/img/classic/qmc2_ume_logo_small.png +%%DATADIR%%/img/classic/qmc2_ume_splash.png %%DATADIR%%/img/classic/qt-logo.png %%DATADIR%%/img/classic/redo.png +%%DATADIR%%/img/classic/refresh.png %%DATADIR%%/img/classic/release.png %%DATADIR%%/img/classic/release_alternate.png %%DATADIR%%/img/classic/reload.png @@ -503,6 +516,7 @@ %%DATADIR%%/img/classic/tag.png %%DATADIR%%/img/classic/tagged.png %%DATADIR%%/img/classic/tagged_all.png +%%DATADIR%%/img/classic/tagged_visible.png %%DATADIR%%/img/classic/tape.png %%DATADIR%%/img/classic/terminate.png %%DATADIR%%/img/classic/thumbnail.png @@ -520,6 +534,7 @@ %%DATADIR%%/img/classic/unlock.png %%DATADIR%%/img/classic/untagged.png %%DATADIR%%/img/classic/untagged_all.png +%%DATADIR%%/img/classic/untagged_visible.png %%DATADIR%%/img/classic/up.png %%DATADIR%%/img/classic/url.png %%DATADIR%%/img/classic/version.png @@ -617,6 +632,7 @@ %%DATADIR%%/img/crazy/ghost_video.png %%DATADIR%%/img/crazy/gradient1.png %%DATADIR%%/img/crazy/gradient2.png +%%DATADIR%%/img/crazy/halt.png %%DATADIR%%/img/crazy/help.png %%DATADIR%%/img/crazy/hint.png %%DATADIR%%/img/crazy/hint_small.png @@ -627,6 +643,9 @@ %%DATADIR%%/img/crazy/internet.png %%DATADIR%%/img/crazy/invert_tag.png %%DATADIR%%/img/crazy/invert_tag_all.png +%%DATADIR%%/img/crazy/invert_tag_down.png +%%DATADIR%%/img/crazy/invert_tag_up.png +%%DATADIR%%/img/crazy/invert_tag_visible.png %%DATADIR%%/img/crazy/joystick.png %%DATADIR%%/img/crazy/keyboard.png %%DATADIR%%/img/crazy/kill.png @@ -646,9 +665,11 @@ %%DATADIR%%/img/crazy/media_back.png %%DATADIR%%/img/crazy/media_fastbackward.png %%DATADIR%%/img/crazy/media_fastforward.png +%%DATADIR%%/img/crazy/media_lower_volume.png %%DATADIR%%/img/crazy/media_next.png %%DATADIR%%/img/crazy/media_pause.png %%DATADIR%%/img/crazy/media_play.png +%%DATADIR%%/img/crazy/media_raise_volume.png %%DATADIR%%/img/crazy/media_stop.png %%DATADIR%%/img/crazy/merge.png %%DATADIR%%/img/crazy/merge_nok.png @@ -681,8 +702,12 @@ %%DATADIR%%/img/crazy/qmc2_mess_logo_big.png %%DATADIR%%/img/crazy/qmc2_mess_logo_small.png %%DATADIR%%/img/crazy/qmc2_mess_splash.png +%%DATADIR%%/img/crazy/qmc2_ume_logo_big.png +%%DATADIR%%/img/crazy/qmc2_ume_logo_small.png +%%DATADIR%%/img/crazy/qmc2_ume_splash.png %%DATADIR%%/img/crazy/qt-logo.png %%DATADIR%%/img/crazy/redo.png +%%DATADIR%%/img/crazy/refresh.png %%DATADIR%%/img/crazy/release.png %%DATADIR%%/img/crazy/release_alternate.png %%DATADIR%%/img/crazy/reload.png @@ -721,6 +746,7 @@ %%DATADIR%%/img/crazy/tag.png %%DATADIR%%/img/crazy/tagged.png %%DATADIR%%/img/crazy/tagged_all.png +%%DATADIR%%/img/crazy/tagged_visible.png %%DATADIR%%/img/crazy/tape.png %%DATADIR%%/img/crazy/terminate.png %%DATADIR%%/img/crazy/thumbnail.png @@ -738,6 +764,7 @@ %%DATADIR%%/img/crazy/unlock.png %%DATADIR%%/img/crazy/untagged.png %%DATADIR%%/img/crazy/untagged_all.png +%%DATADIR%%/img/crazy/untagged_visible.png %%DATADIR%%/img/crazy/up.png %%DATADIR%%/img/crazy/url.png %%DATADIR%%/img/crazy/version.png @@ -829,6 +856,7 @@ %%DATADIR%%/img/crazy-black/ghost_video.png %%DATADIR%%/img/crazy-black/gradient1.png %%DATADIR%%/img/crazy-black/gradient2.png +%%DATADIR%%/img/crazy-black/halt.png %%DATADIR%%/img/crazy-black/help.png %%DATADIR%%/img/crazy-black/hint.png %%DATADIR%%/img/crazy-black/hint_small.png @@ -839,6 +867,9 @@ %%DATADIR%%/img/crazy-black/internet.png %%DATADIR%%/img/crazy-black/invert_tag.png %%DATADIR%%/img/crazy-black/invert_tag_all.png +%%DATADIR%%/img/crazy-black/invert_tag_down.png +%%DATADIR%%/img/crazy-black/invert_tag_up.png +%%DATADIR%%/img/crazy-black/invert_tag_visible.png %%DATADIR%%/img/crazy-black/joystick.png %%DATADIR%%/img/crazy-black/keyboard.png %%DATADIR%%/img/crazy-black/kill.png @@ -858,9 +889,11 @@ %%DATADIR%%/img/crazy-black/media_back.png %%DATADIR%%/img/crazy-black/media_fastbackward.png %%DATADIR%%/img/crazy-black/media_fastforward.png +%%DATADIR%%/img/crazy-black/media_lower_volume.png %%DATADIR%%/img/crazy-black/media_next.png %%DATADIR%%/img/crazy-black/media_pause.png %%DATADIR%%/img/crazy-black/media_play.png +%%DATADIR%%/img/crazy-black/media_raise_volume.png %%DATADIR%%/img/crazy-black/media_stop.png %%DATADIR%%/img/crazy-black/merge.png %%DATADIR%%/img/crazy-black/merge_nok.png @@ -893,8 +926,12 @@ %%DATADIR%%/img/crazy-black/qmc2_mess_logo_big.png %%DATADIR%%/img/crazy-black/qmc2_mess_logo_small.png %%DATADIR%%/img/crazy-black/qmc2_mess_splash.png +%%DATADIR%%/img/crazy-black/qmc2_ume_logo_big.png +%%DATADIR%%/img/crazy-black/qmc2_ume_logo_small.png +%%DATADIR%%/img/crazy-black/qmc2_ume_splash.png %%DATADIR%%/img/crazy-black/qt-logo.png %%DATADIR%%/img/crazy-black/redo.png +%%DATADIR%%/img/crazy-black/refresh.png %%DATADIR%%/img/crazy-black/release.png %%DATADIR%%/img/crazy-black/release_alternate.png %%DATADIR%%/img/crazy-black/reload.png @@ -933,6 +970,7 @@ %%DATADIR%%/img/crazy-black/tag.png %%DATADIR%%/img/crazy-black/tagged.png %%DATADIR%%/img/crazy-black/tagged_all.png +%%DATADIR%%/img/crazy-black/tagged_visible.png %%DATADIR%%/img/crazy-black/tape.png %%DATADIR%%/img/crazy-black/terminate.png %%DATADIR%%/img/crazy-black/thumbnail.png @@ -950,6 +988,7 @@ %%DATADIR%%/img/crazy-black/unlock.png %%DATADIR%%/img/crazy-black/untagged.png %%DATADIR%%/img/crazy-black/untagged_all.png +%%DATADIR%%/img/crazy-black/untagged_visible.png %%DATADIR%%/img/crazy-black/up.png %%DATADIR%%/img/crazy-black/url.png %%DATADIR%%/img/crazy-black/version.png @@ -1041,6 +1080,7 @@ %%DATADIR%%/img/cubes/ghost_video.png %%DATADIR%%/img/cubes/gradient1.png %%DATADIR%%/img/cubes/gradient2.png +%%DATADIR%%/img/cubes/halt.png %%DATADIR%%/img/cubes/help.png %%DATADIR%%/img/cubes/hint.png %%DATADIR%%/img/cubes/hint_small.png @@ -1051,6 +1091,9 @@ %%DATADIR%%/img/cubes/internet.png %%DATADIR%%/img/cubes/invert_tag.png %%DATADIR%%/img/cubes/invert_tag_all.png +%%DATADIR%%/img/cubes/invert_tag_down.png +%%DATADIR%%/img/cubes/invert_tag_up.png +%%DATADIR%%/img/cubes/invert_tag_visible.png %%DATADIR%%/img/cubes/joystick.png %%DATADIR%%/img/cubes/keyboard.png %%DATADIR%%/img/cubes/kill.png @@ -1070,9 +1113,11 @@ %%DATADIR%%/img/cubes/media_back.png %%DATADIR%%/img/cubes/media_fastbackward.png %%DATADIR%%/img/cubes/media_fastforward.png +%%DATADIR%%/img/cubes/media_lower_volume.png %%DATADIR%%/img/cubes/media_next.png %%DATADIR%%/img/cubes/media_pause.png %%DATADIR%%/img/cubes/media_play.png +%%DATADIR%%/img/cubes/media_raise_volume.png %%DATADIR%%/img/cubes/media_stop.png %%DATADIR%%/img/cubes/merge.png %%DATADIR%%/img/cubes/merge_nok.png @@ -1105,8 +1150,12 @@ %%DATADIR%%/img/cubes/qmc2_mess_logo_big.png %%DATADIR%%/img/cubes/qmc2_mess_logo_small.png %%DATADIR%%/img/cubes/qmc2_mess_splash.png +%%DATADIR%%/img/cubes/qmc2_ume_logo_big.png +%%DATADIR%%/img/cubes/qmc2_ume_logo_small.png +%%DATADIR%%/img/cubes/qmc2_ume_splash.png %%DATADIR%%/img/cubes/qt-logo.png %%DATADIR%%/img/cubes/redo.png +%%DATADIR%%/img/cubes/refresh.png %%DATADIR%%/img/cubes/release.png %%DATADIR%%/img/cubes/release_alternate.png %%DATADIR%%/img/cubes/reload.png @@ -1145,6 +1194,7 @@ %%DATADIR%%/img/cubes/tag.png %%DATADIR%%/img/cubes/tagged.png %%DATADIR%%/img/cubes/tagged_all.png +%%DATADIR%%/img/cubes/tagged_visible.png %%DATADIR%%/img/cubes/tape.png %%DATADIR%%/img/cubes/terminate.png %%DATADIR%%/img/cubes/thumbnail.png @@ -1162,6 +1212,7 @@ %%DATADIR%%/img/cubes/unlock.png %%DATADIR%%/img/cubes/untagged.png %%DATADIR%%/img/cubes/untagged_all.png +%%DATADIR%%/img/cubes/untagged_visible.png %%DATADIR%%/img/cubes/up.png %%DATADIR%%/img/cubes/url.png %%DATADIR%%/img/cubes/version.png @@ -1232,6 +1283,7 @@ %%DATADIR%%/img/ghost_video.png %%DATADIR%%/img/gradient1.png %%DATADIR%%/img/gradient2.png +%%DATADIR%%/img/halt.png %%DATADIR%%/img/help.png %%DATADIR%%/img/hint.png %%DATADIR%%/img/hint_small.png @@ -1242,6 +1294,9 @@ %%DATADIR%%/img/internet.png %%DATADIR%%/img/invert_tag.png %%DATADIR%%/img/invert_tag_all.png +%%DATADIR%%/img/invert_tag_down.png +%%DATADIR%%/img/invert_tag_up.png +%%DATADIR%%/img/invert_tag_visible.png %%DATADIR%%/img/joystick.png %%DATADIR%%/img/keyboard.png %%DATADIR%%/img/kill.png @@ -1261,9 +1316,11 @@ %%DATADIR%%/img/media_back.png %%DATADIR%%/img/media_fastbackward.png %%DATADIR%%/img/media_fastforward.png +%%DATADIR%%/img/media_lower_volume.png %%DATADIR%%/img/media_next.png %%DATADIR%%/img/media_pause.png %%DATADIR%%/img/media_play.png +%%DATADIR%%/img/media_raise_volume.png %%DATADIR%%/img/media_stop.png %%DATADIR%%/img/merge.png %%DATADIR%%/img/merge_nok.png @@ -1296,8 +1353,12 @@ %%DATADIR%%/img/qmc2_mess_logo_big.png %%DATADIR%%/img/qmc2_mess_logo_small.png %%DATADIR%%/img/qmc2_mess_splash.png +%%DATADIR%%/img/qmc2_ume_logo_big.png +%%DATADIR%%/img/qmc2_ume_logo_small.png +%%DATADIR%%/img/qmc2_ume_splash.png %%DATADIR%%/img/qt-logo.png %%DATADIR%%/img/redo.png +%%DATADIR%%/img/refresh.png %%DATADIR%%/img/release.png %%DATADIR%%/img/release_alternate.png %%DATADIR%%/img/reload.png @@ -1336,6 +1397,7 @@ %%DATADIR%%/img/tag.png %%DATADIR%%/img/tagged.png %%DATADIR%%/img/tagged_all.png +%%DATADIR%%/img/tagged_visible.png %%DATADIR%%/img/tape.png %%DATADIR%%/img/terminate.png %%DATADIR%%/img/thumbnail.png @@ -1353,6 +1415,7 @@ %%DATADIR%%/img/unlock.png %%DATADIR%%/img/untagged.png %%DATADIR%%/img/untagged_all.png +%%DATADIR%%/img/untagged_visible.png %%DATADIR%%/img/up.png %%DATADIR%%/img/url.png %%DATADIR%%/img/version.png @@ -1381,15 +1444,17 @@ %%DATADIR%%/lng/qmc2_sv.qm %%DATADIR%%/lng/qmc2_us.qm %%DATADIR%%/opt/MAME/template.xml -%%DATADIR%%/opt/MAMEUIFX32/template.xml %%DATADIR%%/opt/MESS/template.xml %%DATADIR%%/opt/SDLMAME/template.xml %%DATADIR%%/opt/SDLMESS/template.xml +%%DATADIR%%/opt/SDLUME/template.xml +%%DATADIR%%/opt/UME/template.xml %%DATADIR%%/opt/template.xml +@dirrm %%DATADIR%%/opt/UME +@dirrm %%DATADIR%%/opt/SDLUME @dirrm %%DATADIR%%/opt/SDLMESS @dirrm %%DATADIR%%/opt/SDLMAME @dirrm %%DATADIR%%/opt/MESS -@dirrm %%DATADIR%%/opt/MAMEUIFX32 @dirrm %%DATADIR%%/opt/MAME @dirrm %%DATADIR%%/opt @dirrm %%DATADIR%%/lng @@ -1400,13 +1465,13 @@ @dirrm %%DATADIR%%/img/circles @dirrm %%DATADIR%%/img @dirrm %%DATADIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/us/img %%PORTDOCS%%@dirrm %%DOCSDIR%%/html/us %%PORTDOCS%%@dirrm %%DOCSDIR%%/html/sv %%PORTDOCS%%@dirrm %%DOCSDIR%%/html/ro %%PORTDOCS%%@dirrm %%DOCSDIR%%/html/pt %%PORTDOCS%%@dirrm %%DOCSDIR%%/html/pl %%PORTDOCS%%@dirrm %%DOCSDIR%%/html/it +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/images %%PORTDOCS%%@dirrm %%DOCSDIR%%/html/fr %%PORTDOCS%%@dirrm %%DOCSDIR%%/html/es %%PORTDOCS%%@dirrm %%DOCSDIR%%/html/el >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB21910656DC for ; Tue, 25 Sep 2012 18:10:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 852308FC33 for ; Tue, 25 Sep 2012 18:10:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAMbG019852 for ; Tue, 25 Sep 2012 18:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAMkQ019851; Tue, 25 Sep 2012 18:10:22 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:22 GMT Resent-Message-Id: <201209251810.q8PIAMkQ019851@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F3AE106566C for ; Tue, 25 Sep 2012 18:04:32 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id E8B4C8FC12 for ; Tue, 25 Sep 2012 18:04:31 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 9520D34037 for ; Wed, 26 Sep 2012 03:04:24 +0900 (JST) Message-Id: <20120926022243.40dad6e3edda2547b64a1b47@yahoo.com> Date: Wed, 26 Sep 2012 02:22:43 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171997: emulators/tme: Update to version 0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:22 -0000 >Number: 171997 >Category: ports >Synopsis: emulators/tme: Update to version 0.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.8 New file: files/patch-ic__ieee754__iee754-misc-auto.sh files/patch-ic__sparc__sparc-execute.c files/patch-machine__sun__sun-bwtwo.c Remove file: files/patch-configure >How-To-Repeat: >Fix: diff -urN /usr/ports/emulators/tme/Makefile emulators/tme/Makefile --- /usr/ports/emulators/tme/Makefile 2012-07-25 15:32:06.000000000 +0900 +++ emulators/tme/Makefile 2012-09-25 03:31:41.000000000 +0900 @@ -1,28 +1,51 @@ -# New ports collection makefile for: tme -# Date created: 2006-12-14 -# Whom: trasz -# +# Created by: trasz # $FreeBSD: ports/emulators/tme/Makefile,v 1.15 2012/07/25 06:32:06 cs Exp $ -# PORTNAME= tme -PORTVERSION= 0.6 -PORTREVISION= 3 +PORTVERSION= 0.8 CATEGORIES= emulators MASTER_SITES= http://people.csail.mit.edu/fredette/tme/ MAINTAINER= ports@FreeBSD.org COMMENT= Emulator for Sun 2/120, 3/150, and SPARCstation 2 machines -GNU_CONFIGURE= yes +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/COPYING + +OPTIONS_DEFINE= EXAMPLES + +USE_GNOME= gtk20 +USE_PERL5= yes USE_GMAKE= yes -USE_XORG= x11 -USE_GNOME= gtk12 -CONFIGURE_ARGS+= --disable-shared +USE_AUTOTOOLS= libtool libltdl +CONFIGURE_ENV= ac_cv_have_isinff=no +CONFIGURE_ARGS= --datadir=${WRKDIR}/tmproot --disable-warnings MAKE_ENV= LANG=C -MAKE_JOBS_UNSAFE= yes +MAKE_JOBS_UNSAFE=yes + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${WRKSRC}/ic/ieee754/.libs +LDFLAGS+= -L${LOCALBASE}/lib + +.include post-patch: - ${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/libtme/module.c + @${REINPLACE_CMD} -e '/misc_hosts/s|= no|= xno|' \ + ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|\.\./ieee754|$$(top_builddir)/ic/ieee754|g' \ + ${WRKSRC}/ic/m68k/Makefile.in + @${REINPLACE_CMD} -e 's|\.\./ieee754|$$(top_builddir)/ic/ieee754|g' \ + ${WRKSRC}/ic/sparc/Makefile.in + @${REINPLACE_CMD} -e '/^#ifdef/s|\*/||' \ + ${WRKSRC}/libtme/misc.c + @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' \ + ${WRKSRC}/libtme/module.c + +post-install: +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} + @(cd ${WRKDIR}/tmproot/examples/tme \ + && ${COPYTREE_SHARE} . ${EXAMPLESDIR}) +.endif .include diff -urN /usr/ports/emulators/tme/distinfo emulators/tme/distinfo --- /usr/ports/emulators/tme/distinfo 2011-07-03 02:14:17.000000000 +0900 +++ emulators/tme/distinfo 2011-03-20 05:48:19.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (tme-0.6.tar.gz) = 97293c113cbcca0da533c26ec576dbad4ed6f8c702875b3b7949c6538a063f19 -SIZE (tme-0.6.tar.gz) = 1700273 +SHA256 (tme-0.8.tar.gz) = 7aa07fd60a574b2a248bbd22bfa68bcb39e6dddd4a678791b1a085e11d1badfd +SIZE (tme-0.8.tar.gz) = 2100123 diff -urN /usr/ports/emulators/tme/files/patch-configure emulators/tme/files/patch-configure --- /usr/ports/emulators/tme/files/patch-configure 2007-02-03 18:49:45.000000000 +0900 +++ emulators/tme/files/patch-configure 1970-01-01 09:00:00.000000000 +0900 @@ -1,29 +0,0 @@ ---- configure.orig Sun May 15 03:26:11 2005 -+++ configure Fri Feb 2 16:39:50 2007 -@@ -8890,7 +8890,7 @@ - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then -- ac_cv_have_isinff=yes -+ ac_cv_have_isinff=no - else - echo "$as_me: failed program was:" >&5 - sed 's/^/| /' conftest.$ac_ext >&5 -@@ -15113,7 +15113,7 @@ - ;; - - freebsd*) -- objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` -+ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo elf` - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) -@@ -25853,7 +25853,7 @@ - enable_warnings=yes - fi; - if test "x$enable_warnings" = "xyes" -a "x$GCC" = "xyes"; then -- CFLAGS="${CFLAGS-} -Wundef -Wall -Werror" -+ CFLAGS="${CFLAGS-} -Wundef -Wall" - CXXFLAGS="${CXXFLAGS-} -W" - fi - diff -urN /usr/ports/emulators/tme/files/patch-host__bsd__bsd-bpf.c emulators/tme/files/patch-host__bsd__bsd-bpf.c --- /usr/ports/emulators/tme/files/patch-host__bsd__bsd-bpf.c 1970-01-01 09:00:00.000000000 +0900 +++ emulators/tme/files/patch-host__bsd__bsd-bpf.c 2012-09-12 03:25:55.000000000 +0900 @@ -0,0 +1,28 @@ +--- host/bsd/bsd-if.c.orig 2003-10-16 02:48:23.000000000 +0000 ++++ host/bsd/bsd-if.c 2012-07-07 12:24:22.000000000 +0000 +@@ -71,14 +72,15 @@ + + /* this macro helps us size a struct ifreq: */ + #ifdef HAVE_SOCKADDR_SA_LEN +-#define SIZEOF_IFREQ(ifr) (sizeof(ifr->ifr_name) + ifr->ifr_addr.sa_len) ++#define SIZEOF_IFREQ(ifr) \ ++( sizeof(ifr->ifr_name) + (ifr->ifr_addr.sa_len > sizeof(ifr->ifr_ifru) ? ifr->ifr_addr.sa_len : sizeof(ifr->ifr_ifru)) ) + #else /* !HAVE_SOCKADDR_SA_LEN */ + #define SIZEOF_IFREQ(ifr) (sizeof(ifr->ifr_name) + sizeof(struct sockaddr)) + #endif /* !HAVE_SOCKADDR_SA_LEN */ + + /* this finds a network interface: */ + int + tme_bsd_if_find(const char *ifr_name_user, struct ifreq **_ifreq, tme_uint8_t **_if_addr, unsigned int *_if_addr_size) + { + int saved_errno; + int dummy_fd; +@@ -175,7 +192,7 @@ + if (ifr_user == NULL + && (ifr_name_user != NULL + ? !strncmp(ifr->ifr_name, ifr_name_user, sizeof(ifr->ifr_name)) +- : !(ifr->ifr_flags & IFF_LOOPBACK))) { ++ : !(saved_flags & IFF_LOOPBACK))) { + ifr_user = ifr; + } + } diff -urN /usr/ports/emulators/tme/files/patch-ic__ieee754__iee754-misc-auto.sh emulators/tme/files/patch-ic__ieee754__iee754-misc-auto.sh --- /usr/ports/emulators/tme/files/patch-ic__ieee754__iee754-misc-auto.sh 1970-01-01 09:00:00.000000000 +0900 +++ emulators/tme/files/patch-ic__ieee754__iee754-misc-auto.sh 2012-09-12 03:26:03.000000000 +0900 @@ -0,0 +1,11 @@ +--- ic/ieee754/ieee754-misc-auto.sh.orig 2007-08-24 01:05:43.000000000 +0000 ++++ ic/ieee754/ieee754-misc-auto.sh +@@ -106,7 +106,7 @@ typedef float tme_ieee754_${precision}_b + #elif (TME_FLOAT_FORMAT_IEEE754_${capprecision}_BUILTIN == TME_FLOAT_FORMAT_DOUBLE) + typedef double tme_ieee754_${precision}_builtin_t; + #define tme_float_value_ieee754_${precision}_builtin tme_float_value_double +-#elif (TME_FLOAT_FORMAT_IEEE754_${capprecision}_BUILTIN == TME_FLOAT_FORMAT_LONG_DOUBLE) ++#elif (defined(_TME_HAVE_LONG_DOUBLE) && (TME_FLOAT_FORMAT_IEEE754_${capprecision}_BUILTIN == TME_FLOAT_FORMAT_LONG_DOUBLE)) + typedef long double tme_ieee754_${precision}_builtin_t; + #define tme_float_value_ieee754_${precision}_builtin tme_float_value_long_double + #endif diff -urN /usr/ports/emulators/tme/files/patch-ic__sparc__sparc-execute.c emulators/tme/files/patch-ic__sparc__sparc-execute.c --- /usr/ports/emulators/tme/files/patch-ic__sparc__sparc-execute.c 1970-01-01 09:00:00.000000000 +0900 +++ emulators/tme/files/patch-ic__sparc__sparc-execute.c 2012-09-12 03:26:10.000000000 +0900 @@ -0,0 +1,11 @@ +--- ic/sparc/sparc-execute.c 2010-02-21 06:58:15.000000000 +0900 ++++ ic/sparc/sparc-execute.c 2010-04-14 22:55:50.000000000 +0900 +@@ -612,7 +612,7 @@ + != pc_previous)) { + if (__tme_predict_true(((tme_sparc_ireg_t) (pc + sizeof(tme_uint32_t))) + == ic->tme_sparc_ireg(TME_SPARC_IREG_PC_NEXT))) { +- tme_recode_thunk_off_t insns_thunk; ++ tme_recode_thunk_off_t insns_thunk = 0; /* XXX gcc -Wuninitialized */ + + /* if the current instruction TLB entry is not the invalid TLB + entry, and there is an instructions thunk for this PC: */ diff -urN /usr/ports/emulators/tme/files/patch-libtme-module.c emulators/tme/files/patch-libtme-module.c --- /usr/ports/emulators/tme/files/patch-libtme-module.c 2007-09-27 02:19:03.000000000 +0900 +++ emulators/tme/files/patch-libtme-module.c 2012-09-12 03:56:58.000000000 +0900 @@ -1,6 +1,20 @@ ---- libtme/module.c.orig Wed Jan 26 13:59:24 2005 -+++ libtme/module.c Sun Dec 17 19:11:37 2006 -@@ -107,13 +107,14 @@ +--- libtme/module.c.orig 2010-06-06 04:04:42.000000000 +0900 ++++ libtme/module.c 2011-03-20 06:00:02.000000000 +0900 +@@ -62,11 +62,13 @@ + #endif /* !lt_ptr_t */ + #endif /* !lt_ptr */ + ++#if 0 + /* similarly, the installed libltdl may be so recent that its ltdl.h + renames lt_preloaded_symbols with a macro, to a name different from + what our libtool script makes. it's possible that the renaming + macro is meant to be undefined to handle this problem: */ + #undef lt_preloaded_symbols ++#endif + + /* types: */ + struct tme_module { +@@ -113,13 +115,14 @@ FILE *modules_index; /* pass over the search path environment variables: */ diff -urN /usr/ports/emulators/tme/files/patch-machine__sun__sun-bwtwo.c emulators/tme/files/patch-machine__sun__sun-bwtwo.c --- /usr/ports/emulators/tme/files/patch-machine__sun__sun-bwtwo.c 1970-01-01 09:00:00.000000000 +0900 +++ emulators/tme/files/patch-machine__sun__sun-bwtwo.c 2012-09-12 03:26:24.000000000 +0900 @@ -0,0 +1,27 @@ +--- machine/sun/sun-bwtwo.c.orig 2009-11-08 12:03:58.000000000 -0500 ++++ machine/sun/sun-bwtwo.c 2011-10-06 20:52:30.000000000 -0400 +@@ -339,6 +339,7 @@ + { + struct tme_sunbw2 *sunbw2; + int rc; ++ tme_uint16_t v; + + /* start the sunbw2 structure: */ + sunbw2 = tme_new0(struct tme_sunbw2, 1); +@@ -365,12 +366,10 @@ + case TME_SUNBW2_TYPE_OLD_ONBOARD: + + /* set our initial CSR: */ +- sunbw2->tme_sunbw2_csr +- = tme_htobe_u16(TME_SUNBW2_CSR_ENABLE_VIDEO +- | (sunbw2->tme_sunbw2_sunfb.tme_sunfb_size == TME_SUNFB_SIZE_1024_1024 +- ? TME_SUNBW2_CSR_JUMPER_HIRES +- : 0)); +- ++ v = TME_SUNBW2_CSR_ENABLE_VIDEO | (sunbw2->tme_sunbw2_sunfb.tme_sunfb_size ++ == TME_SUNFB_SIZE_1024_1024 ++ ? TME_SUNBW2_CSR_JUMPER_HIRES : 0); ++ sunbw2->tme_sunbw2_csr = tme_htobe_u16(v); + break; + } + diff -urN /usr/ports/emulators/tme/pkg-plist emulators/tme/pkg-plist --- /usr/ports/emulators/tme/pkg-plist 2007-09-27 02:19:03.000000000 +0900 +++ emulators/tme/pkg-plist 2012-09-12 03:48:49.000000000 +0900 @@ -1,125 +1,208 @@ -bin/tme-sun-idprom bin/tme-sun-eeprom +bin/tme-sun-idprom bin/tmesh +include/tme/bus/upa.h +include/tme/common.h +include/tme/completion.h +include/tme/connection.h +include/tme/element.h include/tme/generic/bus-device.h include/tme/generic/bus.h -include/tme/generic/ic.h -include/tme/generic/serial.h +include/tme/generic/disk.h include/tme/generic/ethernet.h include/tme/generic/fb.h -include/tme/generic/scsi.h -include/tme/generic/disk.h -include/tme/generic/tape.h -include/tme/generic/mouse.h include/tme/generic/float.h +include/tme/generic/ic.h include/tme/generic/keyboard.h -@dirrm include/tme/generic -include/tme/ic/m68k.h +include/tme/generic/mouse.h +include/tme/generic/scsi.h +include/tme/generic/serial.h +include/tme/generic/tape.h +include/tme/hash.h +include/tme/host/recode-mmap.h +include/tme/host/recode-x86.h include/tme/ic/am9513.h -include/tme/ic/z8530.h -include/tme/ic/mm58167.h -include/tme/ic/isil7170.h -include/tme/ic/i825x6.h -include/tme/ic/sparc.h -include/tme/ic/mk48txx.h -include/tme/ic/nec765.h include/tme/ic/bt458.h -include/tme/ic/ieee754.h +include/tme/ic/i825x6.h include/tme/ic/ieee754-auto.h include/tme/ic/ieee754-ops-auto.h -@dirrm include/tme/ic +include/tme/ic/ieee754.h +include/tme/ic/isil7170.h +include/tme/ic/m68k.h +include/tme/ic/mk48txx.h +include/tme/ic/mm58167.h +include/tme/ic/nec765.h +include/tme/ic/sparc.h +include/tme/ic/z8530.h +include/tme/log.h include/tme/machine/sun.h -@dirrm include/tme/machine -include/tme/scsi/scsi-disk.h -include/tme/scsi/scsi-tape.h -include/tme/scsi/scsi-cdrom.h -include/tme/scsi/scsi-msg.h +include/tme/memory-auto.h +include/tme/memory.h +include/tme/misc.h +include/tme/module.h +include/tme/recode.h +include/tme/runlength.h include/tme/scsi/scsi-cdb.h +include/tme/scsi/scsi-cdrom.h include/tme/scsi/scsi-device.h -@dirrm include/tme/scsi -include/tme/memory.h -include/tme/common.h -include/tme/connection.h -include/tme/element.h +include/tme/scsi/scsi-disk.h +include/tme/scsi/scsi-msg.h +include/tme/scsi/scsi-tape.h include/tme/threads.h -include/tme/module.h -include/tme/log.h include/tme/tme.h -include/tme/misc.h -include/tme/hash.h include/tme/tmesh.h -include/tme/memory-auto.h -@dirrm include/tme -include/ltdl.h +include/tme/token.h +lib/libtme-generic.a +lib/libtme-generic.la +lib/libtme-generic.so +lib/libtme-generic.so.0 +lib/libtme-ieee754.a +lib/libtme-ieee754.la +lib/libtme-ieee754.so +lib/libtme-ieee754.so.0 +lib/libtme.a +lib/libtme.la +lib/libtme.so +lib/libtme.so.0 +lib/libtmesh.a +lib/libtmesh.la +lib/libtmesh.so +lib/libtmesh.so.0 +lib/tme/libtme-machine-sun.a +lib/tme/libtme-machine-sun.la +lib/tme/libtme-machine-sun.so +lib/tme/libtme-machine-sun.so.0 lib/tme/tme-plugins.txt -lib/tme/tme_generic.la +lib/tme/tme_bus_multibus.a +lib/tme/tme_bus_multibus.la +lib/tme/tme_bus_multibus.so +lib/tme/tme_bus_multibus.so.0 +lib/tme/tme_bus_sbus.a +lib/tme/tme_bus_sbus.la +lib/tme/tme_bus_sbus.so +lib/tme/tme_bus_sbus.so.0 lib/tme/tme_generic.a -lib/tme/tme_ic_m68k.la -lib/tme/tme_ic_m68k.a -lib/tme/tme_ic_sparc.la -lib/tme/tme_ic_sparc.a -lib/tme/tme_ic_am9513.la +lib/tme/tme_generic.la +lib/tme/tme_generic.so +lib/tme/tme_generic.so.0 +lib/tme/tme_host_bsd.a +lib/tme/tme_host_bsd.la +lib/tme/tme_host_bsd.so +lib/tme/tme_host_bsd.so.0 +lib/tme/tme_host_gtk.a +lib/tme/tme_host_gtk.la +lib/tme/tme_host_gtk.so +lib/tme/tme_host_gtk.so.0 +lib/tme/tme_host_posix.a +lib/tme/tme_host_posix.la +lib/tme/tme_host_posix.so +lib/tme/tme_host_posix.so.0 +lib/tme/tme_ic_ad184x.a +lib/tme/tme_ic_ad184x.la +lib/tme/tme_ic_ad184x.so +lib/tme/tme_ic_ad184x.so.0 +lib/tme/tme_ic_am7930.a +lib/tme/tme_ic_am7930.la +lib/tme/tme_ic_am7930.so +lib/tme/tme_ic_am7930.so.0 +lib/tme/tme_ic_am7990.a +lib/tme/tme_ic_am7990.la +lib/tme/tme_ic_am7990.so +lib/tme/tme_ic_am7990.so.0 lib/tme/tme_ic_am9513.a -lib/tme/tme_ic_mm58167.la -lib/tme/tme_ic_mm58167.a -lib/tme/tme_ic_z8530.la -lib/tme/tme_ic_z8530.a -lib/tme/tme_ic_i825x6.la +lib/tme/tme_ic_am9513.la +lib/tme/tme_ic_am9513.so +lib/tme/tme_ic_am9513.so.0 lib/tme/tme_ic_i825x6.a -lib/tme/tme_ic_isil7170.la +lib/tme/tme_ic_i825x6.la +lib/tme/tme_ic_i825x6.so +lib/tme/tme_ic_i825x6.so.0 lib/tme/tme_ic_isil7170.a -lib/tme/tme_ic_ncr5380.la +lib/tme/tme_ic_isil7170.la +lib/tme/tme_ic_isil7170.so +lib/tme/tme_ic_isil7170.so.0 +lib/tme/tme_ic_lsi64854.a +lib/tme/tme_ic_lsi64854.la +lib/tme/tme_ic_lsi64854.so +lib/tme/tme_ic_lsi64854.so.0 +lib/tme/tme_ic_m68k.a +lib/tme/tme_ic_m68k.la +lib/tme/tme_ic_m68k.so +lib/tme/tme_ic_m68k.so.0 +lib/tme/tme_ic_mk48txx.a +lib/tme/tme_ic_mk48txx.la +lib/tme/tme_ic_mk48txx.so +lib/tme/tme_ic_mk48txx.so.0 +lib/tme/tme_ic_mm58167.a +lib/tme/tme_ic_mm58167.la +lib/tme/tme_ic_mm58167.so +lib/tme/tme_ic_mm58167.so.0 lib/tme/tme_ic_ncr5380.a -lib/tme/tme_ic_am7930.la -lib/tme/tme_ic_am7930.a -lib/tme/tme_ic_am7990.la -lib/tme/tme_ic_am7990.a -lib/tme/tme_ic_ncr53c9x.la +lib/tme/tme_ic_ncr5380.la +lib/tme/tme_ic_ncr5380.so +lib/tme/tme_ic_ncr5380.so.0 lib/tme/tme_ic_ncr53c9x.a -lib/tme/tme_ic_mk48txx.la -lib/tme/tme_ic_mk48txx.a -lib/tme/tme_ic_lsi64854.la -lib/tme/tme_ic_lsi64854.a -lib/tme/tme_ic_nec765.la +lib/tme/tme_ic_ncr53c9x.la +lib/tme/tme_ic_ncr53c9x.so +lib/tme/tme_ic_ncr53c9x.so.0 +lib/tme/tme_ic_ncr89c105.a +lib/tme/tme_ic_ncr89c105.la +lib/tme/tme_ic_ncr89c105.so +lib/tme/tme_ic_ncr89c105.so.0 lib/tme/tme_ic_nec765.a -lib/tme/libtme-machine-sun.la -lib/tme/libtme-machine-sun.a -lib/tme/tme_machine_sun2.la +lib/tme/tme_ic_nec765.la +lib/tme/tme_ic_nec765.so +lib/tme/tme_ic_nec765.so.0 +lib/tme/tme_ic_sparc.a +lib/tme/tme_ic_sparc.la +lib/tme/tme_ic_sparc.so +lib/tme/tme_ic_sparc.so.0 +lib/tme/tme_ic_stp2024.a +lib/tme/tme_ic_stp2024.la +lib/tme/tme_ic_stp2024.so +lib/tme/tme_ic_stp2024.so.0 +lib/tme/tme_ic_stp22xx.a +lib/tme/tme_ic_stp22xx.la +lib/tme/tme_ic_stp22xx.so +lib/tme/tme_ic_stp22xx.so.0 +lib/tme/tme_ic_z8530.a +lib/tme/tme_ic_z8530.la +lib/tme/tme_ic_z8530.so +lib/tme/tme_ic_z8530.so.0 lib/tme/tme_machine_sun2.a -lib/tme/tme_machine_sun3.la +lib/tme/tme_machine_sun2.la +lib/tme/tme_machine_sun2.so +lib/tme/tme_machine_sun2.so.0 lib/tme/tme_machine_sun3.a -lib/tme/tme_machine_sun4.la +lib/tme/tme_machine_sun3.la +lib/tme/tme_machine_sun3.so +lib/tme/tme_machine_sun3.so.0 lib/tme/tme_machine_sun4.a -lib/tme/tme_host_posix.la -lib/tme/tme_host_posix.a -lib/tme/tme_host_bsd.la -lib/tme/tme_host_bsd.a -lib/tme/tme_host_gtk.la -lib/tme/tme_host_gtk.a -lib/tme/tme_bus_multibus.la -lib/tme/tme_bus_multibus.a -lib/tme/tme_bus_sbus.la -lib/tme/tme_bus_sbus.a -lib/tme/tme_serial_kb.la -lib/tme/tme_serial_kb.a -lib/tme/tme_scsi.la +lib/tme/tme_machine_sun4.la +lib/tme/tme_machine_sun4.so +lib/tme/tme_machine_sun4.so.0 lib/tme/tme_scsi.a +lib/tme/tme_scsi.la +lib/tme/tme_scsi.so +lib/tme/tme_scsi.so.0 +lib/tme/tme_serial_kb.a +lib/tme/tme_serial_kb.la +lib/tme/tme_serial_kb.so +lib/tme/tme_serial_kb.so.0 lib/tme/tmeconfig.h +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SUN-ULTRA-1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SUN2-MULTIBUS +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SUN3-CARRERA +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SUN4-75 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/my-sun-macros.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sun-keyboards.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sun3-carrera-eeprom.txt +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% @dirrm lib/tme -lib/libltdl.la -lib/libltdl.a -lib/libtme.la -lib/libtme.a -lib/libtme-generic.la -lib/libtme-generic.a -lib/libtme-ieee754.la -lib/libtme-ieee754.a -lib/libtmesh.la -lib/libtmesh.a -share/examples/tme/sun-keyboards.txt -share/examples/tme/my-sun-macros.txt -share/examples/tme/SUN2-MULTIBUS -share/examples/tme/SUN3-CARRERA -share/examples/tme/sun3-carrera-eeprom.txt -share/examples/tme/SUN4-75 -@dirrm share/examples/tme +@dirrm include/tme/scsi +@dirrm include/tme/machine +@dirrm include/tme/ic +@dirrm include/tme/host +@dirrm include/tme/generic +@dirrm include/tme/bus +@dirrm include/tme >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 201BF10656E5 for ; Tue, 25 Sep 2012 18:10:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D7CB88FC14 for ; Tue, 25 Sep 2012 18:10:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAMIP019911 for ; Tue, 25 Sep 2012 18:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAMiI019907; Tue, 25 Sep 2012 18:10:22 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:22 GMT Resent-Message-Id: <201209251810.q8PIAMiI019907@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 366F11065674 for ; Tue, 25 Sep 2012 18:04:36 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id 078778FC15 for ; Tue, 25 Sep 2012 18:04:35 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id 42F8D47C036 for ; Wed, 26 Sep 2012 03:04:34 +0900 (JST) Message-Id: <20120926022247.a48373778e6c2c0a8a4c3ad2@yahoo.com> Date: Wed, 26 Sep 2012 02:22:47 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171998: ftp/hsftp: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:23 -0000 >Number: 171998 >Category: ports >Synopsis: ftp/hsftp: Support USE_READLINE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Support USE_READLINE - Add LICENSE - Add MAKE_JOBS_SAFE >How-To-Repeat: >Fix: diff -urN /usr/ports/ftp/hsftp/Makefile ftp/hsftp/Makefile --- /usr/ports/ftp/hsftp/Makefile 2012-06-12 19:34:43.000000000 +0900 +++ ftp/hsftp/Makefile 2012-09-25 03:31:47.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: hsftp -# Date created: Mon 03 Jul 2000 -# Whom: will -# +# Created by: will # $FreeBSD: ports/ftp/hsftp/Makefile,v 1.18 2012/06/12 10:34:43 bapt Exp $ -# PORTNAME= hsftp PORTVERSION= 1.15 @@ -15,22 +11,32 @@ MAINTAINER= ports@FreeBSD.org COMMENT= FTP emulator that uses ssh to transport commands/data +LICENSE= GPLv2 + +OPTIONS_DEFINE= OPENSSH READLINE +OPTIONS_DEFAULT=READLINE +OPENSSH_DESC= Build with OpenSSH support +READLINE_DESC= Enable readline support + GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-readline MAKEFILE= makefile +MAKE_JOBS_SAFE= yes + MAN1= hsftp.1 PLIST_FILES= bin/hsftp -OPTIONS_DEFINE= OPENSSH -OPENSSH_DESC= Build with OpenSSH support - .include .if ${PORT_OPTIONS:MOPENSSH} -RUN_DEPENDS+= ssh:${PORTSDIR}/security/openssh +RUN_DEPENDS+= ssh:${PORTSDIR}/security/openssh-portable CONFIGURE_ARGS+= --with-openssh .endif +.if ${PORT_OPTIONS:MREADLINE} +USE_READLINE= yes +CONFIGURE_ARGS+= --with-readline +.endif + pre-patch: ${REINPLACE_CMD} -e '2343d' ${WRKSRC}/configure >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5A1BC106564A for ; Tue, 25 Sep 2012 18:10:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 377A38FC2D for ; Tue, 25 Sep 2012 18:10:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIANrb019994 for ; Tue, 25 Sep 2012 18:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIANjF019985; Tue, 25 Sep 2012 18:10:23 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:23 GMT Resent-Message-Id: <201209251810.q8PIANjF019985@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 543B6106564A for ; Tue, 25 Sep 2012 18:04:40 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 25DDB8FC17 for ; Tue, 25 Sep 2012 18:04:40 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 7DA404AC036 for ; Wed, 26 Sep 2012 03:04:38 +0900 (JST) Message-Id: <20120926022251.2f85c343ab1b243b9fc73501@yahoo.com> Date: Wed, 26 Sep 2012 02:22:51 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/171999: ftp/ncftp2: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:23 -0000 >Number: 171999 >Category: ports >Synopsis: ftp/ncftp2: Support USE_READLINE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Support USE_READLINE >How-To-Repeat: >Fix: diff -urN /usr/ports/ftp/ncftp2/Makefile ftp/ncftp2/Makefile --- /usr/ports/ftp/ncftp2/Makefile 2012-02-13 14:44:23.000000000 +0900 +++ ftp/ncftp2/Makefile 2012-09-25 03:31:57.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: ncftp2 -# Date created: 4 Nov 1994 -# Whom: ache -# +# Created by: ache # $FreeBSD: ports/ftp/ncftp2/Makefile,v 1.56 2012/02/13 05:44:23 jpaetzel Exp $ -# PORTNAME= ncftp PORTVERSION= 2.4.3 @@ -14,23 +10,45 @@ MAINTAINER= ports@FreeBSD.org COMMENT= FTP replacement with advanced user interface +LICENSE= GPLv2 + +OPTIONS_DEFINE= READLINE +OPTIONS_DEFAULT=READLINE +READLINE_DESC= Enable readline support + +USE_NCURSES= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= ac_cv_func_getmaxyx=yes +MAKE_JOBS_SAFE= yes + +MAN1= ncftp2.1 +PLIST_FILES= bin/${LATEST_LINK} + +.include + +.if ${PORT_OPTIONS:MREADLINE} +USE_READLINE= yes +.else +CONFIGURE_ARGS+=--disable-readline +.endif + .if defined(INSTALL_AS_NCFTP) LATEST_LINK= ncftp .else LATEST_LINK= ncftp2 .endif -PLIST_FILES= bin/${LATEST_LINK} -GNU_CONFIGURE= yes -CONFIGURE_ENV= ac_cv_func_getmaxyx=yes ac_cv_lib_readline=yes -MAN1= ncftp2.1 -pre-fetch: - @${ECHO} "" - @${ECHO} "Use INSTALL_AS_NCFTP=yes to install ncftp1 as ${PREFIX}/bin/ncftp" - @${ECHO} "" +pre-everything:: + @${ECHO_MSG} "" + @${ECHO_MSG} "Use INSTALL_AS_NCFTP=yes to install ncftp2 as ${PREFIX}/bin/ncftp" + @${ECHO_MSG} "" + +post-patch: + @${REINPLACE_CMD} -e \ + 's|^exdirs=.*|exdirs=""|' ${WRKSRC}/configure do-install: - $(INSTALL_PROGRAM) $(WRKSRC)/ncftp $(PREFIX)/bin/${LATEST_LINK} - $(INSTALL_MAN) $(WRKSRC)/ncftp.1 $(PREFIX)/man/man1/ncftp2.1 + ${INSTALL_PROGRAM} ${WRKSRC}/ncftp ${PREFIX}/bin/${LATEST_LINK} + ${INSTALL_MAN} ${WRKSRC}/ncftp.1 ${MANPREFIX}/man/man1/ncftp2.1 .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C74541065679 for ; Tue, 25 Sep 2012 18:10:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 89FC28FC35 for ; Tue, 25 Sep 2012 18:10:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIANe9020078 for ; Tue, 25 Sep 2012 18:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIANGJ020069; Tue, 25 Sep 2012 18:10:23 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:23 GMT Resent-Message-Id: <201209251810.q8PIANGJ020069@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 84E59106566B for ; Tue, 25 Sep 2012 18:04:44 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 53D538FC1A for ; Tue, 25 Sep 2012 18:04:44 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id A6B7734034 for ; Wed, 26 Sep 2012 03:04:42 +0900 (JST) Message-Id: <20120926022255.6af213195ed6a00916848956@yahoo.com> Date: Wed, 26 Sep 2012 02:22:55 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172000: ftp/quftp: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:23 -0000 >Number: 172000 >Category: ports >Synopsis: ftp/quftp: Support USE_READLINE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:23 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Support USE_READLINE >How-To-Repeat: >Fix: diff -urN /usr/ports/ftp/quftp/Makefile ftp/quftp/Makefile --- /usr/ports/ftp/quftp/Makefile 2011-09-24 07:22:31.000000000 +0900 +++ ftp/quftp/Makefile 2012-09-25 03:32:05.000000000 +0900 @@ -1,29 +1,33 @@ -# New ports collection makefile for: quftp -# Date created: 10 December 2003 -# Whom: Frank Laszlo -# +# Created by: Frank Laszlo # $FreeBSD: ports/ftp/quftp/Makefile,v 1.14 2011/09/23 22:22:31 amdmi3 Exp $ -# PORTNAME= quftp PORTVERSION= 1.0.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= ftp MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= A scriptable FTP client -LIB_DEPENDS= readline.6:${PORTSDIR}/devel/readline +LICENSE= GPLv2 +USE_NCURSES= yes +USE_READLINE= yes GNU_CONFIGURE= yes +MAKE_JOBS_SAFE= yes -CFLAGS+= ${PTHREAD_CFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS} +CPPFLAGS+= ${PTHREAD_CFLAGS} +LDFLAGS+= ${PTHREAD_LIBS} MAN1= quftp.1 PLIST_FILES= bin/quftp -pre-configure: - @${REINPLACE_CMD} -e 's|-O6|-O2|g' ${WRKSRC}/Makefile.in +post-patch: + @${REINPLACE_CMD} -e \ + 's|^CFLAGS|#CFLAGS|' ${WRKSRC}/Makefile.in + +post-install: + @${STRIP_CMD} ${PREFIX}/bin/quftp .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0CECD106567E for ; Tue, 25 Sep 2012 18:10:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DD5BC8FC19 for ; Tue, 25 Sep 2012 18:10:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIANvo020156 for ; Tue, 25 Sep 2012 18:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIANeC020149; Tue, 25 Sep 2012 18:10:23 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:23 GMT Resent-Message-Id: <201209251810.q8PIANeC020149@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 592181065672 for ; Tue, 25 Sep 2012 18:04:49 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 15CF08FC17 for ; Tue, 25 Sep 2012 18:04:49 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id CC58634034 for ; Wed, 26 Sep 2012 03:04:46 +0900 (JST) Message-Id: <20120926022258.85070ded36daaea92fc9701d@yahoo.com> Date: Wed, 26 Sep 2012 02:22:58 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172001: ftp/yafc: Update to version 1.2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:24 -0000 >Number: 172001 >Category: ports >Synopsis: ftp/yafc: Update to version 1.2.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:23 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.2.2 Remove file: patch-src__Makefile.in >How-To-Repeat: >Fix: diff -urN /usr/ports/ftp/yafc/Makefile ftp/yafc/Makefile --- /usr/ports/ftp/yafc/Makefile 2012-07-20 02:28:40.000000000 +0900 +++ ftp/yafc/Makefile 2012-09-25 03:32:10.000000000 +0900 @@ -1,23 +1,19 @@ -# New ports collection makefile for: yafc -# Date created: 10 June 1999 -# Whom: Chris Piazza -# +# Created by: Chris Piazza # $FreeBSD: ports/ftp/yafc/Makefile,v 1.44 2012/07/19 17:28:40 sperber Exp $ -# PORTNAME= yafc -PORTVERSION= 1.2.0 -PORTREVISION= 1 +PORTVERSION= 1.2.2 CATEGORIES= ftp ipv6 -MASTER_SITES= https://github.com/downloads/sebastinas/yafc/ +MASTER_SITES= http://cloud.github.com/downloads/sebastinas/yafc/ MAINTAINER= ports@FreeBSD.org COMMENT= Yet another ftp client. Similar to ftp(1) LICENSE= GPLv2 # (or later) -OPTIONS_DEFINE= NLS SSH EXAMPLES -OPTIONS_DEFAULT=NLS SSH +OPTIONS_DEFINE= NLS READLINE SSH EXAMPLES +OPTIONS_DEFAULT=NLS READLINE SSH +READLINE_DESC= Enable readline support USE_XZ= yes USE_OPENSSL= yes @@ -31,8 +27,6 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -FETCH_ARGS= -Fpr - MAN1= yafc.1 INFO= yafc PORTEXAMPLES= inputrc yafcrc @@ -46,27 +40,28 @@ USE_GNOME+= intltool USE_GETTEXT= yes LDFLAGS+= -lintl -PLIST_FILES+= share/locale/sv/LC_MESSAGES/yafc.mo +PLIST_FILES+= share/locale/de/LC_MESSAGES/yafc.mo \ + share/locale/sv/LC_MESSAGES/yafc.mo .else CONFIGURE_ARGS+= --disable-nls .endif +.if ${PORT_OPTIONS:MREADLINE} +USE_READLINE= yes +.else +CONFIGURE_ARGS+= --without-readline +.endif + .if ${PORT_OPTIONS:MSSH} LIB_DEPENDS+= ssh:${PORTSDIR}/security/libssh .else CONFIGURE_ARGS+= --without-ssh .endif -.include - -.if exists(${LOCALBASE}/lib/libreadline.so) -LIB_DEPENDS+= readline:${PORTSDIR}/devel/readline -.endif - post-install: .if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/samples/* ${EXAMPLESDIR} .endif -.include +.include diff -urN /usr/ports/ftp/yafc/distinfo ftp/yafc/distinfo --- /usr/ports/ftp/yafc/distinfo 2012-06-25 09:05:19.000000000 +0900 +++ ftp/yafc/distinfo 2012-09-11 22:44:49.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (yafc-1.2.0.tar.xz) = a8ac89f6a7139158012b08fa97c7b39e465091bdf8ed8fb1fbfbc5e9f65eac40 -SIZE (yafc-1.2.0.tar.xz) = 486416 +SHA256 (yafc-1.2.2.tar.xz) = 8a131a7e3e3e8d16640db7323552108fa5d5a34e46425f1b51cf6c8b8e33f7fe +SIZE (yafc-1.2.2.tar.xz) = 415692 diff -urN /usr/ports/ftp/yafc/files/patch-src__Makefile.in ftp/yafc/files/patch-src__Makefile.in --- /usr/ports/ftp/yafc/files/patch-src__Makefile.in 2012-07-20 02:28:40.000000000 +0900 +++ ftp/yafc/files/patch-src__Makefile.in 1970-01-01 09:00:00.000000000 +0900 @@ -1,14 +0,0 @@ ---- src/Makefile.in.orig 2012-06-05 23:37:06.000000000 +0900 -+++ src/Makefile.in 2012-06-25 16:34:16.000000000 +0900 -@@ -308,7 +308,10 @@ - libmhe/libmhe.a \ - ../lib/libfoo.a $(SSH_LIBS) - --yafc_DEPENDENCIES = $(yafc_LDADD) yafcrc.h -+yafc_DEPENDENCIES = ftp/libftp.a \ -+ libmhe/libmhe.a \ -+ ../lib/libfoo.a yafcrc.h -+ - AM_CPPFLAGS = -I$(srcdir) \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src/ftp \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DE321065687 for ; Tue, 25 Sep 2012 18:10:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3DDF38FC25 for ; Tue, 25 Sep 2012 18:10:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAOR0020232 for ; Tue, 25 Sep 2012 18:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAOBN020229; Tue, 25 Sep 2012 18:10:24 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:24 GMT Resent-Message-Id: <201209251810.q8PIAOBN020229@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B5121065677 for ; Tue, 25 Sep 2012 18:04:54 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id DF1D58FC0C for ; Tue, 25 Sep 2012 18:04:53 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 322864AC036 for ; Wed, 26 Sep 2012 03:04:52 +0900 (JST) Message-Id: <20120926022301.48ff76db158c2933bf1b57a6@yahoo.com> Date: Wed, 26 Sep 2012 02:23:01 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172002: games/gretools: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:24 -0000 >Number: 172002 >Category: ports >Synopsis: games/gretools: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:23 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Add LICENSE >How-To-Repeat: >Fix: diff -urN /usr/ports/games/gretools/Makefile games/gretools/Makefile --- /usr/ports/games/gretools/Makefile 2012-06-01 14:18:51.000000000 +0900 +++ games/gretools/Makefile 2012-09-25 03:32:17.000000000 +0900 @@ -1,20 +1,18 @@ -# New ports collection makefile for: gretools -# Date created: 2004 January 15 -# Whom: Adam Weinberger -# +# Created by: Adam Weinberger # $FreeBSD: ports/games/gretools/Makefile,v 1.25 2012/06/01 05:18:51 dinoex Exp $ -# PORTNAME= gretools PORTVERSION= 1.2.4 PORTREVISION= 11 CATEGORIES= games gnome -MASTER_SITES= http://www.cs.utexas.edu/~arvindn/gretools/%SUBDIR%/ +MASTER_SITES= http://randomwalker.info/gretools/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTVERSION:R} MAINTAINER= ports@FreeBSD.org COMMENT= GNOME vocabulary builder +LICENSE= GPLv2 + USE_GNOME= gnomehack gnomeprefix pygnome2 USE_PYTHON= yes USE_GMAKE= yes diff -urN /usr/ports/games/gretools/pkg-descr games/gretools/pkg-descr --- /usr/ports/games/gretools/pkg-descr 2005-11-27 01:31:05.000000000 +0900 +++ games/gretools/pkg-descr 2012-07-07 05:47:21.000000000 +0900 @@ -1,4 +1,4 @@ Gretools is a vocabulary building tool for GNOME. Its wordlist is comprised of about 4000 words, and it has a synonym quiz and a word-guessing game. -WWW: http://www.cs.utexas.edu/~arvindn/gretools/ +WWW: http://randomwalker.info/gretools/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CDDDD106568A for ; Tue, 25 Sep 2012 18:10:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 908A98FC37 for ; Tue, 25 Sep 2012 18:10:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAOsP020313 for ; Tue, 25 Sep 2012 18:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAOVZ020305; Tue, 25 Sep 2012 18:10:24 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:24 GMT Resent-Message-Id: <201209251810.q8PIAOVZ020305@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 90394106566C for ; Tue, 25 Sep 2012 18:04:58 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 60B458FC12 for ; Tue, 25 Sep 2012 18:04:58 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id B88452BC03B for ; Wed, 26 Sep 2012 03:04:56 +0900 (JST) Message-Id: <20120926022305.059223488936d0d7a8e77840@yahoo.com> Date: Wed, 26 Sep 2012 02:23:05 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172003: games/kbilliards: Fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:24 -0000 >Number: 172003 >Category: ports >Synopsis: games/kbilliards: Fix build >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Fix build - Add LICENSE - Add MAKE_JOBS_SAFE >How-To-Repeat: >Fix: diff -urN /usr/ports/games/kbilliards/Makefile games/kbilliards/Makefile --- /usr/ports/games/kbilliards/Makefile 2010-12-04 16:31:45.000000000 +0900 +++ games/kbilliards/Makefile 2012-09-25 03:32:24.000000000 +0900 @@ -1,7 +1,4 @@ -# New ports collection makefile for: kbilliards -# Date created: 15 May 2003 -# Whom: Kirill Ponomarew -# +# Created by: Kirill Ponomarew # $FreeBSD: ports/games/kbilliards/Makefile,v 1.29 2010/12/04 07:31:45 ade Exp $ PORTNAME= kbilliards @@ -9,27 +6,27 @@ PORTREVISION= 6 CATEGORIES= games kde MASTER_SITES= http://www.hostnotfound.it/kbilliards/ \ - ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= arved + LOCAL/arved MAINTAINER= ports@FreeBSD.org COMMENT= Funny billiards simulator game for KDE +LICENSE= GPLv2 # (or later) + EXTRA_PATCHES= ${.CURDIR}/../../x11/kde3/files/extrapatch-old_configure USE_BZIP2= yes -USE_GETTEXT= yes USE_KDELIBS_VER=3 USE_PERL5_BUILD=yes +USE_GETTEXT= yes USE_GMAKE= yes USE_AUTOTOOLS= libtool - -CFLAGS+= -Dsqrtl=sqrt +MAKE_JOBS_SAFE= yes .include -.if ${OSVERSION} >= 800024 -BROKEN= does not compile +.if ${OSVERSION} < 800024 +CFLAGS+= -Dsqrtl=sqrt .endif pre-configure: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 133E4106568C for ; Tue, 25 Sep 2012 18:10:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E333E8FC0A for ; Tue, 25 Sep 2012 18:10:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAOI5020387 for ; Tue, 25 Sep 2012 18:10:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAOhf020380; Tue, 25 Sep 2012 18:10:24 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:24 GMT Resent-Message-Id: <201209251810.q8PIAOhf020380@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C6E0F106564A for ; Tue, 25 Sep 2012 18:05:02 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 949888FC14 for ; Tue, 25 Sep 2012 18:05:02 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id E569550036 for ; Wed, 26 Sep 2012 03:05:00 +0900 (JST) Message-Id: <20120926022309.e6be699e2d3091acbca98c25@yahoo.com> Date: Wed, 26 Sep 2012 02:23:09 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172004: games/rocksndiamonds: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:25 -0000 >Number: 172004 >Category: ports >Synopsis: games/rocksndiamonds: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Add LICENSE - Add MAKE_JOBS_SAFE >How-To-Repeat: >Fix: diff -urN /usr/ports/games/rocksndiamonds/Makefile games/rocksndiamonds/Makefile --- /usr/ports/games/rocksndiamonds/Makefile 2012-02-18 19:18:10.000000000 +0900 +++ games/rocksndiamonds/Makefile 2012-09-25 03:32:36.000000000 +0900 @@ -1,28 +1,31 @@ -# New ports collection makefile for: rocksndiamonds -# Date created: 27 May 1999 -# Whom: Thomas Gellekum -# +# Created by: Thomas Gellekum # $FreeBSD: ports/games/rocksndiamonds/Makefile,v 1.37 2012/02/18 10:18:10 mva Exp $ -# PORTNAME= rocksndiamonds PORTVERSION= 3.3.0.1 PORTREVISION= 1 CATEGORIES= games -MASTER_SITES= http://www.artsoft.org/RELEASES/unix/rocksndiamonds/ \ - http://freebsd.unixfreunde.de/sources/ +MASTER_SITES= SF/${PORTNAME}.mirror \ + http://www.artsoft.org/RELEASES/unix/rocksndiamonds/ MAINTAINER= ports@FreeBSD.org COMMENT= Colorful Boulderdash'n'Emerald Mine'n'Sokoban'n'Stuff +LICENSE= GPLv2 + +OPTIONS_DEFINE= SDL DOCS + USE_GMAKE= yes MAKE_ARGS= CC="${CC}" MAKE="${GMAKE}" OPTIONS="${CFLAGS}" \ RO_GAME_DIR="${DATADIR}" RW_GAME_DIR="${DATADIR}/scores" \ X11_PATH="${LOCALBASE}" +MAKE_JOBS_SAFE= yes MAN1= rocksndiamonds.1 -.if defined(WITH_SDL) +.include + +.if ${PORT_OPTIONS:MSDL} LIB_DEPENDS+= smpeg:${PORTSDIR}/multimedia/smpeg USE_SDL= image mixer net sdl ALL_TARGET= sdl @@ -43,7 +46,7 @@ @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${DATADIR}) .endfor @${CHMOD} 777 ${DATADIR}/scores -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for docfile in ChangeLog CREDITS README ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 656E5106564A for ; Tue, 25 Sep 2012 18:10:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 40B428FC1D for ; Tue, 25 Sep 2012 18:10:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAPv0020466 for ; Tue, 25 Sep 2012 18:10:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAPEx020456; Tue, 25 Sep 2012 18:10:25 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:25 GMT Resent-Message-Id: <201209251810.q8PIAPEx020456@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 23DD91065675 for ; Tue, 25 Sep 2012 18:05:07 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id E93548FC17 for ; Tue, 25 Sep 2012 18:05:06 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 09D9D50036 for ; Wed, 26 Sep 2012 03:05:04 +0900 (JST) Message-Id: <20120926022312.435451ba55821101b5655eb5@yahoo.com> Date: Wed, 26 Sep 2012 02:23:12 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172005: games/spellathon: Update to version 6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:25 -0000 >Number: 172005 >Category: ports >Synopsis: games/spellathon: Update to version 6.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 6.0 >How-To-Repeat: >Fix: diff -urN /usr/ports/games/spellathon/Makefile games/spellathon/Makefile --- /usr/ports/games/spellathon/Makefile 2012-09-24 00:38:58.000000000 +0900 +++ games/spellathon/Makefile 2012-09-25 15:59:01.000000000 +0900 @@ -2,24 +2,36 @@ # $FreeBSD: ports/games/spellathon/Makefile,v 1.15 2012/09/23 15:38:58 danfe Exp $ PORTNAME= spellathon -PORTVERSION= 5.79 -PORTREVISION= 1 +PORTVERSION= 6.0 CATEGORIES= games -MASTER_SITES= SF +MASTER_SITES= SF/${PORTNAME}/Spellathon%20${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Word game to test your English vocabulary skills +LICENSE= BSD + USE_QT4= gui moc_build qmake_build rcc_build uic_build +USE_LDCONFIG= yes +MAKE_JOBS_SAFE= yes post-patch: - @${REINPLACE_CMD} 's|qmake|qmake-qt4|' ${WRKSRC}/Makefile - @${REINPLACE_CMD} 's|dict/words.txt|${DATADIR}/words.txt|' \ - ${WRKSRC}/src/logic/defines.h + @${FIND} ${WRKSRC} -name "Makefile" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|$${CC}|$${CXX}|g ; \ + s|$${CFLAGS}|$${CXXFLAGS}|g ; \ + s|qmake-qt4|${TRUE}|' + @${REINPLACE_CMD} \ + 's|dict/words.txt|${DATADIR}/words.txt|' ${WRKSRC}/src/logic/defines.h + +do-configure: + @(cd ${WRKSRC}/src/gui && ${SETENV} ${MAKE_ENV} ${QMAKE} ${QMAKEFLAGS}) do-install: - ${INSTALL} ${WRKSRC}/spellathon ${PREFIX}/bin - ${INSTALL} ${WRKSRC}/spellathon-cl ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/spellathon ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/spellathon-cl ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/libspellathon.so.0.0 ${PREFIX}/lib + ${LN} -sf libspellathon.so.0.0 ${PREFIX}/lib/libspellathon.so + ${LN} -sf libspellathon.so.0.0 ${PREFIX}/lib/libspellathon.so.0 @${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/dict/words.txt ${DATADIR} diff -urN /usr/ports/games/spellathon/distinfo games/spellathon/distinfo --- /usr/ports/games/spellathon/distinfo 2011-07-03 23:25:00.000000000 +0900 +++ games/spellathon/distinfo 2012-09-23 19:49:47.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (spellathon-5.79.tar.gz) = 4abf0c03fb003b40c505ebddbc94bf0869b99458ac1fe6266963c241d2800554 -SIZE (spellathon-5.79.tar.gz) = 206249 +SHA256 (spellathon-6.0.tar.gz) = 49653195aca3dcad26d2ef87addb5a0ac1b0775f1d3ac6e139e413fce3d9c6de +SIZE (spellathon-6.0.tar.gz) = 212056 diff -urN /usr/ports/games/spellathon/pkg-plist games/spellathon/pkg-plist --- /usr/ports/games/spellathon/pkg-plist 2009-05-22 03:59:06.000000000 +0900 +++ games/spellathon/pkg-plist 2012-09-25 16:00:20.000000000 +0900 @@ -1,4 +1,7 @@ bin/spellathon bin/spellathon-cl +lib/libspellathon.so +lib/libspellathon.so.0 +lib/libspellathon.so.0.0 %%DATADIR%%/words.txt @dirrmtry %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C13411065672 for ; Tue, 25 Sep 2012 18:10:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9A0BC8FC2B for ; Tue, 25 Sep 2012 18:10:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAP19020546 for ; Tue, 25 Sep 2012 18:10:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAPAQ020539; Tue, 25 Sep 2012 18:10:25 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:25 GMT Resent-Message-Id: <201209251810.q8PIAPAQ020539@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0A2C106566B for ; Tue, 25 Sep 2012 18:05:44 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id EEEC08FC0A for ; Tue, 25 Sep 2012 18:05:43 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 1FC3D4AC036 for ; Wed, 26 Sep 2012 03:05:09 +0900 (JST) Message-Id: <20120926022318.8838ddb89bd00264ea3fd19a@yahoo.com> Date: Wed, 26 Sep 2012 02:23:18 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172006: games/stepmania-devel: Update to version 5.0.a3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:25 -0000 >Number: 172006 >Category: ports >Synopsis: games/stepmania-devel: Update to version 5.0.a3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:25 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 5.0.a3 New file: files/patch-ArchHooks_Unix.cpp Remove file: files/patch-Makefile.in files/patch-src_arch_InputHandler_InputHandler.cpp files/patch-src_arch_InputHandler_InputHandler__Linux_Joystick.cpp >How-To-Repeat: >Fix: diff -urN /usr/ports/games/stepmania-devel/Makefile games/stepmania-devel/Makefile --- /usr/ports/games/stepmania-devel/Makefile 2012-09-23 00:54:26.000000000 +0900 +++ games/stepmania-devel/Makefile 2012-09-24 03:46:28.000000000 +0900 @@ -2,75 +2,94 @@ # $FreeBSD: ports/games/stepmania-devel/Makefile,v 1.15 2012/09/22 15:54:26 tabthorpe Exp $ PORTNAME= stepmania -PORTVERSION= 20071121 -PORTREVISION= 9 +PORTVERSION= 5.0.a3 +PORTEPOCH= 1 CATEGORIES= games -MASTER_SITES= SF/${PORTNAME}/OldFiles +MASTER_SITES= GOOGLE_CODE PKGNAMESUFFIX= -devel -DISTNAME= StepMania-CVS-20071121-src +DISTNAME= ${PORTNAME}-SM5-alpha3-src MAINTAINER= ports@FreeBSD.org -COMMENT= Stepmania dance and rhythm game +COMMENT= Rrhythm game simulator -LIB_DEPENDS= mad.2:${PORTSDIR}/audio/libmad \ - png15:${PORTSDIR}/graphics/png \ - jpeg.11:${PORTSDIR}/graphics/jpeg \ - m.3:${PORTSDIR}/misc/compat5x -BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip \ - ${LOCALBASE}/include/linux/joystick.h:${PORTSDIR}/devel/linux-js +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/Docs/Licenses.txt -CONFLICTS= stepmania-[0-9]* +BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip +LIB_DEPENDS= mad:${PORTSDIR}/audio/libmad \ + GLEW:${PORTSDIR}/graphics/glew -GNU_CONFIGURE= yes +OPTIONS_DEFINE= PULSEAUDIO VORBIS DOCS +OPTIONS_DEFAULT=VORBIS + +WRKSRC= ${WRKDIR}/${PORTNAME}-SM5-alpha3 + +PROJECTHOST= sm-ssc +USE_BZIP2= yes +USE_XORG= x11 xau xdmcp xext xrandr xrender xtst USE_GL= gl glu -USE_XORG= x11 xtst xrandr xau xdmcp xext xrender +USE_GNOME= gnomehack gtk20 +USE_PERL5_BUILD=yes USE_ICONV= yes -USE_GNOME= gtk20 -LDFLAGS+= -L${LOCALBASE}/lib -CFLAGS+= -I${LOCALBASE}/include - -# Not yet implemented -# FFMPEG "Enable ffmpeg support" off \ +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --without-ffmpeg +INSTALLS_ICONS= yes +MAKE_JOBS_SAFE= yes -OPTIONS= VORBIS "Enable Ogg Vorbis support" on \ - THEORA "Enable theora support" off \ +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -.include +.include -.if defined(WITH_VORBIS) -LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis \ - ogg:${PORTSDIR}/audio/libogg +.if ${PORT_OPTIONS:MPULSEAUDIO} +LIB_DEPENDS+= pulse:${PORTSDIR}/audio/pulseaudio .else -CONFIGURE_ARGS+=--without-vorbis +CONFIGURE_ENV+= ac_cv_lib_pulse_pa_stream_new=no .endif -.if defined(WITH_THEORA) -LIB_DEPENDS+= theora.0:${PORTSDIR}/multimedia/libtheora +.if ${PORT_OPTIONS:MVORBIS} +LIB_DEPENDS+= vorbis:${PORTSDIR}/audio/libvorbis .else -CONFIGURE_ARGS+=--without-theora -.endif - -.if ${OSVERSION} < 800000 -BROKEN= does not compile +CONFIGURE_ARGS+=--without-vorbis .endif post-patch: - @${REINPLACE_CMD} -e 's|-lrt|-lrt -liconv|' ${WRKSRC}/src/Makefile.in - @${REINPLACE_CMD} -e 's|@LINUX_TRUE@am__append_19|@UNIX_TRUE@am__append_19|' ${WRKSRC}/src/Makefile.in - @${REINPLACE_CMD} -e 's|@LINUX_TRUE@am__objects_16|@UNIX_TRUE@am__objects_16|' ${WRKSRC}/src/Makefile.in + @${REINPLACE_CMD} -e \ + '/^LIBS/s|-lpthread|-liconv|' ${WRKSRC}/src/Makefile.in + +pre-build: + @${ECHO_CMD} -n > ${WRKDIR}/stepmania.sh + @${ECHO_CMD} '#!${SH}' >> ${WRKDIR}/stepmania.sh + @${ECHO_CMD} 'cd ${PREFIX}/lib/stepmania; ./stepmania $$@' >> ${WRKDIR}/stepmania.sh + +post-build: + @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \ + ${MAKEFILE} ${MAKE_ARGS} SMData) do-install: - ${MKDIR} ${PREFIX}/share/games - ${MKDIR} ${PREFIX}/share/games/stepmania - ${MKDIR} ${PREFIX}/share/games/stepmania/Announcers - ${MKDIR} ${PREFIX}/share/games/stepmania/Songs - (cd ${WRKSRC} && ${UNZIP_CMD} -o Packages/StepMania.smzip) - (cd ${WRKSRC} && ${COPYTREE_SHARE} "BGAnimations\ - BackgroundEffects BackgroundTransitions Characters Courses\ - Data NoteSkins Themes" ${PREFIX}/share/games/stepmania) - ${INSTALL_PROGRAM} ${WRKSRC}/src/stepmania \ - ${PREFIX}/share/games/stepmania - ${INSTALL_DATA} ${WRKSRC}/src/GtkModule.so \ - ${PREFIX}/share/games/stepmania + ${INSTALL_SCRIPT} ${WRKDIR}/stepmania.sh ${PREFIX}/bin/stepmania + @${MKDIR} ${PREFIX}/share/applications + ${INSTALL_DATA} ${WRKSRC}/stepmania.desktop ${PREFIX}/share/applications + @${MKDIR} ${PREFIX}/share/icons/hicolor/scalable/apps + cd ${WRKSRC}/icons/hicolor/scalable/apps && ${INSTALL_DATA} \ + stepmania-ssc.svg ${PREFIX}/share/icons/hicolor/scalable/apps +.for i in 16 22 24 32 36 48 64 72 96 128 192 256 + @${MKDIR} ${PREFIX}/share/icons/hicolor/${i}x${i}/apps + cd ${WRKSRC}/icons/hicolor/${i}x${i}/apps && ${INSTALL_DATA} \ + stepmania-ssc.png ${PREFIX}/share/icons/hicolor/${i}x${i}/apps +.endfor + @${MKDIR} ${PREFIX}/lib/stepmania + ${INSTALL_PROGRAM} ${WRKSRC}/src/stepmania ${PREFIX}/lib/stepmania + ${INSTALL_DATA} ${WRKSRC}/src/GtkModule.so ${PREFIX}/lib/stepmania + @${MKDIR} ${PREFIX}/lib/stepmania/Packages + ${INSTALL_DATA} ${WRKSRC}/GameData.smzip ${PREFIX}/lib/stepmania/Packages +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + @(${TAR} -C ${WRKSRC}/Docs --exclude "Licenses.txt" -cf - . | \ + ${TAR} -C ${DOCSDIR} --unlink -xf -) + @${FIND} ${DOCSDIR} -print0 | ${XARGS} -0 ${CHOWN} ${SHAREOWN}:${SHAREGRP} + @${FIND} ${DOCSDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} ${SHAREMODE} + @${FIND} ${DOCSDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} a+rx +.endif -.include +.include diff -urN /usr/ports/games/stepmania-devel/distinfo games/stepmania-devel/distinfo --- /usr/ports/games/stepmania-devel/distinfo 2011-07-03 23:25:01.000000000 +0900 +++ games/stepmania-devel/distinfo 2012-09-24 03:07:18.000000000 +0900 @@ -1,2 +1,4 @@ -SHA256 (StepMania-CVS-20071121-src.tar.gz) = 46c35128af7b5055c5e95059c71c364edb5e37ebf7f15c5faa684cd2f13431c7 -SIZE (StepMania-CVS-20071121-src.tar.gz) = 12117222 +SHA256 (stepmania-SM5-alpha3-src.tar.bz2) = 63c767782e8379698696b3627554e871c019f5ad2be262e5e715bc0649578123 +SIZE (stepmania-SM5-alpha3-src.tar.bz2) = 61494982 +SHA256 (StepMania-v5.0-alpha3-linux.tar.bz2) = f05aa903a20673dbe4bf2025da7f575502fbbcd24f55eb1109c76e46d5790d61 +SIZE (StepMania-v5.0-alpha3-linux.tar.bz2) = 40164664 diff -urN /usr/ports/games/stepmania-devel/files/patch-ArchHooks_Unix.cpp games/stepmania-devel/files/patch-ArchHooks_Unix.cpp --- /usr/ports/games/stepmania-devel/files/patch-ArchHooks_Unix.cpp 1970-01-01 09:00:00.000000000 +0900 +++ games/stepmania-devel/files/patch-ArchHooks_Unix.cpp 2012-09-24 00:11:38.000000000 +0900 @@ -0,0 +1,10 @@ +--- src/arch/ArchHooks/ArchHooks_Unix.cpp.orig 2012-08-06 14:23:36.000000000 +0900 ++++ src/arch/ArchHooks/ArchHooks_Unix.cpp 2012-09-24 00:09:58.000000000 +0900 +@@ -12,6 +12,7 @@ + #include "archutils/Unix/AssertionHandler.h" + #include + #include ++#include + + #if defined(CRASH_HANDLER) + #include "archutils/Unix/CrashHandler.h" diff -urN /usr/ports/games/stepmania-devel/files/patch-Makefile.in games/stepmania-devel/files/patch-Makefile.in --- /usr/ports/games/stepmania-devel/files/patch-Makefile.in 2008-07-05 13:54:54.000000000 +0900 +++ games/stepmania-devel/files/patch-Makefile.in 1970-01-01 09:00:00.000000000 +0900 @@ -1,10 +0,0 @@ ---- Makefile.in.bak 2007-12-16 21:37:14.000000000 +1100 -+++ Makefile.in 2007-12-16 21:37:36.000000000 +1100 -@@ -201,7 +201,6 @@ - AUTOMAKE_OPTIONS = 1.7 foreign - SUBDIRS = src - ACLOCAL_AMFLAGS = -I autoconf/m4 --productID := $(shell sed -nr /define\\s+PRODUCT_ID_BARE/\{s/.*define\\s+PRODUCT_ID_BARE\\s+\(.+\)/\\1/\;y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/\;p\;q\} $(srcdir)/src/ProductInfo.h) - installFiles = src/stepmania $(am__append_1) - all: all-recursive - diff -urN /usr/ports/games/stepmania-devel/files/patch-src_arch_InputHandler_InputHandler.cpp games/stepmania-devel/files/patch-src_arch_InputHandler_InputHandler.cpp --- /usr/ports/games/stepmania-devel/files/patch-src_arch_InputHandler_InputHandler.cpp 2008-07-05 13:54:54.000000000 +0900 +++ games/stepmania-devel/files/patch-src_arch_InputHandler_InputHandler.cpp 1970-01-01 09:00:00.000000000 +0900 @@ -1,18 +0,0 @@ ---- src/arch/InputHandler/InputHandler.cpp.orig 2007-03-26 06:06:37.000000000 +0300 -+++ src/arch/InputHandler/InputHandler.cpp 2008-01-30 23:20:18.000000000 +0200 -@@ -6,6 +6,7 @@ - #include "LocalizedString.h" - #include "arch/arch_default.h" - #include "InputHandler_MonkeyKeyboard.h" -+#include "InputHandler_Linux_Joystick.h" - #include "Foreach.h" - - void InputHandler::UpdateTimer() -@@ -190,6 +191,7 @@ - - // Always add - Add.push_back( new InputHandler_MonkeyKeyboard ); -+ Add.push_back( new InputHandler_Linux_Joystick ); - } - - diff -urN /usr/ports/games/stepmania-devel/files/patch-src_arch_InputHandler_InputHandler__Linux_Joystick.cpp games/stepmania-devel/files/patch-src_arch_InputHandler_InputHandler__Linux_Joystick.cpp --- /usr/ports/games/stepmania-devel/files/patch-src_arch_InputHandler_InputHandler__Linux_Joystick.cpp 2008-07-05 13:54:54.000000000 +0900 +++ games/stepmania-devel/files/patch-src_arch_InputHandler_InputHandler__Linux_Joystick.cpp 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- src/arch/InputHandler/InputHandler_Linux_Joystick.cpp.orig 2008-01-30 13:54:28.000000000 +0200 -+++ src/arch/InputHandler/InputHandler_Linux_Joystick.cpp 2008-01-30 13:55:14.000000000 +0200 -@@ -9,6 +9,8 @@ - - #include - #include -+#include -+#include - #include - - #include diff -urN /usr/ports/games/stepmania-devel/pkg-plist games/stepmania-devel/pkg-plist --- /usr/ports/games/stepmania-devel/pkg-plist 2008-07-09 08:27:42.000000000 +0900 +++ games/stepmania-devel/pkg-plist 2012-09-24 03:50:19.000000000 +0900 @@ -1,1278 +1,129 @@ -share/games/stepmania/BGAnimations/instructions.txt -share/games/stepmania/BackgroundEffects/Centered.lua -share/games/stepmania/BackgroundEffects/Checkerboard1File2x2.lua -share/games/stepmania/BackgroundEffects/Checkerboard2File2x2.lua -share/games/stepmania/BackgroundEffects/Kaleidoscope2x2.lua -share/games/stepmania/BackgroundEffects/SongBgWithMovieViz.lua -share/games/stepmania/BackgroundEffects/StretchNoLoop.lua -share/games/stepmania/BackgroundEffects/StretchNormal.lua -share/games/stepmania/BackgroundEffects/StretchNormalAlignLeft.lua -share/games/stepmania/BackgroundEffects/StretchPaused.lua -share/games/stepmania/BackgroundEffects/StretchRewind.lua -share/games/stepmania/BackgroundEffects/UpperLeft.lua -share/games/stepmania/BackgroundTransitions/CrossFade.xml -share/games/stepmania/BackgroundTransitions/FadeDown.xml -share/games/stepmania/BackgroundTransitions/FadeLeft.xml -share/games/stepmania/BackgroundTransitions/FadeRight.xml -share/games/stepmania/BackgroundTransitions/FadeUp.xml -share/games/stepmania/BackgroundTransitions/SlideDown.xml -share/games/stepmania/BackgroundTransitions/SlideLeft.xml -share/games/stepmania/BackgroundTransitions/SlideRight.xml -share/games/stepmania/BackgroundTransitions/SlideUp.xml -share/games/stepmania/Characters/Instructions.txt -share/games/stepmania/Characters/default/character.ini -share/games/stepmania/Courses/Samples/AllChallenge.crs -share/games/stepmania/Courses/Samples/AllMusicRandom.crs -share/games/stepmania/Courses/Samples/EndOfTheRoad.crs -share/games/stepmania/Courses/Samples/PlayersBest1-4.crs -share/games/stepmania/Courses/Samples/PlayersBest13-16.crs -share/games/stepmania/Courses/Samples/PlayersBest5-8.crs -share/games/stepmania/Courses/Samples/PlayersBest9-12.crs -share/games/stepmania/Courses/Samples/PlayersWorst.crs -share/games/stepmania/Courses/Samples/Random Caprice.crs -share/games/stepmania/Courses/Samples/StaminaTester.crs -share/games/stepmania/Courses/Samples/StepMix Survival Sample.crs -share/games/stepmania/Courses/Samples/Tortoise and the Hare.crs -share/games/stepmania/Courses/Samples/TrickyRandom.crs -share/games/stepmania/Courses/instructions.txt -share/games/stepmania/Data/AI.ini -share/games/stepmania/Data/NamesBlacklist.txt -share/games/stepmania/Data/Shaders/GLSL/Color burn.frag -share/games/stepmania/Data/Shaders/GLSL/Color dodge.frag -share/games/stepmania/Data/Shaders/GLSL/Hard mix.frag -share/games/stepmania/Data/Shaders/GLSL/Texture matrix scaling.vert -share/games/stepmania/Data/Shaders/GLSL/Unpremultiply.frag -share/games/stepmania/Data/Shaders/GLSL/Vivid light.frag -share/games/stepmania/Data/Shaders/GLSL/YUYV422.frag -share/games/stepmania/Data/Translations.xml -share/games/stepmania/Data/splash.png -share/games/stepmania/GtkModule.so -share/games/stepmania/NoteSkins/common/common/Fallback Explosion.lua -share/games/stepmania/NoteSkins/common/common/Fallback Go Receptor.redir -share/games/stepmania/NoteSkins/common/common/Fallback HitMine Explosion.png -share/games/stepmania/NoteSkins/common/common/Fallback Hold Body active.png -share/games/stepmania/NoteSkins/common/common/Fallback Hold Body inactive.png -share/games/stepmania/NoteSkins/common/common/Fallback Hold BottomCap active.png -share/games/stepmania/NoteSkins/common/common/Fallback Hold BottomCap inactive.png -share/games/stepmania/NoteSkins/common/common/Fallback Hold Explosion 2x1.png -share/games/stepmania/NoteSkins/common/common/Fallback Hold Head Active.redir -share/games/stepmania/NoteSkins/common/common/Fallback Hold Head Inactive.redir -share/games/stepmania/NoteSkins/common/common/Fallback Hold Tail Active.redir -share/games/stepmania/NoteSkins/common/common/Fallback Hold Tail Inactive.redir -share/games/stepmania/NoteSkins/common/common/Fallback Hold TopCap Active.redir -share/games/stepmania/NoteSkins/common/common/Fallback Hold TopCap Inactive.redir -share/games/stepmania/NoteSkins/common/common/Fallback Ready Receptor 3x1.png -share/games/stepmania/NoteSkins/common/common/Fallback Receptor.lua -share/games/stepmania/NoteSkins/common/common/Fallback Roll Body active.png -share/games/stepmania/NoteSkins/common/common/Fallback Roll Body inactive.png -share/games/stepmania/NoteSkins/common/common/Fallback Roll BottomCap active.png -share/games/stepmania/NoteSkins/common/common/Fallback Roll BottomCap inactive.png -share/games/stepmania/NoteSkins/common/common/Fallback Roll Explosion.redir -share/games/stepmania/NoteSkins/common/common/Fallback Roll Head Active.redir -share/games/stepmania/NoteSkins/common/common/Fallback Roll Head Inactive.redir -share/games/stepmania/NoteSkins/common/common/Fallback Roll Tail Active.redir -share/games/stepmania/NoteSkins/common/common/Fallback Roll Tail Inactive.redir -share/games/stepmania/NoteSkins/common/common/Fallback Roll TopCap Active.redir -share/games/stepmania/NoteSkins/common/common/Fallback Roll TopCap Inactive.redir -share/games/stepmania/NoteSkins/common/common/Fallback Tap Explosion Bright.png -share/games/stepmania/NoteSkins/common/common/Fallback Tap Explosion Dim.png -share/games/stepmania/NoteSkins/common/common/Fallback Tap Lift 4x1.png -share/games/stepmania/NoteSkins/common/common/Fallback Tap Mine 4x2.png -share/games/stepmania/NoteSkins/common/common/Fallback Tap Note 4x1.png -share/games/stepmania/NoteSkins/common/common/NoteSkin.lua -share/games/stepmania/NoteSkins/common/common/_Tap Lead-in Receptor.lua -share/games/stepmania/NoteSkins/common/common/_Tap Press.lua -share/games/stepmania/NoteSkins/common/common/_Tap Receptor.lua -share/games/stepmania/NoteSkins/common/common/_blank.png -share/games/stepmania/NoteSkins/common/common/metrics.ini -share/games/stepmania/NoteSkins/dance/bold/Down Go Receptor.png -share/games/stepmania/NoteSkins/dance/bold/Down Tap Explosion Bright.png -share/games/stepmania/NoteSkins/dance/bold/Down Tap Explosion Dim.png -share/games/stepmania/NoteSkins/dance/bold/_down tap note 8x8.png -share/games/stepmania/NoteSkins/dance/bold/metrics.ini -share/games/stepmania/NoteSkins/dance/default/Down Go Receptor.png -share/games/stepmania/NoteSkins/dance/default/Down Hold Body active.png -share/games/stepmania/NoteSkins/dance/default/Down Hold Body inactive.png -share/games/stepmania/NoteSkins/dance/default/Down Hold BottomCap active.png -share/games/stepmania/NoteSkins/dance/default/Down Hold BottomCap inactive.png -share/games/stepmania/NoteSkins/dance/default/Down Hold Explosion 2x1.png -share/games/stepmania/NoteSkins/dance/default/Down Receptor.lua -share/games/stepmania/NoteSkins/dance/default/Down Roll Body active.png -share/games/stepmania/NoteSkins/dance/default/Down Roll Body inactive.png -share/games/stepmania/NoteSkins/dance/default/Down Roll BottomCap active.png -share/games/stepmania/NoteSkins/dance/default/Down Roll BottomCap inactive.png -share/games/stepmania/NoteSkins/dance/default/Down Tap Explosion Bright.png -share/games/stepmania/NoteSkins/dance/default/Down Tap Explosion Dim.png -share/games/stepmania/NoteSkins/dance/default/Down Tap Note.lua -share/games/stepmania/NoteSkins/dance/default/NoteSkin.lua -share/games/stepmania/NoteSkins/dance/default/_down tap note 8x8.png -share/games/stepmania/NoteSkins/dance/default/metrics.ini -share/games/stepmania/NoteSkins/dance/flat/Down Tap Note.lua -share/games/stepmania/NoteSkins/dance/flat/metrics.ini -share/games/stepmania/NoteSkins/instructions.txt -share/games/stepmania/NoteSkins/lights/default/metrics.ini -share/games/stepmania/NoteSkins/pump/classic/Center Tap Note.lua -share/games/stepmania/NoteSkins/pump/classic/DownLeft Hold Body active.redir -share/games/stepmania/NoteSkins/pump/classic/DownLeft Hold Body inactive.redir -share/games/stepmania/NoteSkins/pump/classic/DownLeft Hold BottomCap active.redir -share/games/stepmania/NoteSkins/pump/classic/DownLeft Hold BottomCap inactive.redir -share/games/stepmania/NoteSkins/pump/classic/DownLeft Receptor.redir -share/games/stepmania/NoteSkins/pump/classic/DownLeft Tap Explosion bright.redir -share/games/stepmania/NoteSkins/pump/classic/DownLeft Tap Explosion dim.redir -share/games/stepmania/NoteSkins/pump/classic/DownLeft Tap Note.lua -share/games/stepmania/NoteSkins/pump/classic/NoteSkin.lua -share/games/stepmania/NoteSkins/pump/classic/UpLeft Tap Note.lua -share/games/stepmania/NoteSkins/pump/classic/metrics.ini -share/games/stepmania/NoteSkins/pump/default/Center Hold Body active.redir -share/games/stepmania/NoteSkins/pump/default/Center Hold Body inactive.redir -share/games/stepmania/NoteSkins/pump/default/Center Hold BottomCap active.redir -share/games/stepmania/NoteSkins/pump/default/Center Hold BottomCap inactive.redir -share/games/stepmania/NoteSkins/pump/default/Center Receptor.lua -share/games/stepmania/NoteSkins/pump/default/Center Tap Explosion bright.png -share/games/stepmania/NoteSkins/pump/default/Center Tap Explosion dim.redir -share/games/stepmania/NoteSkins/pump/default/Center Tap Note.lua -share/games/stepmania/NoteSkins/pump/default/NoteSkin.lua -share/games/stepmania/NoteSkins/pump/default/UpLeft Hold Body active.png -share/games/stepmania/NoteSkins/pump/default/UpLeft Hold Body inactive.redir -share/games/stepmania/NoteSkins/pump/default/UpLeft Hold BottomCap active.png -share/games/stepmania/NoteSkins/pump/default/UpLeft Hold BottomCap inactive.redir -share/games/stepmania/NoteSkins/pump/default/UpLeft Receptor.lua -share/games/stepmania/NoteSkins/pump/default/UpLeft Tap Explosion bright.png -share/games/stepmania/NoteSkins/pump/default/UpLeft Tap Explosion dim.redir -share/games/stepmania/NoteSkins/pump/default/UpLeft Tap Note.lua -share/games/stepmania/NoteSkins/pump/default/metalnote1 6x8.png -share/games/stepmania/NoteSkins/pump/default/metalnote2 6x8.png -share/games/stepmania/NoteSkins/pump/default/metrics.ini -share/games/stepmania/NoteSkins/pump/default/receptor parts 2x3.png -share/games/stepmania/Themes/_Installer/Languages/de.ini -share/games/stepmania/Themes/_Installer/Languages/en.ini -share/games/stepmania/Themes/_Installer/Languages/es.ini -share/games/stepmania/Themes/_Installer/Languages/fr.ini -share/games/stepmania/Themes/_Installer/Languages/it.ini -share/games/stepmania/Themes/beat/Graphics/LifeMeterBar normal.png -share/games/stepmania/Themes/beat/Graphics/LifeMeterBar passing.png -share/games/stepmania/Themes/beat/metrics.ini -share/games/stepmania/Themes/default/BGAnimations/Screen cancel.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenAlbums background/coming soon.png -share/games/stepmania/Themes/default/BGAnimations/ScreenAttract cancel.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenAttract overlay.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenBookkeeping in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenBookkeeping out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenCaution background/caution.png -share/games/stepmania/Themes/default/BGAnimations/ScreenCaution background/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenCaution overlay.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenCenterImage background/test.png -share/games/stepmania/Themes/default/BGAnimations/ScreenCenterImage in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenCenterImage out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenCompany background/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenCompany background/stepmania (dither).png -share/games/stepmania/Themes/default/BGAnimations/ScreenCompany background/white.png -share/games/stepmania/Themes/default/BGAnimations/ScreenCredits background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenCredits overlay/credits.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenCredits overlay/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenCredits overlay/song background scroller.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenCredits2 background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenDemonstration overlay/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenDemonstration overlay/demonstration.png -share/games/stepmania/Themes/default/BGAnimations/ScreenEdit underlay/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenEdit underlay/help.png -share/games/stepmania/Themes/default/BGAnimations/ScreenEdit underlay/info.png -share/games/stepmania/Themes/default/BGAnimations/ScreenEditCoursesMenu in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenEditCoursesMenu out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenEditMenu in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenEditMenu out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationEndless in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationEndless out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationNonstop in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationNonstop out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationOni in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationOni out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationRave in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationRave out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationStage background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationStage in.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationStage out.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationStage overlay/LifeGraph p1.png -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationStage overlay/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationStage overlay/life graph.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationSummary in.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationSummary out.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenExit background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenGameOver background/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenGameOver background/gameover.png -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay danger.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay failed/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay failed/failed.png -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay go/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay go/go.png -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay in.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay next course song/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay out/_extra1.png -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay out/_extra2.png -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay out/cleared.png -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay out/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay out/draw.png -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay out/extra1.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay out/extra2.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay out/p1 win.png -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay out/p2 win.png -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay overlay/_score frame.png -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay overlay/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay ready/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay ready/ready.png -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay toasty/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay toasty/toasty.png -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay underlay/_warning.png -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay underlay/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplaySyncMachine background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplaySyncMachine go.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplaySyncMachine in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplaySyncMachine out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplaySyncMachine ready.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenGameplaySyncMachine toasty.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenHowToPlay background/bg.png -share/games/stepmania/Themes/default/BGAnimations/ScreenHowToPlay background/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenHowToPlay overlay/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenHowToPlay overlay/feet.png -share/games/stepmania/Themes/default/BGAnimations/ScreenHowToPlay overlay/healthhilight.png -share/games/stepmania/Themes/default/BGAnimations/ScreenHowToPlay overlay/jumpmessage.png -share/games/stepmania/Themes/default/BGAnimations/ScreenHowToPlay overlay/missmessage.png -share/games/stepmania/Themes/default/BGAnimations/ScreenHowToPlay overlay/tapglow.png -share/games/stepmania/Themes/default/BGAnimations/ScreenHowToPlay overlay/tapmessage.png -share/games/stepmania/Themes/default/BGAnimations/ScreenInstructions in.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenInstructions out.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenInstructions overlay/_endless.png -share/games/stepmania/Themes/default/BGAnimations/ScreenInstructions overlay/_nonstop.png -share/games/stepmania/Themes/default/BGAnimations/ScreenInstructions overlay/_oni.png -share/games/stepmania/Themes/default/BGAnimations/ScreenInstructions overlay/_regular.png -share/games/stepmania/Themes/default/BGAnimations/ScreenInstructions overlay/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenJukebox cancel.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenJukebox in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenJukebox out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenJukeboxMenu in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenJukeboxMenu out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenLogo background/bg.png -share/games/stepmania/Themes/default/BGAnimations/ScreenLogo background/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenLogo underlay.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenMapControllers in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenMapControllers out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenMemoryCard background/coming soon.png -share/games/stepmania/Themes/default/BGAnimations/ScreenMiniMenu cancel.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenMiniMenu in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenMiniMenu out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenMiniMenu underlay.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenMiniMenuContext underlay.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenMusicScroll background/_music scroll background.png -share/games/stepmania/Themes/default/BGAnimations/ScreenMusicScroll background/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenMusicScroll overlay.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenNameEntry background/_name entry.png -share/games/stepmania/Themes/default/BGAnimations/ScreenNameEntry background/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenNetEvaluation in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenNetEvaluation out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenNetSelectMusic in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenNetworkOptions in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenNetworkOptions out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenOptionsEditCourse overlay.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenOptionsEditCourseEntry overlay.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenOptionsManageCourses overlay.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenOptionsService in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenOptionsService out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenOptionsServiceChild in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenOptionsServiceChild out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenPlayerOptions background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenPlayerOptions in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenPlayerOptions out.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenProfileLoad background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenProfileLoad in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenProfileLoad out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenProfileLoad overlay.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenProfileSave in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenProfileSave out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenProfileSave overlay.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenPrompt in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenPrompt out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenPrompt underlay.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenRanking background/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenRanking background/ranking.png -share/games/stepmania/Themes/default/BGAnimations/ScreenRanking underlay/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenRaveOptions in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenRaveOptions out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenReloadSongs background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSMOnlineLogin overlay.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectCharacter in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectCharacter out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectDifficulty in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectDifficulty out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectGame in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectGroup in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectGroup out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic overlay/_CourseEntryDisplay bar.png -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic overlay/_DifficultyDisplay 6x1.png -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic overlay/_autogen.png -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic overlay/_balloon long.png -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic overlay/_balloon marathon.png -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic overlay/_banner frame.png -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic overlay/_banner mask.png -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic overlay/_bpm label.png -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic overlay/_difficulty icons 1x6.png -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic overlay/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic overlay/difficulties.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic underlay/_difficulty frame p1.png -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic underlay/_difficulty frame p2.png -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic underlay/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectProfileManage background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectProfileManage in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectProfileManage out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectStyle background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectStyle in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSelectStyle out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSongOptions in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSongOptions option in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSongOptions out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenStage background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenStage in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenStage out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/1.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/2.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/3.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/4.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/5.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/6.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/_underline.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/endless.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/event.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/extra1.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/extra2.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/final.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/nonstop.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay/oni.png -share/games/stepmania/Themes/default/BGAnimations/ScreenStyleSplash background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenStyleSplash in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenSystemLayer overlay.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenTestInput in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenTestInput out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenTestInput overlay.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenTextEntry in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenTextEntry out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenTextEntry underlay.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenTitleJoin overlay/default.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenTitleJoin overlay/dp.png -share/games/stepmania/Themes/default/BGAnimations/ScreenTitleJoin overlay/free.png -share/games/stepmania/Themes/default/BGAnimations/ScreenTitleJoin overlay/jp.png -share/games/stepmania/Themes/default/BGAnimations/ScreenTitleJoin overlay/pay.png -share/games/stepmania/Themes/default/BGAnimations/ScreenTitleJoin underlay.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenTitleMenu background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenTitleMenu begin out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenTitleMenu home.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenTitleMenu in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenTitleMenu out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenTitleMenu overlay.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenTitleMenu underlay.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenUnlockStatus background/bg.png -share/games/stepmania/Themes/default/BGAnimations/ScreenWithMenuElements background.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenWithMenuElements in.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenWithMenuElements out.redir -share/games/stepmania/Themes/default/BGAnimations/ScreenWithMenuElements overlay.lua -share/games/stepmania/Themes/default/BGAnimations/ScreenWithMenuElements underlay.lua -share/games/stepmania/Themes/default/BGAnimations/_BLANK/default.lua -share/games/stepmania/Themes/default/BGAnimations/_black.lua -share/games/stepmania/Themes/default/BGAnimations/_black.png -share/games/stepmania/Themes/default/BGAnimations/_delay in.lua -share/games/stepmania/Themes/default/BGAnimations/_delay out.lua -share/games/stepmania/Themes/default/BGAnimations/_fade and swoosh in.lua -share/games/stepmania/Themes/default/BGAnimations/_fade in normal.lua -share/games/stepmania/Themes/default/BGAnimations/_fade out normal.lua -share/games/stepmania/Themes/default/BGAnimations/_fade out with sound.lua -share/games/stepmania/Themes/default/BGAnimations/_frame 3x1/default.lua -share/games/stepmania/Themes/default/BGAnimations/_frame 3x3/default.lua -share/games/stepmania/Themes/default/BGAnimations/_frame files 3x1/headers 3x1.png -share/games/stepmania/Themes/default/BGAnimations/_fullscreen black.lua -share/games/stepmania/Themes/default/BGAnimations/_menu in.lua -share/games/stepmania/Themes/default/BGAnimations/_menu out.lua -share/games/stepmania/Themes/default/BGAnimations/_missing/dummy.txt -share/games/stepmania/Themes/default/BGAnimations/_moveon.png -share/games/stepmania/Themes/default/BGAnimations/_options to options.lua -share/games/stepmania/Themes/default/BGAnimations/_prompt in instant.lua -share/games/stepmania/Themes/default/BGAnimations/_prompt in normal.lua -share/games/stepmania/Themes/default/BGAnimations/_prompt out.redir -share/games/stepmania/Themes/default/BGAnimations/_prompt underlay.lua -share/games/stepmania/Themes/default/BGAnimations/_shared background fade in.lua -share/games/stepmania/Themes/default/BGAnimations/_shared background normal/bg.png -share/games/stepmania/Themes/default/BGAnimations/_shared background normal/default.lua -share/games/stepmania/Themes/default/BGAnimations/_shared edit courses.lua -share/games/stepmania/Themes/default/BGAnimations/_underline.png -share/games/stepmania/Themes/default/Fonts/BPMDisplay bpm 5x3.png -share/games/stepmania/Themes/default/Fonts/BPMDisplay bpm.ini -share/games/stepmania/Themes/default/Fonts/Combo numbers 5x3.png -share/games/stepmania/Themes/default/Fonts/Combo numbers.ini -share/games/stepmania/Themes/default/Fonts/Common Normal 16x16.png -share/games/stepmania/Themes/default/Fonts/Common Normal.ini -share/games/stepmania/Themes/default/Fonts/Common default 2x1.png -share/games/stepmania/Themes/default/Fonts/Common default.ini -share/games/stepmania/Themes/default/Fonts/Common title.redir -share/games/stepmania/Themes/default/Fonts/CourseEntryDisplay difficulty 2x1.png -share/games/stepmania/Themes/default/Fonts/CourseEntryDisplay difficulty.ini -share/games/stepmania/Themes/default/Fonts/CourseEntryDisplay number.redir -share/games/stepmania/Themes/default/Fonts/DifficultyMeter meter.redir -share/games/stepmania/Themes/default/Fonts/DifficultyMeter ticks 2x1.png -share/games/stepmania/Themes/default/Fonts/DifficultyMeter ticks.ini -share/games/stepmania/Themes/default/Fonts/DifficultyMeterEdit meter.redir -share/games/stepmania/Themes/default/Fonts/EditMenu title.redir -share/games/stepmania/Themes/default/Fonts/EditMenu value.redir -share/games/stepmania/Themes/default/Fonts/GroupList label.redir -share/games/stepmania/Themes/default/Fonts/HelpDisplay text.redir -share/games/stepmania/Themes/default/Fonts/LifeMeterBattery lives.redir -share/games/stepmania/Themes/default/Fonts/LifeMeterBattery percent text.redir -share/games/stepmania/Themes/default/Fonts/LyricDisplay text.redir -share/games/stepmania/Themes/default/Fonts/MenuTimer numbers.redir -share/games/stepmania/Themes/default/Fonts/ModeSwitcher stylenames.redir -share/games/stepmania/Themes/default/Fonts/MusicList titles 16x16.png -share/games/stepmania/Themes/default/Fonts/MusicList titles [extras].png -share/games/stepmania/Themes/default/Fonts/MusicList titles.ini -share/games/stepmania/Themes/default/Fonts/MusicWheelItem course.redir -share/games/stepmania/Themes/default/Fonts/MusicWheelItem roulette.redir -share/games/stepmania/Themes/default/Fonts/MusicWheelItem section.redir -share/games/stepmania/Themes/default/Fonts/MusicWheelItem sort.redir -share/games/stepmania/Themes/default/Fonts/MusicWheelItem text.redir -share/games/stepmania/Themes/default/Fonts/OptionIconRow icon.redir -share/games/stepmania/Themes/default/Fonts/PaneDisplay text.redir -share/games/stepmania/Themes/default/Fonts/ProTimingDisplay Judgment.redir -share/games/stepmania/Themes/default/Fonts/RoomInfoDisplay text.redir -share/games/stepmania/Themes/default/Fonts/RoomWheel text.redir -share/games/stepmania/Themes/default/Fonts/RoomWheelItem text.redir -share/games/stepmania/Themes/default/Fonts/ScoreDisplayLifeTime DeltaSeconds.redir -share/games/stepmania/Themes/default/Fonts/ScoreDisplayLifeTime TimeRemaining.redir -share/games/stepmania/Themes/default/Fonts/ScoreDisplayNormal numbers 5x3.png -share/games/stepmania/Themes/default/Fonts/ScoreDisplayNormal numbers.ini -share/games/stepmania/Themes/default/Fonts/ScoreDisplayOni numbers.redir -share/games/stepmania/Themes/default/Fonts/ScoreDisplayPercentage percent text.redir -share/games/stepmania/Themes/default/Fonts/ScoreDisplayRave level.redir -share/games/stepmania/Themes/default/Fonts/ScreenBookkeeping AllTime.redir -share/games/stepmania/Themes/default/Fonts/ScreenBookkeeping data.redir -share/games/stepmania/Themes/default/Fonts/ScreenBookkeeping title.redir -share/games/stepmania/Themes/default/Fonts/ScreenCredits titles.redir -share/games/stepmania/Themes/default/Fonts/ScreenEdit EditHelp.redir -share/games/stepmania/Themes/default/Fonts/ScreenEdit Info.redir -share/games/stepmania/Themes/default/Fonts/ScreenEdit PlayRecordHelp.redir -share/games/stepmania/Themes/default/Fonts/ScreenEditMenu MaxStepsLoadedFromProfile.redir -share/games/stepmania/Themes/default/Fonts/ScreenEditMenu NumStepsLoadedFromProfile.redir -share/games/stepmania/Themes/default/Fonts/ScreenEditMenu explanation.redir -share/games/stepmania/Themes/default/Fonts/ScreenEvaluation PlayerOptions.redir -share/games/stepmania/Themes/default/Fonts/ScreenEvaluation judge.redir -share/games/stepmania/Themes/default/Fonts/ScreenEvaluation percent remainder.redir -share/games/stepmania/Themes/default/Fonts/ScreenEvaluation percent text 5x3.png -share/games/stepmania/Themes/default/Fonts/ScreenEvaluation percent text.ini -share/games/stepmania/Themes/default/Fonts/ScreenEvaluation score.redir -share/games/stepmania/Themes/default/Fonts/ScreenEvaluation stage.redir -share/games/stepmania/Themes/default/Fonts/ScreenEvaluation time.redir -share/games/stepmania/Themes/default/Fonts/ScreenEvaluation totalscore.redir -share/games/stepmania/Themes/default/Fonts/ScreenEz2SelectMusic GroupName.redir -share/games/stepmania/Themes/default/Fonts/ScreenEz2SelectMusic difficulty.redir -share/games/stepmania/Themes/default/Fonts/ScreenGameplay ActiveAttackList.redir -share/games/stepmania/Themes/default/Fonts/ScreenGameplay StepsDescription.redir -share/games/stepmania/Themes/default/Fonts/ScreenGameplay player options.redir -share/games/stepmania/Themes/default/Fonts/ScreenGameplay player.redir -share/games/stepmania/Themes/default/Fonts/ScreenGameplay scoreboard.redir -share/games/stepmania/Themes/default/Fonts/ScreenGameplay song num.redir -share/games/stepmania/Themes/default/Fonts/ScreenGameplay song options.redir -share/games/stepmania/Themes/default/Fonts/ScreenGameplay survive time.redir -share/games/stepmania/Themes/default/Fonts/ScreenMapControllers entry.redir -share/games/stepmania/Themes/default/Fonts/ScreenMiniMenu title.redir -share/games/stepmania/Themes/default/Fonts/ScreenMusicScroll thanks.redir -share/games/stepmania/Themes/default/Fonts/ScreenMusicScroll titles.redir -share/games/stepmania/Themes/default/Fonts/ScreenNameEntry category.redir -share/games/stepmania/Themes/default/Fonts/ScreenNameEntry letters 16x16.png -share/games/stepmania/Themes/default/Fonts/ScreenNameEntry letters.ini -share/games/stepmania/Themes/default/Fonts/ScreenNetEvaluation names.redir -share/games/stepmania/Themes/default/Fonts/ScreenNetSelectMusic chat.redir -share/games/stepmania/Themes/default/Fonts/ScreenNetSelectMusic song.redir -share/games/stepmania/Themes/default/Fonts/ScreenNetSelectMusic wheel.redir -share/games/stepmania/Themes/default/Fonts/ScreenOptions explanation.redir -share/games/stepmania/Themes/default/Fonts/ScreenOptions icon.redir -share/games/stepmania/Themes/default/Fonts/ScreenOptions item.redir -share/games/stepmania/Themes/default/Fonts/ScreenOptions player.redir -share/games/stepmania/Themes/default/Fonts/ScreenOptions text 16x16.png -share/games/stepmania/Themes/default/Fonts/ScreenOptions text.ini -share/games/stepmania/Themes/default/Fonts/ScreenOptions title.redir -share/games/stepmania/Themes/default/Fonts/ScreenOptionsSimple title.redir -share/games/stepmania/Themes/default/Fonts/ScreenPrompt answer.redir -share/games/stepmania/Themes/default/Fonts/ScreenPrompt question.redir -share/games/stepmania/Themes/default/Fonts/ScreenRanking category.redir -share/games/stepmania/Themes/default/Fonts/ScreenRanking course list score.redir -share/games/stepmania/Themes/default/Fonts/ScreenRanking course list title.redir -share/games/stepmania/Themes/default/Fonts/ScreenRanking course title.redir -share/games/stepmania/Themes/default/Fonts/ScreenRanking name.redir -share/games/stepmania/Themes/default/Fonts/ScreenRanking points.redir -share/games/stepmania/Themes/default/Fonts/ScreenRanking score.redir -share/games/stepmania/Themes/default/Fonts/ScreenRanking song title.redir -share/games/stepmania/Themes/default/Fonts/ScreenRanking steps score.redir -share/games/stepmania/Themes/default/Fonts/ScreenRanking steps type.redir -share/games/stepmania/Themes/default/Fonts/ScreenRanking time.redir -share/games/stepmania/Themes/default/Fonts/ScreenSMOnlineLogin text.redir -share/games/stepmania/Themes/default/Fonts/ScreenSelectGroup num songs.redir -share/games/stepmania/Themes/default/Fonts/ScreenSelectMusic rank.redir -share/games/stepmania/Themes/default/Fonts/ScreenSelectMusic score 5x3.png -share/games/stepmania/Themes/default/Fonts/ScreenSelectMusic score.ini -share/games/stepmania/Themes/default/Fonts/ScreenStatsOverlay stats.redir -share/games/stepmania/Themes/default/Fonts/ScreenStatsOverlay time.redir -share/games/stepmania/Themes/default/Fonts/ScreenSystemLayer credits 16x16.png -share/games/stepmania/Themes/default/Fonts/ScreenSystemLayer credits.ini -share/games/stepmania/Themes/default/Fonts/ScreenSystemLayer message.redir -share/games/stepmania/Themes/default/Fonts/ScreenTextEntry answer.redir -share/games/stepmania/Themes/default/Fonts/ScreenTextEntry keyboard.redir -share/games/stepmania/Themes/default/Fonts/ScreenTextEntry question.redir -share/games/stepmania/Themes/default/Fonts/ScreenTitleMenu choices.redir -share/games/stepmania/Themes/default/Fonts/ScreenTitleMenu help.redir -share/games/stepmania/Themes/default/Fonts/ScreenUnlockStatus text.redir -share/games/stepmania/Themes/default/Fonts/TextBanner text.redir -share/games/stepmania/Themes/default/Fonts/_16px fonts.ini -share/games/stepmania/Themes/default/Fonts/_20px fonts.ini -share/games/stepmania/Themes/default/Fonts/_Arial 14 shadow 16x16.png -share/games/stepmania/Themes/default/Fonts/_Arial 14 shadow.ini -share/games/stepmania/Themes/default/Fonts/_ScreenRanking common 16x16.png -share/games/stepmania/Themes/default/Fonts/_ScreenRanking common.ini -share/games/stepmania/Themes/default/Fonts/_Thai 16px [PhayanChana] 16x4.png -share/games/stepmania/Themes/default/Fonts/_Thai 16px [Sara1] 8x2.png -share/games/stepmania/Themes/default/Fonts/_Thai 16px [Sara2] 8x2.png -share/games/stepmania/Themes/default/Fonts/_Thai 16px.ini -share/games/stepmania/Themes/default/Fonts/_game chars 16px 9x1.ini -share/games/stepmania/Themes/default/Fonts/_game chars 16px 9x1.png -share/games/stepmania/Themes/default/Fonts/_japanese 16px [extra] 4x1.png -share/games/stepmania/Themes/default/Fonts/_japanese 16px [kanji 1] 8x8.png -share/games/stepmania/Themes/default/Fonts/_japanese 16px [kanji 2] 8x8.png -share/games/stepmania/Themes/default/Fonts/_japanese 16px [kanji 3] 8x8.png -share/games/stepmania/Themes/default/Fonts/_japanese 16px [kanji 4] 8x8.png -share/games/stepmania/Themes/default/Fonts/_japanese 16px [kanji 5] 8x8.png -share/games/stepmania/Themes/default/Fonts/_japanese 16px [kanji 6] 8x8.png -share/games/stepmania/Themes/default/Fonts/_japanese 16px [main] 16x16.png -share/games/stepmania/Themes/default/Fonts/_japanese 16px.ini -share/games/stepmania/Themes/default/Fonts/_japanese 24px [extra] 4x1.png -share/games/stepmania/Themes/default/Fonts/_japanese 24px [kanji 1] 8x8.png -share/games/stepmania/Themes/default/Fonts/_japanese 24px [kanji 2] 8x8.png -share/games/stepmania/Themes/default/Fonts/_japanese 24px [kanji 3] 8x8.png -share/games/stepmania/Themes/default/Fonts/_japanese 24px [kanji 4] 8x8.png -share/games/stepmania/Themes/default/Fonts/_japanese 24px [kanji 5] 8x8.png -share/games/stepmania/Themes/default/Fonts/_japanese 24px [kanji 6] 8x8.png -share/games/stepmania/Themes/default/Fonts/_japanese 24px [main] 16x16.png -share/games/stepmania/Themes/default/Fonts/_japanese 24px.ini -share/games/stepmania/Themes/default/Fonts/_korean 16px [jamo 1] 8x8.png -share/games/stepmania/Themes/default/Fonts/_korean 16px [jamo 2] 8x8.png -share/games/stepmania/Themes/default/Fonts/_korean 16px [jamo 3] 8x8.png -share/games/stepmania/Themes/default/Fonts/_korean 16px [jamo 4] 8x8.png -share/games/stepmania/Themes/default/Fonts/_korean 16px.ini -share/games/stepmania/Themes/default/Fonts/_korean 24px [jamo 1] 8x8.png -share/games/stepmania/Themes/default/Fonts/_korean 24px [jamo 2] 8x8.png -share/games/stepmania/Themes/default/Fonts/_korean 24px [jamo 3] 8x8.png -share/games/stepmania/Themes/default/Fonts/_korean 24px [jamo 4] 8x8.png -share/games/stepmania/Themes/default/Fonts/_korean 24px.ini -share/games/stepmania/Themes/default/Fonts/_misc 16px 8x4.png -share/games/stepmania/Themes/default/Fonts/_misc 16px.ini -share/games/stepmania/Themes/default/Fonts/_missing.redir -share/games/stepmania/Themes/default/Fonts/_numbers1 5x3.png -share/games/stepmania/Themes/default/Fonts/_numbers1.ini -share/games/stepmania/Themes/default/Fonts/_numbers2 5x3.png -share/games/stepmania/Themes/default/Fonts/_numbers2.ini -share/games/stepmania/Themes/default/Fonts/_numbers3 5x3.png -share/games/stepmania/Themes/default/Fonts/_numbers3.ini -share/games/stepmania/Themes/default/Fonts/_option icon 16x16.png -share/games/stepmania/Themes/default/Fonts/_option icon.ini -share/games/stepmania/Themes/default/Fonts/_shared1 16x16.png -share/games/stepmania/Themes/default/Fonts/_shared1.ini -share/games/stepmania/Themes/default/Fonts/_shared2 16x16.png -share/games/stepmania/Themes/default/Fonts/_shared2 [extras].png -share/games/stepmania/Themes/default/Fonts/_shared2.ini -share/games/stepmania/Themes/default/Fonts/_zeroesthree 16x16.png -share/games/stepmania/Themes/default/Fonts/_zeroesthree.ini -share/games/stepmania/Themes/default/Fonts/blaster 16x16.ini -share/games/stepmania/Themes/default/Fonts/blaster 16x16.png -share/games/stepmania/Themes/default/Graphics/BPMDisplay label.png -share/games/stepmania/Themes/default/Graphics/Banner abc.png -share/games/stepmania/Themes/default/Graphics/Banner all music.png -share/games/stepmania/Themes/default/Graphics/Banner course fallback.redir -share/games/stepmania/Themes/default/Graphics/Banner mode.redir -share/games/stepmania/Themes/default/Graphics/Banner random.png -share/games/stepmania/Themes/default/Graphics/Banner roulette.png -share/games/stepmania/Themes/default/Graphics/BeginnerHelper background.png -share/games/stepmania/Themes/default/Graphics/BeginnerHelper flash.redir -share/games/stepmania/Themes/default/Graphics/BeginnerHelper stepcircle.png -share/games/stepmania/Themes/default/Graphics/CombinedLifeMeterTug frame.png -share/games/stepmania/Themes/default/Graphics/CombinedLifeMeterTug separator.png -share/games/stepmania/Themes/default/Graphics/CombinedLifeMeterTug stream p1.png -share/games/stepmania/Themes/default/Graphics/CombinedLifeMeterTug stream p2.png -share/games/stepmania/Themes/default/Graphics/CombinedLifeMeterTug tip p1.redir -share/games/stepmania/Themes/default/Graphics/CombinedLifeMeterTug tip p2.redir -share/games/stepmania/Themes/default/Graphics/Common fallback background.png -share/games/stepmania/Themes/default/Graphics/Common fallback banner.png -share/games/stepmania/Themes/default/Graphics/Common window icon.png -share/games/stepmania/Themes/default/Graphics/DifficultyMeter frame.redir -share/games/stepmania/Themes/default/Graphics/DifficultyRating icon.redir -share/games/stepmania/Themes/default/Graphics/EditCoursesMenu left.redir -share/games/stepmania/Themes/default/Graphics/EditCoursesMenu right.redir -share/games/stepmania/Themes/default/Graphics/EditMenu Left 1x4.png -share/games/stepmania/Themes/default/Graphics/EditMenu Right 1x4.png -share/games/stepmania/Themes/default/Graphics/GrooveGraph base.png -share/games/stepmania/Themes/default/Graphics/GrooveRadar base.png -share/games/stepmania/Themes/default/Graphics/GrooveRadar labels 1x5.png -share/games/stepmania/Themes/default/Graphics/GroupList bar.png -share/games/stepmania/Themes/default/Graphics/HoldJudgment label 1x2.png -share/games/stepmania/Themes/default/Graphics/JukeboxMenu left.redir -share/games/stepmania/Themes/default/Graphics/JukeboxMenu right.redir -share/games/stepmania/Themes/default/Graphics/LifeMeterBar background.lua -share/games/stepmania/Themes/default/Graphics/LifeMeterBar extra frame.png -share/games/stepmania/Themes/default/Graphics/LifeMeterBar extra hot.redir -share/games/stepmania/Themes/default/Graphics/LifeMeterBar extra normal.png -share/games/stepmania/Themes/default/Graphics/LifeMeterBar extra passing.redir -share/games/stepmania/Themes/default/Graphics/LifeMeterBar frame.png -share/games/stepmania/Themes/default/Graphics/LifeMeterBar hot.png -share/games/stepmania/Themes/default/Graphics/LifeMeterBar normal.png -share/games/stepmania/Themes/default/Graphics/LifeMeterBar passing.redir -share/games/stepmania/Themes/default/Graphics/LifeMeterBattery frame.png -share/games/stepmania/Themes/default/Graphics/LifeMeterBattery lives 1x4.png -share/games/stepmania/Themes/default/Graphics/MemoryCardDisplay checking p1.redir -share/games/stepmania/Themes/default/Graphics/MemoryCardDisplay checking p2.redir -share/games/stepmania/Themes/default/Graphics/MemoryCardDisplay error p1.png -share/games/stepmania/Themes/default/Graphics/MemoryCardDisplay error p2.png -share/games/stepmania/Themes/default/Graphics/MemoryCardDisplay late p1.png -share/games/stepmania/Themes/default/Graphics/MemoryCardDisplay late p2.png -share/games/stepmania/Themes/default/Graphics/MemoryCardDisplay none p1.png -share/games/stepmania/Themes/default/Graphics/MemoryCardDisplay none p2.png -share/games/stepmania/Themes/default/Graphics/MemoryCardDisplay ready p1.png -share/games/stepmania/Themes/default/Graphics/MemoryCardDisplay ready p2.png -share/games/stepmania/Themes/default/Graphics/MemoryCardDisplay removed p1.png -share/games/stepmania/Themes/default/Graphics/MemoryCardDisplay removed p2.png -share/games/stepmania/Themes/default/Graphics/MenuElements icon couple 2x1.png -share/games/stepmania/Themes/default/Graphics/MenuElements icon double 2x1.png -share/games/stepmania/Themes/default/Graphics/MenuElements icon single 2x1.png -share/games/stepmania/Themes/default/Graphics/MenuElements icon solo 2x1.png -share/games/stepmania/Themes/default/Graphics/MenuElements icon versus 2x1.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay AllCourses.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay Genre.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay ModeMenu.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay TopGrades.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay artist.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay bpm.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay easymeter.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay endless.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay group.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay hardmeter.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay length.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay mediummeter.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay nonstop.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay oni.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay popularity.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay preferred.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay roulette.png -share/games/stepmania/Themes/default/Graphics/MusicSortDisplay title.png -share/games/stepmania/Themes/default/Graphics/MusicWheel highlight.png -share/games/stepmania/Themes/default/Graphics/MusicWheelItem expanded.redir -share/games/stepmania/Themes/default/Graphics/MusicWheelItem grades/default.lua -share/games/stepmania/Themes/default/Graphics/MusicWheelItem grades/grades 2x9.png -share/games/stepmania/Themes/default/Graphics/MusicWheelItem mode.redir -share/games/stepmania/Themes/default/Graphics/MusicWheelItem section.png -share/games/stepmania/Themes/default/Graphics/MusicWheelItem song.png -share/games/stepmania/Themes/default/Graphics/MusicWheelItem sort.redir -share/games/stepmania/Themes/default/Graphics/NoteField bars 1x4.png -share/games/stepmania/Themes/default/Graphics/NoteField board.redir -share/games/stepmania/Themes/default/Graphics/OptionIconRow icon 3x2.redir -share/games/stepmania/Themes/default/Graphics/PaneDisplay MachineHighName label.redir -share/games/stepmania/Themes/default/Graphics/PaneDisplay MachineHighScore label.lua -share/games/stepmania/Themes/default/Graphics/PaneDisplay ProfileHighScore label.redir -share/games/stepmania/Themes/default/Graphics/PaneDisplay SongHands label.lua -share/games/stepmania/Themes/default/Graphics/PaneDisplay SongHolds label.lua -share/games/stepmania/Themes/default/Graphics/PaneDisplay SongJumps label.lua -share/games/stepmania/Themes/default/Graphics/PaneDisplay SongMines label.lua -share/games/stepmania/Themes/default/Graphics/PaneDisplay SongNumSteps label.lua -share/games/stepmania/Themes/default/Graphics/PaneDisplay SongRolls label.lua -share/games/stepmania/Themes/default/Graphics/Player combo/_combo.png -share/games/stepmania/Themes/default/Graphics/Player combo/_misses.png -share/games/stepmania/Themes/default/Graphics/Player combo/default.lua -share/games/stepmania/Themes/default/Graphics/Player judgment/_judgments 2x6.png -share/games/stepmania/Themes/default/Graphics/Player judgment/default.lua -share/games/stepmania/Themes/default/Graphics/RoomInfoDisplay Background.png -share/games/stepmania/Themes/default/Graphics/RoomWheelItem bar.redir -share/games/stepmania/Themes/default/Graphics/ScoreDisplayLifeTime frame.redir -share/games/stepmania/Themes/default/Graphics/ScoreDisplayNormal frame.redir -share/games/stepmania/Themes/default/Graphics/ScoreDisplayOni frame.redir -share/games/stepmania/Themes/default/Graphics/ScoreDisplayRave frame base p1.png -share/games/stepmania/Themes/default/Graphics/ScoreDisplayRave frame base p2.png -share/games/stepmania/Themes/default/Graphics/ScoreDisplayRave frame overlay p1.png -share/games/stepmania/Themes/default/Graphics/ScoreDisplayRave frame overlay p2.png -share/games/stepmania/Themes/default/Graphics/ScoreDisplayRave stream level1.png -share/games/stepmania/Themes/default/Graphics/ScoreDisplayRave stream level2.png -share/games/stepmania/Themes/default/Graphics/ScoreDisplayRave stream level3.png -share/games/stepmania/Themes/default/Graphics/ScreenBookkeeping footer.redir -share/games/stepmania/Themes/default/Graphics/ScreenBookkeeping header.redir -share/games/stepmania/Themes/default/Graphics/ScreenCenterImage footer.redir -share/games/stepmania/Themes/default/Graphics/ScreenCenterImage header.redir -share/games/stepmania/Themes/default/Graphics/ScreenCourseManager header.redir -share/games/stepmania/Themes/default/Graphics/ScreenCredits background frame.png -share/games/stepmania/Themes/default/Graphics/ScreenEditCourse header.lua -share/games/stepmania/Themes/default/Graphics/ScreenEditCourseEntry header.redir -share/games/stepmania/Themes/default/Graphics/ScreenEditCoursesMenu header.redir -share/games/stepmania/Themes/default/Graphics/ScreenEditMenu header.lua -share/games/stepmania/Themes/default/Graphics/ScreenEditMenu page.redir -share/games/stepmania/Themes/default/Graphics/ScreenEditOptions header.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation MachineRecord 01.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation MachineRecord 02.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation MachineRecord 03.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation MachineRecord 04.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation MachineRecord 05.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation MachineRecord 06.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation MachineRecord 07.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation MachineRecord 08.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation MachineRecord 09.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation MachineRecord 10.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation PersonalRecord 01.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation PersonalRecord 02.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation PersonalRecord 03.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation PersonalRecord 04.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation PersonalRecord 05.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation PersonalRecord 06.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation PersonalRecord 07.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation PersonalRecord 08.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation PersonalRecord 09.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation PersonalRecord 10.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation banner frame.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation bar actual p1.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation bar actual p2.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation bar possible p1.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation bar possible p2.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation bonus frame p1.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation bonus frame p2.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation difficulty icons 1x6.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation disqualified.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation failed background.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation failed overlay.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation grade frame p1.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation grade frame p2.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation grades 1x8.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation graph frame p1.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation graph frame p2.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation graph p2.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation judge labels 1x8.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation passed overlay.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation percent frame p1.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation percent frame p2.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation score label.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation stage.lua -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation survived frame p1.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation survived frame p2.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation time label.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation totalscore label.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation try extra1.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation try extra2.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation win frame p1.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation win frame p2.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation win p1 1x3.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluation win p2 1x3.png -share/games/stepmania/Themes/default/Graphics/ScreenEvaluationEndless footer.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluationEndless header.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluationNonstop footer.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluationNonstop header.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluationOni footer.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluationOni header.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluationRave header.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluationStage footer.redir -share/games/stepmania/Themes/default/Graphics/ScreenEvaluationStage header.lua -share/games/stepmania/Themes/default/Graphics/ScreenEvaluationSummary header.lua -share/games/stepmania/Themes/default/Graphics/ScreenEz2SelectMusic difficulty frame.redir -share/games/stepmania/Themes/default/Graphics/ScreenEz2SelectMusic hiddenicon.redir -share/games/stepmania/Themes/default/Graphics/ScreenEz2SelectMusic infoframe.redir -share/games/stepmania/Themes/default/Graphics/ScreenEz2SelectMusic mirroricon.redir -share/games/stepmania/Themes/default/Graphics/ScreenEz2SelectMusic options message.redir -share/games/stepmania/Themes/default/Graphics/ScreenEz2SelectMusic shuffleicon.redir -share/games/stepmania/Themes/default/Graphics/ScreenEz2SelectMusic speedicon.redir -share/games/stepmania/Themes/default/Graphics/ScreenEz2SelectMusic vanishicon.redir -share/games/stepmania/Themes/default/Graphics/ScreenGameplay Static Background.redir -share/games/stepmania/Themes/default/Graphics/ScreenGameplay difficulty icons 2x6.png -share/games/stepmania/Themes/default/Graphics/ScreenGameplay life frame.png -share/games/stepmania/Themes/default/Graphics/ScreenGameplay oni gameover.png -share/games/stepmania/Themes/default/Graphics/ScreenGameplay oni life frame.redir -share/games/stepmania/Themes/default/Graphics/ScreenGameplay song position meter.redir -share/games/stepmania/Themes/default/Graphics/ScreenGameplay song position tip.redir -share/games/stepmania/Themes/default/Graphics/ScreenGameplayExtra life frame.png -share/games/stepmania/Themes/default/Graphics/ScreenGameplaySyncMachine footer.redir -share/games/stepmania/Themes/default/Graphics/ScreenInstructions header.redir -share/games/stepmania/Themes/default/Graphics/ScreenJukeboxMenu header.lua -share/games/stepmania/Themes/default/Graphics/ScreenLogo dance (dither).png -share/games/stepmania/Themes/default/Graphics/ScreenLogo ds3ddx.png -share/games/stepmania/Themes/default/Graphics/ScreenLogo ez2.png -share/games/stepmania/Themes/default/Graphics/ScreenLogo pump.redir -share/games/stepmania/Themes/default/Graphics/ScreenLogo techno.redir -share/games/stepmania/Themes/default/Graphics/ScreenMapControllers exit.lua -share/games/stepmania/Themes/default/Graphics/ScreenMapControllers header.redir -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenu bullet.redir -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenu cursor 3x2.redir -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenu footer 3x2.redir -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenu icon 3x2.redir -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenu page.redir -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenuAreaMenu header.lua -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenuBackgroundChange header.lua -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenuContext header.redir -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenuCourseDisplay header.lua -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenuCourseOptions header.lua -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenuEditHelp header.lua -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenuInsertCourseAttack header.lua -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenuInsertTapAttack header.lua -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenuMainMenu header.lua -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenuPreferences header.lua -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenuSongInformation header.lua -share/games/stepmania/Themes/default/Graphics/ScreenMiniMenuStepsInformation header.lua -share/games/stepmania/Themes/default/Graphics/ScreenNetEvaluation header.redir -share/games/stepmania/Themes/default/Graphics/ScreenNetRoom ChatInputBox.png -share/games/stepmania/Themes/default/Graphics/ScreenNetRoom ChatOutputBox.png -share/games/stepmania/Themes/default/Graphics/ScreenNetRoom TitleBG.png -share/games/stepmania/Themes/default/Graphics/ScreenNetRoom header.redir -share/games/stepmania/Themes/default/Graphics/ScreenNetSelectMusic ChatInputbox.redir -share/games/stepmania/Themes/default/Graphics/ScreenNetSelectMusic ChatOutputBox.redir -share/games/stepmania/Themes/default/Graphics/ScreenNetSelectMusic DIffBG.redir -share/games/stepmania/Themes/default/Graphics/ScreenNetSelectMusic Selection.redir -share/games/stepmania/Themes/default/Graphics/ScreenNetSelectMusic header.redir -share/games/stepmania/Themes/default/Graphics/ScreenNetSelectMusic options.png -share/games/stepmania/Themes/default/Graphics/ScreenNetworkOptions header.lua -share/games/stepmania/Themes/default/Graphics/ScreenOptions CanGoLeft.redir -share/games/stepmania/Themes/default/Graphics/ScreenOptions CanGoRight.redir -share/games/stepmania/Themes/default/Graphics/ScreenOptions bullet.png -share/games/stepmania/Themes/default/Graphics/ScreenOptions cursor 3x2.png -share/games/stepmania/Themes/default/Graphics/ScreenOptions icon 3x2.redir -share/games/stepmania/Themes/default/Graphics/ScreenOptions line highlight.redir -share/games/stepmania/Themes/default/Graphics/ScreenOptions more.redir -share/games/stepmania/Themes/default/Graphics/ScreenOptions page.png -share/games/stepmania/Themes/default/Graphics/ScreenOptions underline 3x2.png -share/games/stepmania/Themes/default/Graphics/ScreenOptionsEditCourse header.redir -share/games/stepmania/Themes/default/Graphics/ScreenOptionsEditCourseEntry header.redir -share/games/stepmania/Themes/default/Graphics/ScreenOptionsEditProfile header.redir -share/games/stepmania/Themes/default/Graphics/ScreenOptionsManageCourses header.redir -share/games/stepmania/Themes/default/Graphics/ScreenOptionsManageProfiles header.redir -share/games/stepmania/Themes/default/Graphics/ScreenOptionsService header.redir -share/games/stepmania/Themes/default/Graphics/ScreenOptionsServiceChild header.redir -share/games/stepmania/Themes/default/Graphics/ScreenOptionsSimple cursor 3x2.redir -share/games/stepmania/Themes/default/Graphics/ScreenPackages DownloadBG.png -share/games/stepmania/Themes/default/Graphics/ScreenPackages PackagesBG.png -share/games/stepmania/Themes/default/Graphics/ScreenPackages WebBG.png -share/games/stepmania/Themes/default/Graphics/ScreenPackages WebSel.png -share/games/stepmania/Themes/default/Graphics/ScreenPackages header.lua -share/games/stepmania/Themes/default/Graphics/ScreenPlayerOptions ask options.png -share/games/stepmania/Themes/default/Graphics/ScreenPlayerOptions disqualify.redir -share/games/stepmania/Themes/default/Graphics/ScreenPlayerOptions entering options.png -share/games/stepmania/Themes/default/Graphics/ScreenPlayerOptions header.redir -share/games/stepmania/Themes/default/Graphics/ScreenProfileLoad header.redir -share/games/stepmania/Themes/default/Graphics/ScreenProfileSave header.redir -share/games/stepmania/Themes/default/Graphics/ScreenPrompt cursor.lua -share/games/stepmania/Themes/default/Graphics/ScreenRanking CourseDifficulty easy.redir -share/games/stepmania/Themes/default/Graphics/ScreenRanking CourseDifficulty hard.redir -share/games/stepmania/Themes/default/Graphics/ScreenRanking CourseDifficulty medium.redir -share/games/stepmania/Themes/default/Graphics/ScreenRanking Difficulty challenge.redir -share/games/stepmania/Themes/default/Graphics/ScreenRanking Difficulty easy.redir -share/games/stepmania/Themes/default/Graphics/ScreenRanking Difficulty hard.redir -share/games/stepmania/Themes/default/Graphics/ScreenRanking Difficulty medium.redir -share/games/stepmania/Themes/default/Graphics/ScreenRanking banner frame.redir -share/games/stepmania/Themes/default/Graphics/ScreenRanking bullets 1x5.png -share/games/stepmania/Themes/default/Graphics/ScreenRanking course frame.redir -share/games/stepmania/Themes/default/Graphics/ScreenRanking song frame.redir -share/games/stepmania/Themes/default/Graphics/ScreenRanking type dance-double.png -share/games/stepmania/Themes/default/Graphics/ScreenRanking type dance-single.png -share/games/stepmania/Themes/default/Graphics/ScreenRaveOptions header.redir -share/games/stepmania/Themes/default/Graphics/ScreenSMOnlineLogin PasswordBG.redir -share/games/stepmania/Themes/default/Graphics/ScreenSMOnlineLogin header.lua -share/games/stepmania/Themes/default/Graphics/ScreenSMOnlineLogin page.png -share/games/stepmania/Themes/default/Graphics/ScreenSMOnlineSelectMusic ChatInputbox.redir -share/games/stepmania/Themes/default/Graphics/ScreenSMOnlineSelectMusic ChatOutputBox.redir -share/games/stepmania/Themes/default/Graphics/ScreenSMOnlineSelectMusic DIffBG.redir -share/games/stepmania/Themes/default/Graphics/ScreenSMOnlineSelectMusic Selection.redir -share/games/stepmania/Themes/default/Graphics/ScreenSelectCharacter attack frame 1x2.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectCharacter card arrows.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectCharacter explanation.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectCharacter header.lua -share/games/stepmania/Themes/default/Graphics/ScreenSelectCharacter title 2x2.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectCourse banner frame.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectCourse explanation.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectCourse header.lua -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty cursor 2x1.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty explanation 1x2.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty header.lua -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty info1.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty info2.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty info3.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty info4.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty info5.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty info6.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty info7.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty info8.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty more page1 1x4.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty more page2 1x4.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty ok 2x1.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty picture1.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty picture2.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty picture3.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty picture4.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty picture5.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty picture6.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty picture7.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty picture8.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectDifficulty shadow 2x1.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectGame header.redir -share/games/stepmania/Themes/default/Graphics/ScreenSelectGroup contents.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectGroup explanation.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectGroup frame.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectGroup header.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectMasterBlank explanation page1.redir -share/games/stepmania/Themes/default/Graphics/ScreenSelectMasterBlank explanation page2.redir -share/games/stepmania/Themes/default/Graphics/ScreenSelectMasterBlank more page1.redir -share/games/stepmania/Themes/default/Graphics/ScreenSelectMasterBlank more page2.redir -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusic difficulty icons 1x6.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusic fallback cdtitle.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusic header.lua -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusic options message 1x2.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusic score frame p1.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusic score frame p2.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusicEz2 difficulty frame.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusicEz2 difficultyratingicon.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusicEz2 hiddenicon.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusicEz2 infoframe.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusicEz2 mirroricon.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusicEz2 shuffleicon.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusicEz2 speedicon.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectMusicEz2 vanishicon.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectPlayer header.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectProfile scroll choiceCreate.lua -share/games/stepmania/Themes/default/Graphics/ScreenSelectProfile scroll choiceExit.lua -share/games/stepmania/Themes/default/Graphics/ScreenSelectProfile scroll choiceProfile.lua -share/games/stepmania/Themes/default/Graphics/ScreenSelectProfileManage header.redir -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle doubles premium.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle explanation.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle header.lua -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle icon1.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle icon2.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle icon3.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle icon4.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle icon5.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle info1.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle info2.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle info3.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle info4.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle info5.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle joint premium.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle picture1.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle picture2.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle picture3.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle picture4.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle picture5.png -share/games/stepmania/Themes/default/Graphics/ScreenSelectStyle warning.png -share/games/stepmania/Themes/default/Graphics/ScreenSetTime header.lua -share/games/stepmania/Themes/default/Graphics/ScreenSongOptions header.redir -share/games/stepmania/Themes/default/Graphics/ScreenStyleSplash footer.redir -share/games/stepmania/Themes/default/Graphics/ScreenStyleSplash header.redir -share/games/stepmania/Themes/default/Graphics/ScreenSystemLayer MessageFrame.redir -share/games/stepmania/Themes/default/Graphics/ScreenTestInput header.lua -share/games/stepmania/Themes/default/Graphics/ScreenTextEntry cursor.lua -share/games/stepmania/Themes/default/Graphics/ScreenTextEntry header.redir -share/games/stepmania/Themes/default/Graphics/ScreenTitleJoin scroll choice1.redir -share/games/stepmania/Themes/default/Graphics/ScreenTitleMenu beat.redir -share/games/stepmania/Themes/default/Graphics/ScreenTitleMenu dance.redir -share/games/stepmania/Themes/default/Graphics/ScreenTitleMenu footer.redir -share/games/stepmania/Themes/default/Graphics/ScreenTitleMenu header.redir -share/games/stepmania/Themes/default/Graphics/ScreenTitleMenu pump.redir -share/games/stepmania/Themes/default/Graphics/ScreenTitleMenu scroll.lua -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0001 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0002 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0003 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0004 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0005 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0006 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0007 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0008 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0009 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0010 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0011 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0012 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0013 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0014 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0015 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0016 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0017 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0018 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0019 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenUnlockStatus 0020 icon.png -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements StyleIcon/_icon OnePlayerOneSide 2x1.png -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements StyleIcon/_icon OnePlayerTwoSides 2x1.png -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements StyleIcon/_icon TwoPlayersSharedSides 2x1.png -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements StyleIcon/_icon TwoPlayersTwoSides 2x1.png -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements StyleIcon/default.lua -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements footer.redir -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements stage/_stage Stage_demo.png -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements stage/_stage Stage_endless.redir -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements stage/_stage Stage_event.png -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements stage/_stage Stage_extra1.png -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements stage/_stage Stage_extra2.png -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements stage/_stage Stage_nonstop.redir -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements stage/_stage Stage_oni.redir -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements stage/default.lua -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements stage/stage.lua -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElementsBlank footer.redir -share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElementsBlank header.redir -share/games/stepmania/Themes/default/Graphics/ScrollBar parts 1x3.png -share/games/stepmania/Themes/default/Graphics/ScrollBar thumb.png -share/games/stepmania/Themes/default/Graphics/SnapDisplay icon 9x1.png -share/games/stepmania/Themes/default/Graphics/WheelBase hilight.redir -share/games/stepmania/Themes/default/Graphics/WheelItemBase bar.redir -share/games/stepmania/Themes/default/Graphics/WheelNotifyIcon icons 4x2.png -share/games/stepmania/Themes/default/Graphics/_PaneDisplay label.lua -share/games/stepmania/Themes/default/Graphics/_blank.png -share/games/stepmania/Themes/default/Graphics/_frame 1d.lua -share/games/stepmania/Themes/default/Graphics/_header.lua -share/games/stepmania/Themes/default/Graphics/_missing.png -share/games/stepmania/Themes/default/Graphics/_option icon 3x2.png -share/games/stepmania/Themes/default/Graphics/_shared footer.png -share/games/stepmania/Themes/default/Graphics/_shared menu header.png -share/games/stepmania/Themes/default/Graphics/_shared options header.lua -share/games/stepmania/Themes/default/Languages/de.ini -share/games/stepmania/Themes/default/Languages/en.ini -share/games/stepmania/Themes/default/Languages/es.ini -share/games/stepmania/Themes/default/Languages/fr.ini -share/games/stepmania/Themes/default/Languages/it.ini -share/games/stepmania/Themes/default/Other/Profile Catalog.xsl -share/games/stepmania/Themes/default/Other/Profile Common.xsl -share/games/stepmania/Themes/default/Other/Profile Stats.xsl -share/games/stepmania/Themes/default/Other/ScreenGameplaySyncMachine music.ogg -share/games/stepmania/Themes/default/Other/ScreenGameplaySyncMachine music.sm -share/games/stepmania/Themes/default/Other/ScreenHowToPlay steps.sm -share/games/stepmania/Themes/default/Other/SongManager PreferredCourses.txt -share/games/stepmania/Themes/default/Other/SongManager PreferredSongs.txt -share/games/stepmania/Themes/default/Other/SongManager PreferredSort.txt -share/games/stepmania/Themes/default/Scripts/00 init.lua -share/games/stepmania/Themes/default/Scripts/01 base.lua -share/games/stepmania/Themes/default/Scripts/Actor.lua -share/games/stepmania/Themes/default/Scripts/ActorDef.lua -share/games/stepmania/Themes/default/Scripts/Branches.lua -share/games/stepmania/Themes/default/Scripts/Colors.lua -share/games/stepmania/Themes/default/Scripts/Debug.lua -share/games/stepmania/Themes/default/Scripts/Enum.lua -share/games/stepmania/Themes/default/Scripts/HelpDisplay.lua -share/games/stepmania/Themes/default/Scripts/Lyrics.lua -share/games/stepmania/Themes/default/Scripts/OptionsMenu.lua -share/games/stepmania/Themes/default/Scripts/Other.lua -share/games/stepmania/Themes/default/Scripts/Serialize.lua -share/games/stepmania/Themes/default/Scripts/Sound.lua -share/games/stepmania/Themes/default/Scripts/Sprite.lua -share/games/stepmania/Themes/default/Scripts/StageMods.lua -share/games/stepmania/Themes/default/Scripts/Utilities.lua -share/games/stepmania/Themes/default/Sounds/Common cancel.redir -share/games/stepmania/Themes/default/Sounds/Common coin.redir -share/games/stepmania/Themes/default/Sounds/Common invalid.ogg -share/games/stepmania/Themes/default/Sounds/Common screenshot.ogg -share/games/stepmania/Themes/default/Sounds/Common start.ogg -share/games/stepmania/Themes/default/Sounds/EditCoursesMenu row.redir -share/games/stepmania/Themes/default/Sounds/EditCoursesMenu save.redir -share/games/stepmania/Themes/default/Sounds/EditCoursesMenu value.redir -share/games/stepmania/Themes/default/Sounds/EditMenu row.redir -share/games/stepmania/Themes/default/Sounds/EditMenu value.redir -share/games/stepmania/Themes/default/Sounds/GameplayAssist clap.redir -share/games/stepmania/Themes/default/Sounds/GameplayAssist metronome beat.redir -share/games/stepmania/Themes/default/Sounds/GameplayAssist metronome measure.redir -share/games/stepmania/Themes/default/Sounds/JukeboxMenu row.redir -share/games/stepmania/Themes/default/Sounds/JukeboxMenu value.redir -share/games/stepmania/Themes/default/Sounds/LifeMeterBattery gain.ogg -share/games/stepmania/Themes/default/Sounds/LifeMeterBattery lose.ogg -share/games/stepmania/Themes/default/Sounds/LifeMeterTime GainLife.redir -share/games/stepmania/Themes/default/Sounds/MemoryCardManager disconnect.ogg -share/games/stepmania/Themes/default/Sounds/MemoryCardManager error.redir -share/games/stepmania/Themes/default/Sounds/MemoryCardManager ready.ogg -share/games/stepmania/Themes/default/Sounds/MemoryCardManager too late.redir -share/games/stepmania/Themes/default/Sounds/MenuTimer tick.ogg -share/games/stepmania/Themes/default/Sounds/MusicWheel change.ogg -share/games/stepmania/Themes/default/Sounds/MusicWheel expand.redir -share/games/stepmania/Themes/default/Sounds/MusicWheel locked.ogg -share/games/stepmania/Themes/default/Sounds/MusicWheel sort.ogg -share/games/stepmania/Themes/default/Sounds/Player battle attack ending.redir -share/games/stepmania/Themes/default/Sounds/Player battle attack launch.redir -share/games/stepmania/Themes/default/Sounds/Player course attack ending.redir -share/games/stepmania/Themes/default/Sounds/Player course attack launch.redir -share/games/stepmania/Themes/default/Sounds/Player mine.ogg -share/games/stepmania/Themes/default/Sounds/ScreenCaution change.redir -share/games/stepmania/Themes/default/Sounds/ScreenCaution start.redir -share/games/stepmania/Themes/default/Sounds/ScreenCompany music.ogg -share/games/stepmania/Themes/default/Sounds/ScreenCredits music (loop).ogg -share/games/stepmania/Themes/default/Sounds/ScreenEdit AddNote.redir -share/games/stepmania/Themes/default/Sounds/ScreenEdit RemoveNote.redir -share/games/stepmania/Themes/default/Sounds/ScreenEdit line.redir -share/games/stepmania/Themes/default/Sounds/ScreenEdit marker.redir -share/games/stepmania/Themes/default/Sounds/ScreenEdit music.redir -share/games/stepmania/Themes/default/Sounds/ScreenEdit save.ogg -share/games/stepmania/Themes/default/Sounds/ScreenEdit snap.redir -share/games/stepmania/Themes/default/Sounds/ScreenEdit switch steps.redir -share/games/stepmania/Themes/default/Sounds/ScreenEdit value decrease.redir -share/games/stepmania/Themes/default/Sounds/ScreenEdit value increase.redir -share/games/stepmania/Themes/default/Sounds/ScreenEditCourseSubmenu difficulty changed.redir -share/games/stepmania/Themes/default/Sounds/ScreenEvaluation failed.redir -share/games/stepmania/Themes/default/Sounds/ScreenEvaluation passed.redir -share/games/stepmania/Themes/default/Sounds/ScreenEvaluation start.redir -share/games/stepmania/Themes/default/Sounds/ScreenEvaluation try extra1.ogg -share/games/stepmania/Themes/default/Sounds/ScreenEvaluation try extra2.redir -share/games/stepmania/Themes/default/Sounds/ScreenGameOver music.redir -share/games/stepmania/Themes/default/Sounds/ScreenGameplay oni die.ogg -share/games/stepmania/Themes/default/Sounds/ScreenHowToPlay music.redir -share/games/stepmania/Themes/default/Sounds/ScreenInstructions music.redir -share/games/stepmania/Themes/default/Sounds/ScreenIntroMovie music.redir -share/games/stepmania/Themes/default/Sounds/ScreenJukeboxMenu music.redir -share/games/stepmania/Themes/default/Sounds/ScreenMapControllers change.redir -share/games/stepmania/Themes/default/Sounds/ScreenMapControllers delete.redir -share/games/stepmania/Themes/default/Sounds/ScreenMiniMenu change.redir -share/games/stepmania/Themes/default/Sounds/ScreenMiniMenu music.redir -share/games/stepmania/Themes/default/Sounds/ScreenMiniMenu next.redir -share/games/stepmania/Themes/default/Sounds/ScreenMiniMenu prev.redir -share/games/stepmania/Themes/default/Sounds/ScreenMiniMenu row.redir -share/games/stepmania/Themes/default/Sounds/ScreenMiniMenu value.redir -share/games/stepmania/Themes/default/Sounds/ScreenMusicScroll music (loop).ogg -share/games/stepmania/Themes/default/Sounds/ScreenNameEntry music.redir -share/games/stepmania/Themes/default/Sounds/ScreenNameEntry step.redir -share/games/stepmania/Themes/default/Sounds/ScreenNetSelectMusic change opt.redir -share/games/stepmania/Themes/default/Sounds/ScreenNetSelectMusic change sel.redir -share/games/stepmania/Themes/default/Sounds/ScreenOptions change.redir -share/games/stepmania/Themes/default/Sounds/ScreenOptions next.redir -share/games/stepmania/Themes/default/Sounds/ScreenOptions prev.redir -share/games/stepmania/Themes/default/Sounds/ScreenOptions toggle off.redir -share/games/stepmania/Themes/default/Sounds/ScreenOptions toggle on.redir -share/games/stepmania/Themes/default/Sounds/ScreenPrompt change.redir -share/games/stepmania/Themes/default/Sounds/ScreenRanking music (loop).ogg -share/games/stepmania/Themes/default/Sounds/ScreenSelectCharacter change.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectCharacter music.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectDifficulty change.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectDifficulty music.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectGroup change.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectGroup music.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectMusic course music.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectMusic difficulty easier.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectMusic difficulty harder.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectMusic locked.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectMusic loop music.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectMusic options.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectMusic random music.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectMusic roulette music.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectMusic section music.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectMusic sort music.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectMusic start.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectStyle change.redir -share/games/stepmania/Themes/default/Sounds/ScreenSelectStyle music.redir -share/games/stepmania/Themes/default/Sounds/ScreenTextEntry backspace.redir -share/games/stepmania/Themes/default/Sounds/ScreenTextEntry change.redir -share/games/stepmania/Themes/default/Sounds/ScreenTextEntry type.redir -share/games/stepmania/Themes/default/Sounds/ScreenTitleMenu change.redir -share/games/stepmania/Themes/default/Sounds/ScreenTitleMenu start.redir -share/games/stepmania/Themes/default/Sounds/ScreenUnlock music.redir -share/games/stepmania/Themes/default/Sounds/ScreenWithMenuElements music.redir -share/games/stepmania/Themes/default/Sounds/_block (loop).ogg -share/games/stepmania/Themes/default/Sounds/_cancel.ogg -share/games/stepmania/Themes/default/Sounds/_clap.ogg -share/games/stepmania/Themes/default/Sounds/_common menu music.redir -share/games/stepmania/Themes/default/Sounds/_common row.ogg -share/games/stepmania/Themes/default/Sounds/_common value.ogg -share/games/stepmania/Themes/default/Sounds/_drums (loop).ogg -share/games/stepmania/Themes/default/Sounds/_edit marker.redir -share/games/stepmania/Themes/default/Sounds/_extra1.ogg -share/games/stepmania/Themes/default/Sounds/_extra2.redir -share/games/stepmania/Themes/default/Sounds/_failed.ogg -share/games/stepmania/Themes/default/Sounds/_memcard error.ogg -share/games/stepmania/Themes/default/Sounds/_missing.ogg -share/games/stepmania/Themes/default/Sounds/_prompt.ogg -share/games/stepmania/Themes/default/Sounds/_silent.ogg -share/games/stepmania/Themes/default/Sounds/_skavenger (loop).ogg -share/games/stepmania/Themes/default/Sounds/_switch down.ogg -share/games/stepmania/Themes/default/Sounds/_switch up.ogg -share/games/stepmania/Themes/default/Sounds/_swoosh normal.ogg -share/games/stepmania/Themes/default/Sounds/_toasty.ogg -share/games/stepmania/Themes/default/metrics.ini -share/games/stepmania/Themes/instructions.txt -share/games/stepmania/Themes/pump/Languages/en.ini -share/games/stepmania/Themes/pump/Scripts/Sprite.lua -share/games/stepmania/Themes/techno/metrics.ini -share/games/stepmania/stepmania -@dirrm share/games/stepmania/Themes/techno -@dirrm share/games/stepmania/Themes/pump/Scripts -@dirrm share/games/stepmania/Themes/pump/Languages -@dirrm share/games/stepmania/Themes/pump -@dirrm share/games/stepmania/Themes/default/Sounds -@dirrm share/games/stepmania/Themes/default/Scripts -@dirrm share/games/stepmania/Themes/default/Other -@dirrm share/games/stepmania/Themes/default/Languages -@dirrm share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements stage -@dirrm share/games/stepmania/Themes/default/Graphics/ScreenWithMenuElements StyleIcon -@dirrm share/games/stepmania/Themes/default/Graphics/Player judgment -@dirrm share/games/stepmania/Themes/default/Graphics/Player combo -@dirrm share/games/stepmania/Themes/default/Graphics/MusicWheelItem grades -@dirrm share/games/stepmania/Themes/default/Graphics -@dirrm share/games/stepmania/Themes/default/Fonts -@dirrm share/games/stepmania/Themes/default/BGAnimations/_shared background normal -@dirrm share/games/stepmania/Themes/default/BGAnimations/_missing -@dirrm share/games/stepmania/Themes/default/BGAnimations/_frame files 3x1 -@dirrm share/games/stepmania/Themes/default/BGAnimations/_frame 3x3 -@dirrm share/games/stepmania/Themes/default/BGAnimations/_frame 3x1 -@dirrm share/games/stepmania/Themes/default/BGAnimations/_BLANK -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenUnlockStatus background -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenTitleJoin overlay -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenStage overlay -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic underlay -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenSelectMusic overlay -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenRanking underlay -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenRanking background -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenNameEntry background -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenMusicScroll background -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenMemoryCard background -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenLogo background -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenInstructions overlay -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenHowToPlay overlay -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenHowToPlay background -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay underlay -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay toasty -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay ready -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay overlay -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay out -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay next course song -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay go -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenGameplay failed -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenGameOver background -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenEvaluationStage overlay -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenEdit underlay -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenDemonstration overlay -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenCredits overlay -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenCompany background -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenCenterImage background -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenCaution background -@dirrm share/games/stepmania/Themes/default/BGAnimations/ScreenAlbums background -@dirrm share/games/stepmania/Themes/default/BGAnimations -@dirrm share/games/stepmania/Themes/default -@dirrm share/games/stepmania/Themes/beat/Graphics -@dirrm share/games/stepmania/Themes/beat -@dirrm share/games/stepmania/Themes/_Installer/Languages -@dirrm share/games/stepmania/Themes/_Installer -@dirrm share/games/stepmania/Themes -@dirrm share/games/stepmania/NoteSkins/pump/default -@dirrm share/games/stepmania/NoteSkins/pump/classic -@dirrm share/games/stepmania/NoteSkins/pump -@dirrm share/games/stepmania/NoteSkins/lights/default -@dirrm share/games/stepmania/NoteSkins/lights -@dirrm share/games/stepmania/NoteSkins/dance/flat -@dirrm share/games/stepmania/NoteSkins/dance/default -@dirrm share/games/stepmania/NoteSkins/dance/bold -@dirrm share/games/stepmania/NoteSkins/dance -@dirrm share/games/stepmania/NoteSkins/common/common -@dirrm share/games/stepmania/NoteSkins/common -@dirrm share/games/stepmania/NoteSkins -@dirrm share/games/stepmania/Data/Shaders/GLSL -@dirrm share/games/stepmania/Data/Shaders -@dirrm share/games/stepmania/Data -@dirrm share/games/stepmania/Courses/Samples -@dirrm share/games/stepmania/Courses -@dirrm share/games/stepmania/Characters/default -@dirrm share/games/stepmania/Characters -@dirrm share/games/stepmania/BackgroundTransitions -@dirrm share/games/stepmania/BackgroundEffects -@dirrm share/games/stepmania/BGAnimations -@dirrm share/games/stepmania/Songs -@dirrm share/games/stepmania/Announcers -@dirrm share/games/stepmania -@dirrmtry share/games +bin/stepmania +lib/stepmania/GtkModule.so +lib/stepmania/Packages/GameData.smzip +lib/stepmania/stepmania +share/applications/stepmania.desktop +%%PORTDOCS%%%%DOCSDIR%%/Changelog_SSCformat.txt +%%PORTDOCS%%%%DOCSDIR%%/Changelog_sm-ssc.txt +%%PORTDOCS%%%%DOCSDIR%%/Changelog_sm5.txt +%%PORTDOCS%%%%DOCSDIR%%/CommandLineArgs.txt +%%PORTDOCS%%%%DOCSDIR%%/Copying.MAD +%%PORTDOCS%%%%DOCSDIR%%/CourseFormat.txt +%%PORTDOCS%%%%DOCSDIR%%/CustomMissionReference.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/BuildingFfmpegOnMac.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/CodingStyle.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/CompileFlags.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/GoldenRules.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/NegBPMsTutorial.html +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/SMLanProtocol.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/SMO_protocol-aj.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/SMXML.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/TextEntry.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/WarpNotes.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/ezsockets.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/interesting_sm4_commit_logs.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/negbpmtut/screen00214.jpg +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/negbpmtut/screen00215.jpg +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/negbpmtut/screen00216.jpg +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/negbpmtut/screen00217.jpg +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/negbpmtut/screen00218.jpg +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/negbpmtut/screen00221.jpg +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/possible memory leaks.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/rivaldata.txt +%%PORTDOCS%%%%DOCSDIR%%/Devdocs/versioning.txt +%%PORTDOCS%%%%DOCSDIR%%/Doxyfile +%%PORTDOCS%%%%DOCSDIR%%/KnownIssues.txt +%%PORTDOCS%%%%DOCSDIR%%/Luadoc/Lua.xml +%%PORTDOCS%%%%DOCSDIR%%/Luadoc/Lua.xsd +%%PORTDOCS%%%%DOCSDIR%%/Luadoc/Lua.xsl +%%PORTDOCS%%%%DOCSDIR%%/Luadoc/LuaDocumentation.xml +%%PORTDOCS%%%%DOCSDIR%%/Luadoc/bgline.png +%%PORTDOCS%%%%DOCSDIR%%/Luadoc/closed.gif +%%PORTDOCS%%%%DOCSDIR%%/Luadoc/favicon.ico +%%PORTDOCS%%%%DOCSDIR%%/Luadoc/open.gif +%%PORTDOCS%%%%DOCSDIR%%/README-GUIDELINES +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/BMS/BM98Data_format_specification.html +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/BMS/BM98FinalSecret.html +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/BMS/BMS_Reading_Tutorial.rtf +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/BMS/BMS_Reading_Tutorial.txt +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/BMS/_src.txt +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/BMS/tmp.txt +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/DWI/DWI.txt +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/DWI/readme.html +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/KSF/_src.txt +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/KSF/ksf-format.txt +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/KSF/sample.ksf +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/README +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/SDF/SDF.txt +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/SDF/ssc-banner.png +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/SDF/ssc-bg.png +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/SDF/test-1bpm.sdf +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/SDF/test.sdf +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/SDF/test.sm +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/dance-spec.txt +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/misc.txt +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/new format draft.txt +%%PORTDOCS%%%%DOCSDIR%%/SimfileFormats/ssc_msd5.txt +%%PORTDOCS%%%%DOCSDIR%%/Stats.xml +%%PORTDOCS%%%%DOCSDIR%%/Themerdocs/Noteskin elements Reference.txt +%%PORTDOCS%%%%DOCSDIR%%/Themerdocs/ScreenMessages.txt +%%PORTDOCS%%%%DOCSDIR%%/Themerdocs/ScreenTextEntry.txt +%%PORTDOCS%%%%DOCSDIR%%/Themerdocs/ThemePrefs.txt +%%PORTDOCS%%%%DOCSDIR%%/Themerdocs/ThemePrefsRows.txt +%%PORTDOCS%%%%DOCSDIR%%/Themerdocs/actordef.txt +%%PORTDOCS%%%%DOCSDIR%%/Themerdocs/conditional_music.txt +%%PORTDOCS%%%%DOCSDIR%%/Themerdocs/fontini.txt +%%PORTDOCS%%%%DOCSDIR%%/Themerdocs/gamecommands.txt +%%PORTDOCS%%%%DOCSDIR%%/Themerdocs/included_scripts.txt +%%PORTDOCS%%%%DOCSDIR%%/Themerdocs/moremsg.txt +%%PORTDOCS%%%%DOCSDIR%%/Themerdocs/recommended_practices.txt +%%PORTDOCS%%%%DOCSDIR%%/Themerdocs/sm-ssc_themeguide.txt +%%PORTDOCS%%%%DOCSDIR%%/Userdocs/sm5_beginner.txt +%%PORTDOCS%%%%DOCSDIR%%/WindowsNotes.txt +%%PORTDOCS%%%%DOCSDIR%%/credits.txt +%%PORTDOCS%%%%DOCSDIR%%/docpack.zip +%%PORTDOCS%%%%DOCSDIR%%/license-ext/Scoring-jp.txt +%%PORTDOCS%%%%DOCSDIR%%/license-ext/readme +%%PORTDOCS%%%%DOCSDIR%%/license-ext/theme_lang-ja.txt +%%PORTDOCS%%%%DOCSDIR%%/license-ext/vlgothic/Changelog +%%PORTDOCS%%%%DOCSDIR%%/license-ext/vlgothic/LICENSE +%%PORTDOCS%%%%DOCSDIR%%/license-ext/vlgothic/LICENSE.en +%%PORTDOCS%%%%DOCSDIR%%/license-ext/vlgothic/LICENSE_E.mplus +%%PORTDOCS%%%%DOCSDIR%%/license-ext/vlgothic/LICENSE_J.mplus +%%PORTDOCS%%%%DOCSDIR%%/license-ext/vlgothic/README +%%PORTDOCS%%%%DOCSDIR%%/license-ext/vlgothic/README.sazanami +%%PORTDOCS%%%%DOCSDIR%%/license-ext/vlgothic/README_J.mplus +%%PORTDOCS%%%%DOCSDIR%%/midiman.wishlist +%%PORTDOCS%%%%DOCSDIR%%/old_changelog.txt +%%PORTDOCS%%%%DOCSDIR%%/opensource_simulators.txt +%%PORTDOCS%%%%DOCSDIR%%/steps.lua +%%PORTDOCS%%%%DOCSDIR%%/versioning.txt +share/icons/hicolor/128x128/apps/stepmania-ssc.png +share/icons/hicolor/16x16/apps/stepmania-ssc.png +share/icons/hicolor/192x192/apps/stepmania-ssc.png +share/icons/hicolor/22x22/apps/stepmania-ssc.png +share/icons/hicolor/24x24/apps/stepmania-ssc.png +share/icons/hicolor/256x256/apps/stepmania-ssc.png +share/icons/hicolor/32x32/apps/stepmania-ssc.png +share/icons/hicolor/36x36/apps/stepmania-ssc.png +share/icons/hicolor/48x48/apps/stepmania-ssc.png +share/icons/hicolor/64x64/apps/stepmania-ssc.png +share/icons/hicolor/72x72/apps/stepmania-ssc.png +share/icons/hicolor/96x96/apps/stepmania-ssc.png +share/icons/hicolor/scalable/apps/stepmania-ssc.svg +%%PORTDOCS%%@dirrm %%DOCSDIR%%/license-ext/vlgothic +%%PORTDOCS%%@dirrm %%DOCSDIR%%/license-ext +%%PORTDOCS%%@dirrm %%DOCSDIR%%/Userdocs +%%PORTDOCS%%@dirrm %%DOCSDIR%%/Themerdocs +%%PORTDOCS%%@dirrm %%DOCSDIR%%/SimfileFormats/SDF +%%PORTDOCS%%@dirrm %%DOCSDIR%%/SimfileFormats/KSF +%%PORTDOCS%%@dirrm %%DOCSDIR%%/SimfileFormats/DWI +%%PORTDOCS%%@dirrm %%DOCSDIR%%/SimfileFormats/BMS +%%PORTDOCS%%@dirrm %%DOCSDIR%%/SimfileFormats +%%PORTDOCS%%@dirrm %%DOCSDIR%%/Luadoc +%%PORTDOCS%%@dirrm %%DOCSDIR%%/Devdocs/negbpmtut +%%PORTDOCS%%@dirrm %%DOCSDIR%%/Devdocs +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrmtry share/applications +@dirrm lib/stepmania/Packages +@dirrmtry lib/stepmania >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1DB8D106567A for ; Tue, 25 Sep 2012 18:10:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EDB668FC14 for ; Tue, 25 Sep 2012 18:10:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAP0J020625 for ; Tue, 25 Sep 2012 18:10:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAP4q020620; Tue, 25 Sep 2012 18:10:25 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:25 GMT Resent-Message-Id: <201209251810.q8PIAP4q020620@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 883D01065676 for ; Tue, 25 Sep 2012 18:05:48 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 593B08FC15 for ; Tue, 25 Sep 2012 18:05:48 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 7E0364AC036 for ; Wed, 26 Sep 2012 03:05:46 +0900 (JST) Message-Id: <20120926022322.4d5b857b2183d4d6745c5b5e@yahoo.com> Date: Wed, 26 Sep 2012 02:23:22 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172007: games/taipan: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:26 -0000 >Number: 172007 >Category: ports >Synopsis: games/taipan: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:25 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Support PORTDOCS/PLIST_FILES Remove file: pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/games/taipan/Makefile games/taipan/Makefile --- /usr/ports/games/taipan/Makefile 2003-02-21 02:32:14.000000000 +0900 +++ games/taipan/Makefile 2012-09-25 03:32:53.000000000 +0900 @@ -1,26 +1,27 @@ -# New ports collection makefile for: taipan -# Date created: 2002-03-15 -# Whom: Dave Walton -# +# Created by: Dave Walton # $FreeBSD: ports/games/taipan/Makefile,v 1.5 2003/02/20 17:32:14 knu Exp $ -# PORTNAME= taipan PORTVERSION= 0.9 PORTREVISION= 1 CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_SUNSITE} \ - ftp://ftp.ilbbs.com/pub/linux/ -MASTER_SITE_SUBDIR= games/textrpg +MASTER_SITES= SUNSITE/games/textrpg MAINTAINER= ports@FreeBSD.org -COMMENT= Taipan was (and is) a classic role-playing game from the 1980s +COMMENT= A classic role-playing game from the 1980s + +OPTIONS_DEFINE= DOCS MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" +PORTDOCS= README +PLIST_FILES= bin/taipan + +.include + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/taipan ${PREFIX}/bin -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif diff -urN /usr/ports/games/taipan/pkg-plist games/taipan/pkg-plist --- /usr/ports/games/taipan/pkg-plist 2002-09-20 14:56:56.000000000 +0900 +++ games/taipan/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,3 +0,0 @@ -bin/taipan -%%PORTDOCS%%share/doc/taipan/README -%%PORTDOCS%%@dirrm share/doc/taipan >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7124C106568C for ; Tue, 25 Sep 2012 18:10:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4B1DF8FC21 for ; Tue, 25 Sep 2012 18:10:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAQEY020701 for ; Tue, 25 Sep 2012 18:10:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAQcG020694; Tue, 25 Sep 2012 18:10:26 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:26 GMT Resent-Message-Id: <201209251810.q8PIAQcG020694@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D0190106564A for ; Tue, 25 Sep 2012 18:05:54 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 794C98FC16 for ; Tue, 25 Sep 2012 18:05:54 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id C98734AC036 for ; Wed, 26 Sep 2012 03:05:50 +0900 (JST) Message-Id: <20120926022326.578deb6b7330c8f96010fb7d@yahoo.com> Date: Wed, 26 Sep 2012 02:23:26 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172008: games/ultimatestunts: Update to version 0.7.7.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:26 -0000 >Number: 172008 >Category: ports >Synopsis: games/ultimatestunts: Update to version 0.7.7.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:25 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.7.7.1 >How-To-Repeat: >Fix: diff -urN /usr/ports/games/ultimatestunts/Makefile games/ultimatestunts/Makefile --- /usr/ports/games/ultimatestunts/Makefile 2012-07-20 05:15:37.000000000 +0900 +++ games/ultimatestunts/Makefile 2012-09-25 03:33:00.000000000 +0900 @@ -1,13 +1,8 @@ -# New ports collection makefile for: ultimatestunts -# Date created: 9 August 2007 -# Whom: Andrew Pantyukhin -# +# Created by: Andrew Pantyukhin # $FreeBSD: ports/games/ultimatestunts/Makefile,v 1.20 2012/07/19 20:15:37 naddy Exp $ -# PORTNAME= ultimatestunts -PORTVERSION= 0.7.6.1 -PORTREVISION= 3 +PORTVERSION= 0.7.7.1 DISTVERSIONPREFIX= srcdata- DISTVERSION= ${PORTVERSION:S/.//g} CATEGORIES= games @@ -16,40 +11,45 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Racing game with elaborate stunts +LICENSE= GPLv2 + LIB_DEPENDS= vorbisfile.6:${PORTSDIR}/audio/libvorbis +OPTIONS_DEFINE= DOCS + USE_OPENAL= al alut USE_GL= gl glu USE_SDL= sdl image USE_GETTEXT= yes +USE_PKGCONFIG= build GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-openal MAKE_JOBS_UNSAFE= yes -CPPFLAGS+= `${SDL_CONFIG} --cflags` -LDFLAGS+= -L${LOCALBASE}/lib +CPPFLAGS+= $$(pkgconf --cflags-only-I sdl) -I${LOCALBASE}/include +LDFLAGS+= $$(pkgconf --libs-only-L sdl) -L${LOCALBASE}/lib PORT_VERBS= ${PORTNAME} ustunts +.include + post-extract: - @${FIND} ${WRKSRC} -name CVS -print0 | ${XARGS} -0 ${RM} -rf + @${FIND} ${WRKSRC} -name ".svn" -print0 | ${XARGS} -0 ${RM} -rf post-patch: @${REINPLACE_CMD} -e \ 's|-I/usr/local/include|| ; \ - s|-L/usr/local/lib|| ; \ - /usdatadir=/s|=.*|="${DATADIR}"| ; \ - /SDL_CONFIG.*cflags/d' ${WRKSRC}/configure + s|-L/usr/local/lib||' ${WRKSRC}/configure @${REINPLACE_CMD} -e \ - '/^sysconf_DATA/d ; \ + '/^sysconf_DATA/s|^|#| ; \ /^SUBDIRS/s| data | |' ${WRKSRC}/Makefile.in post-install: .for dir in cars environment lang misc music textures textures.dat tiles tracks - @cd ${WRKSRC}/data && ${COPYTREE_SHARE} ${dir} ${DATADIR} + @(cd ${WRKSRC}/data && ${COPYTREE_SHARE} ${dir} ${DATADIR}) .endfor -.if !defined(NOPORTDOCS) - @cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + @(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${DOCSDIR}) .endif .include diff -urN /usr/ports/games/ultimatestunts/distinfo games/ultimatestunts/distinfo --- /usr/ports/games/ultimatestunts/distinfo 2011-06-25 13:59:07.000000000 +0900 +++ games/ultimatestunts/distinfo 2012-09-09 22:02:31.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (ultimatestunts-srcdata-0761.tar.gz) = 3b3fad3f85a8a6e702ed60434a5f45dcd7132da4139580fd3b2251436b31a565 -SIZE (ultimatestunts-srcdata-0761.tar.gz) = 17633980 +SHA256 (ultimatestunts-srcdata-0771.tar.gz) = fcc06e4a2ff2c5c1bd937670acdb079140f3ce0efdf00578eb6559a20ebb26d3 +SIZE (ultimatestunts-srcdata-0771.tar.gz) = 47449346 diff -urN /usr/ports/games/ultimatestunts/pkg-plist games/ultimatestunts/pkg-plist --- /usr/ports/games/ultimatestunts/pkg-plist 2011-06-25 13:59:07.000000000 +0900 +++ games/ultimatestunts/pkg-plist 2012-09-09 23:12:36.000000000 +0900 @@ -252,6 +252,43 @@ %%PORTDOCS%%%%DOCSDIR%%/nolanguage/trackedit-tilecollection1.jpg %%PORTDOCS%%%%DOCSDIR%%/nolanguage/trackedit-tilecollectiontool.jpg %%PORTDOCS%%%%DOCSDIR%%/nolanguage/trackedit1.jpg +%%DATADIR%%/cars/alfa6c_2500.conf +%%DATADIR%%/cars/alfa6c_2500/body.glb +%%DATADIR%%/cars/alfa6c_2500/dash.png +%%DATADIR%%/cars/alfa6c_2500/readme.txt +%%DATADIR%%/cars/alfa6c_2500/rpm.png +%%DATADIR%%/cars/alfa6c_2500/steeringwheel.png +%%DATADIR%%/cars/alfa6c_2500/tacho.png +%%DATADIR%%/cars/alfa6c_2500/wheel.glb +%%DATADIR%%/cars/allardk.conf +%%DATADIR%%/cars/allard_k/body.glb +%%DATADIR%%/cars/allard_k/interior.png +%%DATADIR%%/cars/allard_k/tacho.png +%%DATADIR%%/cars/allard_k/wheel.glb +%%DATADIR%%/cars/allard_k/wheel.png +%%DATADIR%%/cars/chrysler_tc_46.conf +%%DATADIR%%/cars/chrysler_tc_46/body.glb +%%DATADIR%%/cars/chrysler_tc_46/dash.png +%%DATADIR%%/cars/chrysler_tc_46/tacho.png +%%DATADIR%%/cars/chrysler_tc_46/wheel.glb +%%DATADIR%%/cars/chrysler_tc_46/wheel.png +%%DATADIR%%/cars/countach.conf +%%DATADIR%%/cars/countach/body.glb +%%DATADIR%%/cars/countach/dash.png +%%DATADIR%%/cars/countach/engine.wav +%%DATADIR%%/cars/countach/readme.txt +%%DATADIR%%/cars/countach/rpm.png +%%DATADIR%%/cars/countach/steeringwheel.png +%%DATADIR%%/cars/countach/tacho.png +%%DATADIR%%/cars/countach/wheel.glb +%%DATADIR%%/cars/db4gt.conf +%%DATADIR%%/cars/db4gt/body.glb +%%DATADIR%%/cars/db4gt/dash.png +%%DATADIR%%/cars/db4gt/readme.txt +%%DATADIR%%/cars/db4gt/rpm.png +%%DATADIR%%/cars/db4gt/steer.png +%%DATADIR%%/cars/db4gt/tacho.png +%%DATADIR%%/cars/db4gt/wheel.glb %%DATADIR%%/cars/diablo.conf %%DATADIR%%/cars/diablo/body.glb %%DATADIR%%/cars/diablo/dashboard.png @@ -268,6 +305,13 @@ %%DATADIR%%/cars/f1/rpm.png %%DATADIR%%/cars/f1/steer.png %%DATADIR%%/cars/f1/textures.jpg +%%DATADIR%%/cars/ferrari512bb.conf +%%DATADIR%%/cars/ferrari512bb/body.glb +%%DATADIR%%/cars/ferrari512bb/dash.png +%%DATADIR%%/cars/ferrari512bb/rpm.png +%%DATADIR%%/cars/ferrari512bb/tacho.png +%%DATADIR%%/cars/ferrari512bb/wheel.glb +%%DATADIR%%/cars/ferrari512bb/wheel.png %%DATADIR%%/cars/ferrarif40.conf %%DATADIR%%/cars/ferrarif40/body.glb %%DATADIR%%/cars/ferrarif40/wheel.glb @@ -278,6 +322,13 @@ %%DATADIR%%/cars/ferrarispider/rpm.png %%DATADIR%%/cars/ferrarispider/steer.png %%DATADIR%%/cars/ferrarispider/wheel.glb +%%DATADIR%%/cars/frazernash.conf +%%DATADIR%%/cars/frazernash/body.glb +%%DATADIR%%/cars/frazernash/dash.png +%%DATADIR%%/cars/frazernash/rpm.png +%%DATADIR%%/cars/frazernash/tacho.png +%%DATADIR%%/cars/frazernash/wheel.glb +%%DATADIR%%/cars/frazernash/wheel.png %%DATADIR%%/cars/generic/bodycollision.glb %%DATADIR%%/cars/generic/crash.png %%DATADIR%%/cars/generic/crash_fatal.wav @@ -297,6 +348,20 @@ %%DATADIR%%/cars/lego.conf %%DATADIR%%/cars/lego/body.glb %%DATADIR%%/cars/lego/wheel.glb +%%DATADIR%%/cars/maserati5000gt.conf +%%DATADIR%%/cars/maserati5000gt/body.glb +%%DATADIR%%/cars/maserati5000gt/interior.png +%%DATADIR%%/cars/maserati5000gt/rpm.png +%%DATADIR%%/cars/maserati5000gt/tacho.png +%%DATADIR%%/cars/maserati5000gt/wheel.glb +%%DATADIR%%/cars/maserati5000gt/wheel.png +%%DATADIR%%/cars/maseratibora.conf +%%DATADIR%%/cars/maseratibora/body.glb +%%DATADIR%%/cars/maseratibora/dash.png +%%DATADIR%%/cars/maseratibora/rpm.png +%%DATADIR%%/cars/maseratibora/tacho.png +%%DATADIR%%/cars/maseratibora/wheel.glb +%%DATADIR%%/cars/maseratibora/wheel.png %%DATADIR%%/cars/porsche911.conf %%DATADIR%%/cars/porsche911/body.glb %%DATADIR%%/cars/porsche911/dashboard.png @@ -647,6 +712,11 @@ %%DATADIR%%/tiles/wateredge3.glb %%DATADIR%%/tracks/StuntsImportExample.track %%DATADIR%%/tracks/acropolis.track +%%DATADIR%%/tracks/andr1.track +%%DATADIR%%/tracks/andr2.track +%%DATADIR%%/tracks/andr3.track +%%DATADIR%%/tracks/andr4.track +%%DATADIR%%/tracks/andr6.track %%DATADIR%%/tracks/clifftest.track %%DATADIR%%/tracks/corners.track %%DATADIR%%/tracks/default.track @@ -655,6 +725,9 @@ %%DATADIR%%/tracks/mcp.track %%DATADIR%%/tracks/mountain.track %%DATADIR%%/tracks/nocorners.track +%%DATADIR%%/tracks/oleg_sup.track +%%DATADIR%%/tracks/serge.track +%%DATADIR%%/tracks/sergesup.track %%DATADIR%%/tracks/small.track %%DATADIR%%/tracks/test.track %%DATADIR%%/tracks/ustunts.track @@ -681,13 +754,22 @@ @dirrm %%DATADIR%%/cars/subaruimpreza @dirrm %%DATADIR%%/cars/porsche928 @dirrm %%DATADIR%%/cars/porsche911 +@dirrm %%DATADIR%%/cars/maseratibora +@dirrm %%DATADIR%%/cars/maserati5000gt @dirrm %%DATADIR%%/cars/lego @dirrm %%DATADIR%%/cars/jeep @dirrm %%DATADIR%%/cars/generic +@dirrm %%DATADIR%%/cars/frazernash @dirrm %%DATADIR%%/cars/ferrarispider @dirrm %%DATADIR%%/cars/ferrarif40 +@dirrm %%DATADIR%%/cars/ferrari512bb @dirrm %%DATADIR%%/cars/f1 @dirrm %%DATADIR%%/cars/diablo +@dirrm %%DATADIR%%/cars/db4gt +@dirrm %%DATADIR%%/cars/countach +@dirrm %%DATADIR%%/cars/chrysler_tc_46 +@dirrm %%DATADIR%%/cars/allard_k +@dirrm %%DATADIR%%/cars/alfa6c_2500 @dirrm %%DATADIR%%/cars @dirrm %%DATADIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%/nolanguage/Original Stunts Track-Format_files >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C401A10656E9 for ; Tue, 25 Sep 2012 18:10:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9EF078FC2C for ; Tue, 25 Sep 2012 18:10:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAQlt020777 for ; Tue, 25 Sep 2012 18:10:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAQlG020771; Tue, 25 Sep 2012 18:10:26 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:26 GMT Resent-Message-Id: <201209251810.q8PIAQlG020771@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C81BD106566C for ; Tue, 25 Sep 2012 18:05:58 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 990C88FC12 for ; Tue, 25 Sep 2012 18:05:58 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 0B90F4AC037 for ; Wed, 26 Sep 2012 03:05:56 +0900 (JST) Message-Id: <20120926022330.3f57a2a84687b1a9b7f5ab90@yahoo.com> Date: Wed, 26 Sep 2012 02:23:30 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172009: games/xabacas: Update to version 7.7.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:26 -0000 >Number: 172009 >Category: ports >Synopsis: games/xabacas: Update to version 7.7.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:26 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to verion 7.7.0 >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xabacus/Makefile games/xabacus/Makefile --- /usr/ports/games/xabacus/Makefile 2011-05-02 21:44:35.000000000 +0900 +++ games/xabacus/Makefile 2012-09-25 03:33:09.000000000 +0900 @@ -1,13 +1,8 @@ -# New ports collection makefile for: xabacus -# Date created: 3 May 1998 -# Whom: Andrey Zakhvatov -# +# Created by: Andrey Zakhvatov # $FreeBSD: ports/games/xabacus/Makefile,v 1.49 2011/05/02 12:44:35 makc Exp $ -# PORTNAME= xabacus -PORTVERSION= 7.6.8 -PORTREVISION= 1 +PORTVERSION= 7.7.0 CATEGORIES= games MASTER_SITES= http://www.tux.org/~bagleyd/abacus/ \ http://ftp.tux.org/pub/tux/bagleyd/xabacus/ @@ -15,23 +10,29 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Abacus for X Window System +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/COPYING + +OPTIONS_DEFINE= MOTIF ESOUND +OPTIONS_DEFAULT=MOTIF + USE_BZIP2= yes USE_XORG= xpm -WANT_GNOME= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-nas +MAKE_JOBS_SAFE= yes MAN6= xabacus.6 -.include +.include -.if defined(WITHOUT_MOTIF) -CONFIGURE_ARGS+= --without-motif -.else +.if ${PORT_OPTIONS:MMOTIF} USE_MOTIF= yes +.else +CONFIGURE_ARGS+= --without-motif .endif -.if ${HAVE_GNOME:Mesound}!="" +.if ${PORT_OPTIONS:MESOUND} USE_GNOME+= esound CONFIGURE_ARGS+= --without-rplay --with-esound .else @@ -42,4 +43,4 @@ post-patch: @${REINPLACE_CMD} -e 's|/games/|/|g' ${WRKSRC}/Makefile.in -.include +.include diff -urN /usr/ports/games/xabacus/distinfo games/xabacus/distinfo --- /usr/ports/games/xabacus/distinfo 2011-01-31 20:29:12.000000000 +0900 +++ games/xabacus/distinfo 2012-09-02 22:38:13.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (xabacus-7.6.8.tar.bz2) = 4443d86755c8edd97446952a7c9cf877de6dff5c15bedab8512d970651e495a6 -SIZE (xabacus-7.6.8.tar.bz2) = 288946 +SHA256 (xabacus-7.7.0.tar.bz2) = 92f138f100a581de9204d5c452f06cdb32f1e43ded60a3c68ca6d3b4e56911eb +SIZE (xabacus-7.7.0.tar.bz2) = 290855 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2DAAA10656F5 for ; Tue, 25 Sep 2012 18:10:27 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 04F6C8FC1A for ; Tue, 25 Sep 2012 18:10:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAQVs020857 for ; Tue, 25 Sep 2012 18:10:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAQxn020847; Tue, 25 Sep 2012 18:10:26 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:26 GMT Resent-Message-Id: <201209251810.q8PIAQxn020847@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 18A7E106564A for ; Tue, 25 Sep 2012 18:06:49 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 09C588FC12 for ; Tue, 25 Sep 2012 18:06:48 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id B5F854AC037 for ; Wed, 26 Sep 2012 03:06:01 +0900 (JST) Message-Id: <20120926022339.5a221236db2071104e177c72@yahoo.com> Date: Wed, 26 Sep 2012 02:23:39 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172010: games/xevil: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:27 -0000 >Number: 172010 >Category: ports >Synopsis: games/xevil: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:26 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Fix build with clang - Support NO_WRKSUBDIR properly - Add LICENSE - Add MAKE_JOBS_SAFE - Support PORTDOCS/PLIST_FILES New file: files/patch-cmn__coord.h files/patch-cmn__intel.h files/patch-cmn__locator.cpp files/patch-cmn__role.h files/patch-cmn__streams.h files/patch-cmn__utils.h files/patch-cmn__xetp.h files/patch-cmn__xetp_basic.cpp files/patch-cmn__xetp_basic.h files/patch-x11__draw.cpp files/patch-x11__ui.h files/patch-x11__viewport.h files/patch-x11__xdata.h Remove file: pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xevil/Makefile games/xevil/Makefile --- /usr/ports/games/xevil/Makefile 2010-06-04 00:54:28.000000000 +0900 +++ games/xevil/Makefile 2012-09-25 03:33:21.000000000 +0900 @@ -1,47 +1,47 @@ -# New ports collection makefile for: xevil -# Date created: 7 November 2000 -# Whom: G_ran Runfeldt -# +# Created by: G_ran Runfeldt # $FreeBSD: ports/games/xevil/Makefile,v 1.24 2010/06/03 15:54:28 pav Exp $ -# PORTNAME= xevil PORTVERSION= 2.02.r2 PORTREVISION= 2 CATEGORIES= games -MASTER_SITES= http://www.xevil.com/download/stable/ -DISTNAME= xevilsrc${PORTVERSION:S/.r/r/} +MASTER_SITES= SF/${PORTNAME}.mirror \ + http://www.xevil.com/download/stable/ +DISTNAME= ${PORTNAME}src${PORTVERSION:S/.r/r/} MAINTAINER= ports@FreeBSD.org COMMENT= A fast-action, networked, anti-social, kill-everything game -USE_ZIP= yes -USE_XORG= xpm -USE_DOS2UNIX= makefile config.mk cmn/makefile cmn/*.cpp cmn/*.h x11/makefile x11/*.cpp -MAKEFILE= makefile -ALL_TARGET= freebsd -MAKE_JOBS_UNSAFE= yes - -.include +LICENSE= GPLv2 # (or later) -# I'm not sure if this should be here -.if (${MACHINE} == "alpha") -CFLAGS+="-DXEVIL_KEYSET=UIalpha" -.endif +OPTIONS_DEFINE= DOCS -pre-extract: - @${MKDIR} ${WRKDIR}/${DISTNAME} +NO_WRKSUBDIR= yes -do-extract: - @${UNZIP_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${DISTFILES} -d ${WRKSRC} +USE_ZIP= yes +USE_XORG= xpm +USE_DOS2UNIX= *.cpp *.h config.mk makefile +MAKEFILE= makefile +MAKE_ARGS= DEPTH="${WRKSRC}" +ALL_TARGET= ${OPSYS:L} +MAKE_JOBS_SAFE= yes + +PORTDOCS= * +PLIST_FILES= bin/${PORTNAME} + +.include + +post-patch: + @${FIND} ${WRKSRC} -name "*.xpm" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|^static char|static const char|' do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/x11/FREEBSD/xevil ${PREFIX}/bin/xevil -.if !defined(NOPORTDOCS) + ${INSTALL_PROGRAM} ${WRKSRC}/x11/${OPSYS:U}/${PORTNAME} ${PREFIX}/bin +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR} @${MKDIR} ${DOCSDIR}/instructions ${INSTALL_DATA} ${WRKSRC}/instructions/* ${DOCSDIR}/instructions .endif -.include +.include diff -urN /usr/ports/games/xevil/files/patch-ad games/xevil/files/patch-ad --- /usr/ports/games/xevil/files/patch-ad 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-ad 2012-05-27 07:02:36.000000000 +0900 @@ -1,6 +1,22 @@ ---- makefile.orig Sun Mar 23 00:09:08 2003 -+++ makefile Sun May 18 12:05:08 2003 -@@ -63,11 +63,6 @@ +--- makefile.orig 2012-05-27 06:39:04.000000000 +0900 ++++ makefile 2012-05-27 06:42:04.000000000 +0900 +@@ -42,9 +42,9 @@ + $(OBJ_DIR)/ui_cmn.o $(OBJ_DIR)/l_agreement_dlg.o $(OBJ_DIR)/viewport.o + + +-xevil: $(OBJ_DIR)/xevil $(OBJ_DIR)/xevil$(VERSION).$(PCKG_NAME).tar.Z ++#xevil: $(OBJ_DIR)/xevil $(OBJ_DIR)/xevil$(VERSION).$(PCKG_NAME).tar.Z + #xevil: $(OBJ_DIR)/xevil$(VERSION).$(PCKG_NAME).tar.Z +-#xevil: $(OBJ_DIR)/xevil ++xevil: $(OBJ_DIR)/xevil + + + # Build the xevil executable. +@@ -59,15 +59,9 @@ + cd $(DEPTH)/cmn; $(MAKE) + cd $(DEPTH)/x11; $(MAKE) + $(CC) $(LINK_FLAGS) $(LINK_OPT) $(LIBS_DIRS) -o $(OBJ_DIR)/xevil $(ALL_OBJS) $(LIBS) +- $(STRIP) $(OBJ_DIR)/xevil # Could also include serverping in the distribution $(OBJ_DIR)/xevil$(VERSION).$(PCKG_NAME).tar.Z:: diff -urN /usr/ports/games/xevil/files/patch-cmn::actual.cpp games/xevil/files/patch-cmn::actual.cpp --- /usr/ports/games/xevil/files/patch-cmn::actual.cpp 2007-07-31 23:11:02.000000000 +0900 +++ games/xevil/files/patch-cmn::actual.cpp 2012-05-27 06:54:49.000000000 +0900 @@ -1,21 +1,208 @@ ---- cmn/actual.cpp.orig 2000-01-19 12:54:36.000000000 +0100 -+++ cmn/actual.cpp 2007-07-31 15:47:25.000000000 +0200 -@@ -32,7 +32,8 @@ +--- cmn/actual.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ cmn/actual.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -32,7 +32,7 @@ // Include Files #if X11 -#include -+#include -+using namespace std; ++#include #endif #if WIN32 #include -@@ -1534,7 +1535,7 @@ +@@ -122,6 +122,7 @@ + #include "bitmaps/yeti/yeti.bitmaps" + + ++using namespace std; + + ///// Some helper macros to define creatures with certain abilities. + #define DEFINE_CREATURE_CTORS_2(CLASSNAME,ABILITY0,ability0,ABILITY1,ability1) \ +@@ -454,9 +455,9 @@ + } + } + +- ostrstream msg; +- msg << "Explosion hits " << hit << " objects." << ends; +- locator->message_enq(msg.str()); ++ stringstream msg; ++ msg << "Explosion hits " << hit << " objects."; ++ locator->message_enq(Utils::strdup(msg.str().c_str())); + + kill_self(); + Physical::act(); +@@ -1001,7 +1002,7 @@ + if (other && (other->get_class_id() != A_AltarOfSin) && + (intel = other->get_intel())) { + LocatorP locator = get_locator(); +- ostrstream str; ++ stringstream str; + + // Turned into a frog/baby seal. + if (Utils::coin_flip() && other->is_moving() && +@@ -1014,8 +1015,8 @@ + + str << intel->get_name() << " attacks the Altar of Sin and is " + << "turned into a " << (doFrog ? "frog" : "baby-seal") +- << "." << ends; +- locator->message_enq(str.str()); ++ << "."; ++ locator->message_enq(Utils::strdup(str.str().c_str())); + + other->set_intel(NULL); + if (!other->get_mapped()) { +@@ -1047,8 +1048,8 @@ + // Lose all health. + else { + str << "BLASPHMER! " << intel->get_name() << +- " loses health for daring to attack the Altar of Sin." << ends; +- locator->message_enq(str.str()); ++ " loses health for daring to attack the Altar of Sin."; ++ locator->message_enq(Utils::strdup(str.str().c_str())); + + int damage = other->get_health(); + other->corporeal_attack(this,damage); +@@ -1075,8 +1076,8 @@ + (intel = other->get_intel()) && intel->is_human()) { + int lives = intel->get_lives(); + LocatorP locator = get_locator(); +- ostrstream msg; +- ostrstream arenaMsg; ++ stringstream msg; ++ stringstream arenaMsg; + + // Choose different blessings to give. + int n = 0; +@@ -1112,8 +1113,8 @@ + } + else { + intel->set_lives(lives + 1); +- msg << intel->get_name() << " sells soul for an extra life." << ends; +- arenaMsg << "You Sold Your Soul For an Extra Life" << ends; ++ msg << intel->get_name() << " sells soul for an extra life."; ++ arenaMsg << "You Sold Your Soul For an Extra Life"; + } + break; + +@@ -1123,8 +1124,8 @@ + mod = new DoubleSpeed(); + assert(mod); + modList->append_unique(mod); +- msg << intel->get_name() << " sells soul for Double Speed." << ends; +- arenaMsg << "Double Speed" << ends; ++ msg << intel->get_name() << " sells soul for Double Speed."; ++ arenaMsg << "Double Speed"; + break; + + +@@ -1138,9 +1139,8 @@ + mod = new DoubleJump(); + assert(mod); + modList->append_unique(mod); +- msg << intel->get_name() << " sells soul for extra jumping powers." +- << ends; +- arenaMsg << "Extra Jumping Powers" << ends; ++ msg << intel->get_name() << " sells soul for extra jumping powers."; ++ arenaMsg << "Extra Jumping Powers"; + break; + + +@@ -1157,8 +1157,8 @@ + // So max health takes effect immediately. + other->heal(); + +- msg << intel->get_name() << " sells soul for Double Health." << ends; +- arenaMsg << "Double Health" << ends; ++ msg << intel->get_name() << " sells soul for Double Health."; ++ arenaMsg << "Double Health"; + break; + + +@@ -1176,8 +1176,8 @@ + // Might as well make sure they can take advantage of it now. + other->heal(); + +- msg << intel->get_name() << " sells soul for Healing Powers." << ends; +- arenaMsg << "Healing Powers" << ends; ++ msg << intel->get_name() << " sells soul for Healing Powers."; ++ arenaMsg << "Healing Powers"; + } + break; + +@@ -1193,8 +1193,8 @@ + // Already checked that other is a Creature(). + ((CreatureP)other)->add_ability(a); + +- msg << intel->get_name() << " sells soul for HellFire Powers." << ends; +- arenaMsg << "HellFire Powers" << ends; ++ msg << intel->get_name() << " sells soul for HellFire Powers."; ++ arenaMsg << "HellFire Powers"; + } + break; + +@@ -1217,8 +1217,8 @@ + // Already checked that other is a Creature(). + ((CreatureP)other)->add_ability(a); + +- msg << intel->get_name() << " sells soul for Fireballs." << ends; +- arenaMsg << "Fireballs" << ends; ++ msg << intel->get_name() << " sells soul for Fireballs."; ++ arenaMsg << "Fireballs"; + } + break; + +@@ -1241,8 +1241,8 @@ + // Already checked that other is a Creature(). + ((CreatureP)other)->add_ability(a); + +- msg << intel->get_name() << " sells soul for Flying Powers." << ends; +- arenaMsg << "Flying Powers" << ends; ++ msg << intel->get_name() << " sells soul for Flying Powers."; ++ arenaMsg << "Flying Powers"; + } + break; + +@@ -1274,8 +1274,8 @@ + // Already checked that other is a Creature(). + ((CreatureP)other)->add_ability(a); + +- msg << intel->get_name() << " sells soul for Sticky Powers." << ends; +- arenaMsg << "Sticky Powers" << ends; ++ msg << intel->get_name() << " sells soul for Sticky Powers."; ++ arenaMsg << "Sticky Powers"; + } + break; + +@@ -1285,8 +1285,8 @@ + } + } // while + +- locator->message_enq(msg.str()); +- locator->arena_message_enq(arenaMsg.str(),other); ++ locator->message_enq(Utils::strdup(msg.str().c_str())); ++ locator->arena_message_enq(Utils::strdup(arenaMsg.str().c_str()),other); + + kill_self(); + turnTaken = True; +@@ -1534,7 +1534,7 @@ void *closure) { // notThis is used to prevent transmogifying into the same class an object // already is. - ClassId notThis = (ClassId)closure; -+ ClassId notThis = (intptr_t)closure; ++ ClassId notThis = (long)closure; if (pc->classId == notThis) { return False; } +@@ -2087,10 +2087,9 @@ + PhysicalP seal = new Seal(w,l,pos); + assert(seal); + +- char sealStr[20]; +- ostrstream str(sealStr,20); +- str << "seal-" << sealsNum << ends; +- NeutralP sealIntel = new SealIntel(w,l,sealStr,homeId); ++ stringstream str; ++ str << "seal-" << sealsNum; ++ NeutralP sealIntel = new SealIntel(w,l,Utils::strdup(str.str().c_str()),homeId); + seal->set_intel(sealIntel); + l->register_neutral(sealIntel); + seals[sealsNum] = sealIntel->get_intel_id(); diff -urN /usr/ports/games/xevil/files/patch-cmn::area.cpp games/xevil/files/patch-cmn::area.cpp --- /usr/ports/games/xevil/files/patch-cmn::area.cpp 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-cmn::area.cpp 2012-05-27 06:55:10.000000000 +0900 @@ -1,12 +1,17 @@ ---- cmn/area.cpp.orig Wed Mar 19 10:04:22 2003 -+++ cmn/area.cpp Sat Oct 25 21:39:50 2003 -@@ -34,7 +34,8 @@ +--- cmn/area.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ cmn/area.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -34,12 +34,13 @@ extern "C" { #include // For INT_MAX } -#include +#include -+using namespace std; #include "utils.h" #include "coord.h" #include "area.h" + + ++using namespace std; + + Size Area::operator - (const Area &other) const { + assert ((shape == AR_RECT) && (other.shape == AR_RECT)); diff -urN /usr/ports/games/xevil/files/patch-cmn::game.cpp games/xevil/files/patch-cmn::game.cpp --- /usr/ports/games/xevil/files/patch-cmn::game.cpp 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-cmn::game.cpp 2012-05-27 06:55:41.000000000 +0900 @@ -1,12 +1,577 @@ ---- cmn/game.cpp.orig Sat Mar 22 22:20:00 2003 -+++ cmn/game.cpp Sat Oct 25 21:40:23 2003 -@@ -34,7 +34,8 @@ +--- cmn/game.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ cmn/game.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -31,16 +31,17 @@ + #include "stdafx.h" + extern "C" { + #include ++#include } #if X11 -#include -+#include -+using namespace std; ++#include #endif #if WIN32 #include + #endif + +-#include ++#include + + #include "utils.h" + #include "coord.h" +@@ -123,7 +124,7 @@ + #define SOUNDONOFF_DEFAULT True + + +-char *Game::wittySayings[Game::WITTY_SAYINGS_NUM] = { ++const char *Game::wittySayings[Game::WITTY_SAYINGS_NUM] = { + "If it moves it's a threat. If it doesn't move it's a potential threat.", + "Happy, happy. Joy, joy.", + "For the mother country!!!", +@@ -271,11 +272,19 @@ + "Prepare to Qualify.", + "I got a bad feeling about this drop.", + "Cowboys never quit!", ++ "The voices say I'm not crazy, so I'm OK!", ++ "Cure Sars!?!", ++ "Ha Ha Ha, Loser!", ++ "It's all fun and games until someone loses an eye.", ++ "Eye for an eye, tooth for a tooth.", ++ "Mo-o-m!", ++ "Timmy's touching me!", ++ "I'm not touching you! See? I'm not touching you!" + }; + + + +-char *Game::intelNames[Game::INTEL_NAMES_NUM] = { ++const char *Game::intelNames[Game::INTEL_NAMES_NUM] = { + "Dr. Pain", + "Steve", + "hardts", +@@ -350,6 +359,9 @@ + "Stan", + "Mr. Hat", + "Cid", ++ "Mr. Hankey", ++ "Michael Jackson", ++ "O.J. Simpson" + }; + + +@@ -793,7 +805,7 @@ + + // Just for tracing in the debugger. + char* version = Utils::get_OS_info(); +- delete version; ++ delete [] version; + + noUi = False; + noNewLevel = False; +@@ -1056,7 +1068,7 @@ + + Game::~Game() { + if (oneItem) { +- delete oneItem; ++ delete [] oneItem; + } + + delete ui; +@@ -1500,13 +1512,13 @@ + + if (mask & UIconnectServer) { + delete role; +- ostrstream portName; +- portName << settings.connectPort << ends; ++ stringstream portName; ++ portName << settings.connectPort; + IViewportInfo* vInfo = Ui::get_viewport_info(); +- ClientP client = new Client(settings.connectHostname,portName.str(), ++ ClientP client = new Client(settings.connectHostname, ++ Utils::strdup(portName.str().c_str()), + 0,settings.humanName,vInfo, + Connection::ADJUST_SKIP,&locator); +- delete portName.str(); + assert(client); + role = client; + ui->set_role_type(role->get_type()); +@@ -1544,10 +1556,9 @@ + } + + delete role; +- ostrstream portName; +- portName << settings.serverPort << ends; +- role = new Server(settings.localHuman,portName.str(),&locator); +- delete portName.str(); ++ stringstream portName; ++ portName << settings.serverPort; ++ role = new Server(settings.localHuman,portName.str().c_str(),&locator); + assert(role); + restartEnd = RE_RESTART; + ui->set_role_type(role->get_type()); +@@ -1573,9 +1584,9 @@ + ui->set_style(styleType); + } + +- ostrstream str; ++ stringstream str; + styleNext->describe(str); +- locator.message_enq(str.str()); ++ locator.message_enq(Utils::strdup(str.str().c_str())); + } + + +@@ -1589,9 +1600,9 @@ + human->reincarnate(); + obj->set_intel(human); + +- ostrstream msg; +- msg << human->get_name() << " is back from the dead." << ends; +- locator.message_enq(msg.str()); ++ stringstream msg; ++ msg << human->get_name() << " is back from the dead."; ++ locator.message_enq(Utils::strdup(msg.str().c_str())); + } + } + +@@ -1615,7 +1626,7 @@ + void Game::new_level_check(int enemiesPlaying) { + assert(state == gameOn); + +- ostrstream str; ++ stringstream str; + Boolean lStrChanged = False; + int val = style->new_level_check(enemiesPlaying,&world,&locator, + level,lStrChanged,str,timer, +@@ -1645,11 +1656,8 @@ + // if str has anything in it. Fucking Linux compilers. + if (lStrChanged) { + if (ui) { +- ui->set_level(str.str()); ++ ui->set_level(str.str().c_str()); + } +- // Ok to delete even if ui is NULL, str.str() will allocate the memory to +- // kill off. +- delete str.str(); + } + } + +@@ -1841,7 +1849,7 @@ + + + +-char *Game::choose_ranking(int kills) { ++const char *Game::choose_ranking(int kills) { + // Figure out the ranking set, they are listed in order. + int setNum = 0; + assert(kills >= 0 && rankingSets[0].killsMin == 0); +@@ -1876,7 +1884,7 @@ + if (showMessages) { + for (int n = 0; n < locator.humans_registered(); n++) { + HumanP human = locator.get_human(n); +- ostrstream msg; ++ stringstream msg; + + // Soups are only taken into account if you have unlimited lives. + int totalKills; +@@ -1894,11 +1902,11 @@ + totalKills = human->get_human_kills() + human->get_enemy_kills(); + } + +- char *ranking = choose_ranking(totalKills); ++ const char *ranking = choose_ranking(totalKills); + msg << totalKills << (totalKills == 1 ? "Kill" : " Kills") +- << ", Rank: " << ranking << ends; ++ << ", Rank: " << ranking; + IntelId humanIntelId = human->get_intel_id(); +- locator.arena_message_enq(msg.str(),&humanIntelId,10000); ++ locator.arena_message_enq(Utils::strdup(msg.str().c_str()),&humanIntelId,10000); + } + } + } +@@ -1919,8 +1927,8 @@ + // Will clean out non-persistent teams. + locator.level_reset(); + +- ostrstream lStr; // For level box on the side of the ui-> +- ostrstream lTitleStr; // For Ui title screen. ++ stringstream lStr; // For level box on the side of the ui-> ++ stringstream lTitleStr; // For Ui title screen. + Boolean doBonus; + + // Possibly increment level count number. +@@ -1960,7 +1968,7 @@ + if (doBonus) { + delete levelTitleStored; // If it already exists. + // Store levelTitle string for later use. +- levelTitleStored = lTitleStr.str(); ++ levelTitleStored = Utils::strdup(lTitleStr.str().c_str()); + + // Tell user about the bonus. + award_bonuses_now(); +@@ -1970,13 +1978,12 @@ + } + // Go to getBearings state. + else { +- get_bearings(lTitleStr.str()); ++ get_bearings(Utils::strdup(lTitleStr.str().c_str())); + } + + if (ui) { +- ui->set_level(lStr.str()); ++ ui->set_level(lStr.str().c_str()); + } +- delete lStr.str(); + + // Will pass in more info later. + role->new_level(this,&world,&locator); +@@ -1997,7 +2004,7 @@ + continue; + } + +- char* awardMsg = NULL; ++ const char* awardMsg = NULL; + int count = 0; + while (!awardMsg && count < AWARD_BONUS_TRIES) { + count++; +@@ -2184,9 +2191,9 @@ + + // Moved resetting world rooms to new_level(); + +- ostrstream msg; +- msg << wittySayings[Utils::choose(WITTY_SAYINGS_NUM)] << ends; +- locator.message_enq(msg.str()); ++ stringstream msg; ++ msg << wittySayings[Utils::choose(WITTY_SAYINGS_NUM)]; ++ locator.message_enq(Utils::strdup(msg.str().c_str())); + + /* Don't need to call Ui::set_* because the new values originally came + from ui-> */ +@@ -2242,41 +2249,39 @@ + { // Right keys. + right[n][which] = 0; + +- ostrstream strm; ++ stringstream strm; + if (which == 0) +- strm << "right_" << keysNames[n] << ends; ++ strm << "right_" << keysNames[n]; + else +- strm << "right_" << keysNames[n] << "_2" << ends; +- char *option = strm.str(); ++ strm << "right_" << keysNames[n] << "_2"; ++ const string & option = strm.str(); + + // Should we free value?? +- char *value = XGetDefault(ui->get_dpy(0),XEVIL_CLASS,option); ++ char *value = XGetDefault(ui->get_dpy(0),XEVIL_CLASS,option.c_str()); + if (value) { + KeySym keysym = XStringToKeysym(value); + if (keysym != NoSymbol) + right[n][which] = keysym; + } +- delete option; + } + + { // Left Keys. + left[n][which] = 0; + +- ostrstream strm; ++ stringstream strm; + if (which == 0) +- strm << "left_" << keysNames[n] << ends; ++ strm << "left_" << keysNames[n]; + else +- strm << "left_" << keysNames[n] << "_2" << ends; +- char *option = strm.str(); ++ strm << "left_" << keysNames[n] << "_2"; ++ const string & option = strm.str(); + + // Should we free value?? +- char *value = XGetDefault(ui->get_dpy(0),XEVIL_CLASS,option); ++ char *value = XGetDefault(ui->get_dpy(0),XEVIL_CLASS,option.c_str()); + if (value) { + KeySym keysym = XStringToKeysym(value); + if (keysym != NoSymbol) + left[n][which] = keysym; + } +- delete option; + } + } + +@@ -2291,10 +2296,10 @@ + void Game::parse_args(int *argc,char **argv) { + // Create a bunch of "-name" strings for comparing with command-line + // args. +- ostrstream dashName[Locator::HUMANS_MAX]; ++ stringstream dashName[Locator::HUMANS_MAX]; + int n; + for (n = 0; n < Locator::HUMANS_MAX; n++) { +- dashName[n] << "-name" << n << ends; ++ dashName[n] << "-name" << n; + } + + // Defaults +@@ -2351,7 +2356,7 @@ + // Check "-name" arguments. + else { + for (int j = 0; j < Locator::HUMANS_MAX; j++) { +- if ((! strcmp(dashName[j].str(),argv[n])) && (n + 1 < *argc)) { ++ if ((! strcmp(dashName[j].str().c_str(),argv[n])) && (n + 1 < *argc)) { + humanNames[j] = Utils::strdup(argv[n+1]); + n++; + } +@@ -2728,12 +2733,6 @@ + n++; + } + } // for +- +- +- // Delete memory for "-name" strings. +- for (n = 0; n < Locator::HUMANS_MAX; n++) { +- delete dashName[n].str(); +- } + } + + +@@ -2741,15 +2740,15 @@ + char **Game::display_names(int *argc,char **argv) { + + #if X11 +- ostrstream dashDisplay[UI_VIEWPORTS_MAX][2]; ++ stringstream dashDisplay[UI_VIEWPORTS_MAX][2]; + char **displayNames = new charP [UI_VIEWPORTS_MAX]; + + int n; + for (n = 0; n < UI_VIEWPORTS_MAX; n++) { + displayNames[n] = new char [Xvars::DISPLAY_NAME_LENGTH]; + strcpy(displayNames[n],""); +- dashDisplay[n][0] << "-display" << n << ends; +- dashDisplay[n][1] << "-d" << n << ends; ++ dashDisplay[n][0] << "-display" << n; ++ dashDisplay[n][1] << "-d" << n; + } + + // Loop through all command line arguments. +@@ -2765,7 +2764,7 @@ + // Set display name for one viewport. + for (int m = 0; m < UI_VIEWPORTS_MAX; m++) { + for (int which = 0; which < 2; which++) { +- if (!strcmp(argv[n],dashDisplay[m][which].str())) { ++ if (!strcmp(argv[n],dashDisplay[m][which].str().c_str())) { + assert(strlen(argv[n+1]) < Xvars::DISPLAY_NAME_LENGTH); + strcpy(displayNames[m],argv[n+1]); + } +@@ -2773,11 +2772,6 @@ + } + } + +- for (n = 0; n < UI_VIEWPORTS_MAX; n++) { +- for (int which = 0; which < 2; which++) { +- delete dashDisplay[n][which].str(); +- } +- } + return displayNames; + #endif + +@@ -2890,7 +2884,7 @@ + assert(role->get_type() != R_CLIENT); + + // Choose random name if -name was not specified for this player. +- char *nameNonPc = ++ const char *nameNonPc = + Utils::strlen(humanNames[h]) ? + humanNames[h] : + intelNames[intelNamesIndices[h % INTEL_NAMES_NUM]]; +@@ -2954,13 +2948,12 @@ + + // Put message in the status bar when the game starts up. + // Use \n in string for locator.message_enq. +- ostrstream msg; ++ stringstream msg; + msg + << "XEvil(TM) " << VERSION + << " http://www.xevil.com satan@xevil.com " << XETP::versionStr << "\n" +- << "Copyright(C) 1994,2000 Steve Hardt and Michael Judge" +- << ends; +- locator.message_enq(msg.str()); ++ << "Copyright(C) 1994,2000 Steve Hardt and Michael Judge"; ++ locator.message_enq(Utils::strdup(msg.str().c_str())); + + + // Print message to standard out. Doesn't really do anything on Windows. +@@ -3075,11 +3068,10 @@ + IntelOptions ops; + ITmask opMask = intel_options_for(ops,obj->get_class_id()); + +- ostrstream name; +- name << "Machine-" << (enemyNameCount++) << ends; +- EnemyP enemy = new Enemy(&world,&locator,name.str(),&ops,opMask); ++ stringstream name; ++ name << "Machine-" << (enemyNameCount++); ++ EnemyP enemy = new Enemy(&world,&locator,name.str().c_str(),&ops,opMask); + assert(enemy); +- delete name.str(); + locator.register_enemy(enemy); + + if (addToLocator) { +@@ -3235,14 +3227,13 @@ + switch (Utils::choose(8)) { + case 0: { // A bunch of Heros and an Alien. + for (int n = 0; n < 10; n++) { +- ostrstream name; +- name << "Enemy-" << n << ends; ++ stringstream name; ++ name << "Enemy-" << n; + IntelOptions ops; + ops.harmless = True; +- EnemyP enemy = new Enemy(&world,&locator,name.str(), ++ EnemyP enemy = new Enemy(&world,&locator,name.str().c_str(), + &ops,ITharmless); + assert(enemy); +- delete name.str(); + locator.register_enemy(enemy); + + Pos pos = world.empty_rect(Hero::get_size_max()); +@@ -3268,16 +3259,15 @@ + + case 1: { // Hero, FThrower, and a bunch of Frogs (does not mean Frenchmen). + for (int n = 0; n < 15; n++) { +- ostrstream name; +- name << "Enemy-" << n << ends; ++ stringstream name; ++ name << "Enemy-" << n; + IntelOptions ops; + ops.psychotic = Utils::coin_flip(); +- EnemyP enemy = new Enemy(&world,&locator,name.str(), ++ EnemyP enemy = new Enemy(&world,&locator,name.str().c_str(), + &ops,ITpsychotic); + assert(enemy); +- delete name.str(); + locator.register_enemy(enemy); +- ++ + Pos pos = world.empty_rect(Frog::get_size_max()); + PhysicalP obj = new Frog(&world,&locator,pos); + assert(obj); +@@ -3304,15 +3294,14 @@ + case 2: { // A bunch of Enforcers. + for (int n = 0; n < 10; n++) + { +- ostrstream name; +- name << "Enemy-" << n << ends; ++ stringstream name; ++ name << "Enemy-" << n; + IntelOptions ops; + ops.classFriends = False; + ops.psychotic = True; +- EnemyP enemy = new Enemy(&world,&locator,name.str(), ++ EnemyP enemy = new Enemy(&world,&locator,name.str().c_str(), + &ops,ITclassFriends|ITpsychotic); + assert(enemy); +- delete name.str(); + locator.register_enemy(enemy); + + Pos pos = world.empty_rect(Enforcer::get_size_max()); +@@ -3327,14 +3316,13 @@ + + case 3: { // A bunch of Ninjas and a chainsaw. + for (int n = 0; n < 10; n++) { +- ostrstream name; +- name << "Enemy-" << n << ends; ++ stringstream name; ++ name << "Enemy-" << n; + IntelOptions ops; + ops.classFriends = False; +- EnemyP enemy = new Enemy(&world,&locator,name.str(), ++ EnemyP enemy = new Enemy(&world,&locator,name.str().c_str(), + &ops,ITclassFriends); + assert(enemy); +- delete name.str(); + locator.register_enemy(enemy); + + Pos pos = world.empty_rect(Ninja::get_size_max()); +@@ -3373,12 +3361,11 @@ + } + + for (int m = 0; m < 10; m++) { +- ostrstream name; +- name << "Enemy-" << m << ends; +- EnemyP enemy = new Enemy(&world,&locator,name.str(), ++ stringstream name; ++ name << "Enemy-" << m; ++ EnemyP enemy = new Enemy(&world,&locator,name.str().c_str(), + NULL,ITnone); + assert(enemy); +- delete name.str(); + locator.register_enemy(enemy); + + Pos pos = world.empty_rect(Hero::get_size_max()); +@@ -3414,14 +3401,13 @@ + case 5: { // Ninjas and ChopperBoys. + int n; + for (n = 0; n < 10; n++) { +- ostrstream name; +- name << "Enemy-" << n << ends; ++ stringstream name; ++ name << "Enemy-" << n; + IntelOptions ops; + ops.classFriends = False; +- EnemyP enemy = new Enemy(&world,&locator,name.str(), ++ EnemyP enemy = new Enemy(&world,&locator,name.str().c_str(), + &ops,ITclassFriends); + assert(enemy); +- delete name.str(); + locator.register_enemy(enemy); + + PhysicalP obj; +@@ -3458,11 +3444,10 @@ + // and the scenario isn't set up yet. + + for (n = 0; n < 9; n++) { +- ostrstream name; +- name << "Dog-" << n << ends; +- EnemyP intel = new Enemy(&world,&locator,name.str(),NULL,ITnone); ++ stringstream name; ++ name << "Dog-" << n; ++ EnemyP intel = new Enemy(&world,&locator,name.str().c_str(),NULL,ITnone); + assert(intel); +- delete name.str(); + locator.register_enemy(intel); + + Pos pos = world.empty_rect(Dog::get_size_max()); +@@ -3473,13 +3458,12 @@ + } + + for (n = 0; n < 3; n++) { +- ostrstream name; +- name << "Enemy-" << n << ends; ++ stringstream name; ++ name << "Enemy-" << n; + IntelOptions ops; + ops.harmless = True; +- EnemyP enemy = new Enemy(&world,&locator,name.str(),&ops,ITharmless); ++ EnemyP enemy = new Enemy(&world,&locator,name.str().c_str(),&ops,ITharmless); + assert(enemy); +- delete name.str(); + locator.register_enemy(enemy); + + PhysicalP obj; +@@ -3510,13 +3494,12 @@ + Segmented::create_and_add_composite(ret,&world,&locator,Dragon::SEGMENTS_NUM,pos, + Dragon::create,NULL); + for (int m = 0; m < ret.length(); m++) { +- ostrstream name; +- name << "Enemy-" << n << ends; ++ stringstream name; ++ name << "Enemy-" << n; + IntelOptions ops; + ops.harmless = True; +- EnemyP enemy = new Enemy(&world,&locator,name.str(),&ops,ITharmless); ++ EnemyP enemy = new Enemy(&world,&locator,name.str().c_str(),&ops,ITharmless); + assert(enemy); +- delete name.str(); + locator.register_enemy(enemy); + PhysicalP p = (PhysicalP)ret.get(m); + p->set_intel(enemy); diff -urN /usr/ports/games/xevil/files/patch-cmn::game.h games/xevil/files/patch-cmn::game.h --- /usr/ports/games/xevil/files/patch-cmn::game.h 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-cmn::game.h 2012-05-27 06:55:49.000000000 +0900 @@ -1,12 +1,51 @@ ---- cmn/game.h.dist Sat Mar 22 20:44:32 2003 -+++ cmn/game.h Sat Oct 25 21:40:54 2003 -@@ -35,7 +35,8 @@ +--- cmn/game.h.orig 2012-05-27 06:52:31.000000000 +0900 ++++ cmn/game.h 2012-05-27 06:53:11.000000000 +0900 +@@ -35,7 +35,7 @@ extern "C" { #include } -#include +#include -+using namespace std; #include "utils.h" #include "ui.h" #include "world.h" +@@ -136,7 +136,7 @@ + struct RankingSet { + enum {RANKING_SET_MAX = 8}; // Max number of rankings in a set. + int killsMin; // Min number of kills to get this rank. +- char *rankings[RANKING_SET_MAX + 1]; // Extra for NULL. ++ const char *rankings[RANKING_SET_MAX + 1]; // Extra for NULL. + }; + + +@@ -268,8 +268,8 @@ + + private: + enum { +- WITTY_SAYINGS_NUM = 147, +- INTEL_NAMES_NUM = 74, ++ WITTY_SAYINGS_NUM = 155, ++ INTEL_NAMES_NUM = 77, + RANKING_SETS_NUM = 12, + }; + +@@ -306,7 +306,7 @@ + static Boolean potential_enemy_filter(const PhysicalContext* pc,void*); + /* EFFECTS: Filter those classes whose potentialEnemy flag is True. */ + +- char *choose_ranking(int kills); ++ const char *choose_ranking(int kills); + /* EFFECTS: Choose a rank for the player at the end of game based on the + number of kills. */ + +@@ -412,8 +412,8 @@ + SoundName currentSoundName; + //keeps track of current sound track being played: can be 0 + +- static char *wittySayings[WITTY_SAYINGS_NUM]; +- static char *intelNames[INTEL_NAMES_NUM]; ++ static const char *wittySayings[WITTY_SAYINGS_NUM]; ++ static const char *intelNames[INTEL_NAMES_NUM]; + static DifficultyLevel difficultyLevels[DIFFICULTY_LEVELS_NUM]; + static RankingSet rankingSets[RANKING_SETS_NUM]; + diff -urN /usr/ports/games/xevil/files/patch-cmn::game_style.cpp games/xevil/files/patch-cmn::game_style.cpp --- /usr/ports/games/xevil/files/patch-cmn::game_style.cpp 2007-07-31 23:11:02.000000000 +0900 +++ games/xevil/files/patch-cmn::game_style.cpp 2012-05-27 06:56:10.000000000 +0900 @@ -1,21 +1,911 @@ ---- cmn/game_style.cpp.orig 2003-03-22 20:47:42.000000000 +0100 -+++ cmn/game_style.cpp 2007-07-31 15:57:08.000000000 +0200 -@@ -34,7 +34,8 @@ +--- cmn/game_style.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ cmn/game_style.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -33,15 +33,9 @@ + #include } - #if X11 +-#if X11 -#include -+#include -+using namespace std; +-#endif +- +-#if WIN32 +-#include +-#endif ++#include + +-#include ++#include + #include "utils.h" + #include "coord.h" + #include "world.h" +@@ -109,13 +103,13 @@ + /* DEFAULT: True */ + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP) = 0; + + virtual void setup_world(WorldP,LocatorP,const DifficultyLevel &) = 0; + virtual void new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int humansNum) = 0; + /* EFFECTS: These two functions start a new level in a scenario. setup_world() should + just setup the map and size of the world. new_level() is called after world.reset() +@@ -158,13 +152,13 @@ + virtual ScenarioType get_scenario_type() {return EXTERMINATE;} + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + virtual void setup_world(WorldP,LocatorP,const DifficultyLevel &); + virtual void new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int humansNum); + + +@@ -183,13 +177,13 @@ + virtual Boolean can_refill_game_objects(); + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + virtual void setup_world(WorldP,LocatorP,const DifficultyLevel &); + virtual void new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int humansNum); + + virtual void new_level_set_timer(Timer &timer); +@@ -209,7 +203,7 @@ + virtual ScenarioType get_scenario_type() {return HIVE;} + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + virtual Boolean award_bonus(); +@@ -218,7 +212,7 @@ + virtual void setup_world(WorldP,LocatorP,const DifficultyLevel &); + virtual void new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int humansNum); + + virtual void refill_enemies(Boolean enemiesRefill,WorldP,LocatorP,IPhysicalManagerP); +@@ -242,13 +236,13 @@ + virtual ScenarioType get_scenario_type() {return CAPTURE_THE_FLAG;} + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + virtual void setup_world(WorldP,LocatorP,const DifficultyLevel &); + virtual void new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int humansNum); + + virtual void refill_enemies(Boolean enemiesRefill,WorldP,LocatorP,IPhysicalManagerP); +@@ -269,7 +263,7 @@ + virtual void setup_world(WorldP,LocatorP,const DifficultyLevel &); + virtual void new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int humansNum); + + virtual Boolean advance_level(); +@@ -292,7 +286,7 @@ + + virtual Boolean (*get_team())(LocatorP,PhysicalP,PhysicalP) = 0; + +- virtual void set_level_strings(int level,ostrstream &lStr,ostrstream &lTitleStr) = 0; ++ virtual void set_level_strings(int level,stringstream &lStr,stringstream &lTitleStr) = 0; + /* EFFECTS: Called in new_level() to set the appropriate messages. */ + + +@@ -311,7 +305,7 @@ + virtual ScenarioType get_scenario_type() {return SEALS;} + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + virtual Boolean award_bonus(); +@@ -323,7 +317,7 @@ + #endif + virtual Boolean (*get_team())(LocatorP,PhysicalP,PhysicalP); + +- virtual void set_level_strings(int level,ostrstream &lStr,ostrstream &lTitleStr); ++ virtual void set_level_strings(int level,stringstream &lStr,stringstream &lTitleStr); + + + private: +@@ -342,7 +336,7 @@ + virtual ScenarioType get_scenario_type() {return ANTI_SEALS;} + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + +@@ -351,7 +345,7 @@ + #endif + virtual Boolean (*get_team())(LocatorP,PhysicalP,PhysicalP); + +- virtual void set_level_strings(int level,ostrstream &lStr,ostrstream &lTitleStr); ++ virtual void set_level_strings(int level,stringstream &lStr,stringstream &lTitleStr); + + + private: +@@ -369,13 +363,13 @@ + virtual SoundName get_midisoundtrack(){return SoundNames::FIRE_SOUNDTRACK;} + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + virtual void setup_world(WorldP,LocatorP,const DifficultyLevel &); + virtual void new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int humansNum); + + virtual Boolean award_bonus(); +@@ -391,13 +385,13 @@ + virtual ScenarioType get_scenario_type() {return KILL_THE_DRAGON;} + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + virtual void setup_world(WorldP,LocatorP,const DifficultyLevel &); + virtual void new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int humansNum); + + virtual SoundName get_midisoundtrack(){return SoundNames::FIRE_SOUNDTRACK;} +@@ -419,13 +413,13 @@ + virtual Pos human_initial_pos(WorldP,LocatorP,const Size &s); + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + virtual void setup_world(WorldP,LocatorP,const DifficultyLevel &); + virtual void new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int humansNum); + + virtual void refill_enemies(Boolean enemiesRefill,WorldP,LocatorP,IPhysicalManagerP); +@@ -447,13 +441,13 @@ + virtual ScenarioType get_scenario_type() {return THE_POUND;} + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + virtual void setup_world(WorldP,LocatorP,const DifficultyLevel &); + virtual void new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int humansNum); + }; + +@@ -466,13 +460,13 @@ + virtual ScenarioType get_scenario_type() {return JAPAN_TOWN;} + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + virtual void setup_world(WorldP,LocatorP,const DifficultyLevel &); + virtual void new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int humansNum); + + virtual void filter_weapons_and_other_items(LocatorP,int &weaponsNum, +@@ -581,7 +575,7 @@ + + + int GameStyle::new_level_check(int,WorldP,LocatorP, +- int,Boolean &,ostrstream &,Timer &timer, ++ int,Boolean &,stringstream &,Timer &timer, + IPhysicalManagerP) { + // A timer-based level. + if (timer.ready()) { +@@ -791,8 +785,8 @@ + + + +-void Normal::describe(ostrstream &str) { +- str << "Complete each level/scenario to proceed to the next one." << ends; ++void Normal::describe(stringstream &str) { ++ str << "Complete each level/scenario to proceed to the next one."; + } + + +@@ -852,7 +846,7 @@ + + + int Normal::new_level_check(int enemiesPlaying,WorldP w,LocatorP l, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP manager) { + GameStyleP delegate = get_delegate(); + return delegate->new_level_check(enemiesPlaying,w,l,level,lStrChanged,levelStr,timer,manager); +@@ -876,7 +870,7 @@ + + void Normal::new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int humansNum) { + // Choose which delegate to use. + if (level % NORMAL_SCENARIOS_FREQUENCY == 0) { +@@ -934,11 +928,10 @@ + + + +-void Levels::describe(ostrstream &str) { ++void Levels::describe(stringstream &str) { + str << "Human player(s) fights through increasing levels of " + << "difficulty." << "\n" +- << "To complete a level you must kill all enemy players." +- << ends; ++ << "To complete a level you must kill all enemy players."; + } + + +@@ -969,7 +962,7 @@ + + + int Levels::new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int,Boolean &,ostrstream &,Timer &, ++ int,Boolean &,stringstream &,Timer &, + IPhysicalManagerP) { + if (enemiesPlaying == 0) { + return 1; +@@ -983,7 +976,7 @@ + + void Levels::new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int) { + world->reset(); + +@@ -991,8 +984,8 @@ + clean_physicals(False,world,locator,manager); + + +- lTitleStr << "[" << level << "] Kill All Machines" << ends; +- lStr << "Level: " << level << ends; ++ lTitleStr << "[" << level << "] Kill All Machines"; ++ lStr << "Level: " << level; + + enemiesNum += dLevel.enemiesIncr; + enemiesNum = Utils::minimum(enemiesNum,dLevel.enemiesMax); +@@ -1037,8 +1030,8 @@ + + + +-void KillKillKill::describe(ostrstream &str) { +- str << "Every human and machine for him/her/itself." << ends; ++void KillKillKill::describe(stringstream &str) { ++ str << "Every human and machine for him/her/itself."; + } + + +@@ -1095,15 +1088,15 @@ + + void KillKillKill::new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int) { + world->reset(); + + // Don't wipe out the Enemies. + clean_physicals(True,world,locator,manager); + +- lTitleStr << "Level: " << level << ends; +- lStr << "Level: " << level << ends; ++ lTitleStr << "Level: " << level; ++ lStr << "Level: " << level; + + // Only create enemies first time or if enemiesRefill is set. + if (justReset) { +@@ -1152,9 +1145,9 @@ + + + +-void Duel::describe(ostrstream &str) { ++void Duel::describe(stringstream &str) { + str << "Human vs. human battle to the death." +- << "\n" << "Each human has 3 lives." << ends; ++ << "\n" << "Each human has 3 lives."; + } + + +@@ -1207,13 +1200,13 @@ + + void Duel::new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int) { + world->reset(); + clean_physicals(False,world,locator,manager); + +- lTitleStr << "Level: " << level << ends; +- lStr << "Level: " << level << ends; ++ lTitleStr << "Level: " << level; ++ lStr << "Level: " << level; + + // Only create enemies first time. + if (justReset) { +@@ -1256,9 +1249,9 @@ + + + +-void ExtendedDuel::describe(ostrstream &str) { ++void ExtendedDuel::describe(stringstream &str) { + str << "Human vs. human battle to the death." +- << "\n" << "Unlimited lives." << ends; ++ << "\n" << "Unlimited lives."; + } + + +@@ -1318,13 +1311,13 @@ + + void ExtendedDuel::new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int) { + world->reset(); + clean_physicals(False,world,locator,manager); + +- lTitleStr << "Level: " << level << ends; +- lStr << "Level: " << level << ends; ++ lTitleStr << "Level: " << level; ++ lStr << "Level: " << level; + + // Only create enemies first time. + if (justReset) { +@@ -1367,8 +1360,8 @@ + + + +-void Training::describe(ostrstream &str) { +- str << "No enemies. Useful for learning the controls." << ends; ++void Training::describe(stringstream &str) { ++ str << "No enemies. Useful for learning the controls."; + } + + +@@ -1392,13 +1385,13 @@ + + void Training::new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int) { + world->reset(); + clean_physicals(False,world,locator,manager); + +- lTitleStr << "Level: " << level << ends; +- lStr << "Level: " << level << ends; ++ lTitleStr << "Level: " << level; ++ lStr << "Level: " << level; + } + + +@@ -1428,10 +1421,10 @@ + + + +-void Scenarios::describe(ostrstream &str) { ++void Scenarios::describe(stringstream &str) { + str << "A number of different scenarios." << "\n" + << "You must complete each scenario to continue on to the " +- << "next one." << ends; ++ << "next one."; + } + + +@@ -1499,7 +1492,7 @@ + + int Scenarios::new_level_check(int enemiesPlaying,WorldP w,LocatorP l, + int level,Boolean &lStrChanged, +- ostrstream &levelStr,Timer &timer, ++ stringstream &levelStr,Timer &timer, + IPhysicalManagerP manager) { + assert(scenario); + return scenario->new_level_check(enemiesPlaying,w,l,level, +@@ -1534,7 +1527,7 @@ + + void Scenarios::new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int humansNum) { + // Works even if scenario is NULL. + if (!scenario || scenario->advance_level()) { +@@ -1804,7 +1797,7 @@ + + + int Exterminate::new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int,Boolean &,ostrstream &,Timer &, ++ int,Boolean &,stringstream &,Timer &, + IPhysicalManagerP) { + if (enemiesPlaying == 0) { + return 1; +@@ -1822,10 +1815,10 @@ + + void Exterminate::new_level(int level,WorldP,LocatorP, + const DifficultyLevel &dLevel, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int) { +- lTitleStr << "[" << level << "] EXTERMINATE" << ends; +- lStr << "[" << level << "] EXTERMINATE\nKill all machines." << ends; ++ lTitleStr << "[" << level << "] EXTERMINATE"; ++ lStr << "[" << level << "] EXTERMINATE\nKill all machines."; + + // Doesn't increment like LEVELS game style + enemiesNum = dLevel.enemiesIncr; +@@ -1852,7 +1845,7 @@ + + int Bonus::new_level_check(int,WorldP,LocatorP locator, + int level,Boolean &lStrChanged, +- ostrstream &levelStr,Timer &timer, ++ stringstream &levelStr,Timer &timer, + IPhysicalManagerP) { + // Ran out of time. + if (timer.ready()) { +@@ -1873,13 +1866,13 @@ + if (remaining != frogsRemaining) { + frogsRemaining = remaining; + levelStr << "[" << level << "] BONUS LEVEL\nfrogs remaining: " +- << remaining << ends; ++ << remaining; + lStrChanged = True; + if (remaining > 0) { +- ostrstream arenaStr; ++ stringstream arenaStr; + arenaStr << remaining << " Frog" << +- (remaining > 1 ? "s" : "") << " Remaining" << ends; +- locator->arena_message_enq(arenaStr.str()); ++ (remaining > 1 ? "s" : "") << " Remaining"; ++ locator->arena_message_enq(Utils::strdup(arenaStr.str().c_str())); + } + + // Will only be called once per level. +@@ -1907,7 +1900,7 @@ + + void Bonus::new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int) { + // Create frogs + for (int n = 0; n < SCENARIO_BONUS_FROGS; n++) { +@@ -1940,9 +1933,9 @@ + frogsRemaining = SCENARIO_BONUS_FROGS; + + lTitleStr << "[" << level << "] Bonus Level: Kill " +- << (int)SCENARIO_BONUS_FROGS << " Frogs" << ends; ++ << (int)SCENARIO_BONUS_FROGS << " Frogs"; + lStr << "[" << level << "] BONUS LEVEL\nfrogs remaining: " +- << (int)SCENARIO_BONUS_FROGS << ends; ++ << (int)SCENARIO_BONUS_FROGS; + } + + +@@ -1960,7 +1953,7 @@ + + + int Hive::new_level_check(int,WorldP,LocatorP locator, +- int,Boolean &,ostrstream &,Timer &, ++ int,Boolean &,stringstream &,Timer &, + IPhysicalManagerP) { + PhysicalP xit = locator->lookup(xitId); + assert(xit); // The Xit should never be destroyed. +@@ -1987,7 +1980,7 @@ + + void Hive::new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int) { + // Aliens are created in Game::clock. + +@@ -2012,8 +2005,8 @@ + locator->add(egg); + } + +- lTitleStr << "[" << level << "] HIVE" << ends; +- lStr << "[" << level << "] HIVE.\nFind the exit." << ends; ++ lTitleStr << "[" << level << "] HIVE"; ++ lStr << "[" << level << "] HIVE.\nFind the exit."; + } + + +@@ -2073,7 +2066,7 @@ + + + int CaptureTheFlag::new_level_check(int,WorldP,LocatorP locator, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &, + IPhysicalManagerP manager) { + int fRemaining = 0; + for (int n = 0; n < SCENARIO_FLAG_FLAGS; n++) { +@@ -2091,19 +2084,19 @@ + flagsRemaining = fRemaining; + levelStr << "[" << level << "] COLLECT " + << (int)SCENARIO_FLAG_FLAGS +- << " FLAGS\nremaining: "<< flagsRemaining << ends; ++ << " FLAGS\nremaining: "<< flagsRemaining; + lStrChanged = True; + +- ostrstream arenaStr; ++ stringstream arenaStr; + if (fRemaining != 0) { + arenaStr << flagsRemaining << " Flag" << +- (flagsRemaining > 1 ? "s" : "") << " Remaining" << ends; ++ (flagsRemaining > 1 ? "s" : "") << " Remaining"; + } + else { +- arenaStr << "All Flags Collected" << ends; ++ arenaStr << "All Flags Collected"; + } + +- locator->arena_message_enq(arenaStr.str()); ++ locator->arena_message_enq(Utils::strdup(arenaStr.str().c_str())); + } + + if (fRemaining == 0) { // All flags are gone, so end level. +@@ -2124,7 +2117,7 @@ + + void CaptureTheFlag::new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP,int) { + for (int n = 0; n < SCENARIO_FLAG_FLAGS; n++) { + Pos pos = world->empty_accessible_rect(Flag::get_size_max()); +@@ -2136,9 +2129,9 @@ + flagsRemaining = SCENARIO_FLAG_FLAGS; + + lTitleStr << "[" << level << "] Capture The Flag: " +- << (int)SCENARIO_FLAG_FLAGS << " Flags" << ends; ++ << (int)SCENARIO_FLAG_FLAGS << " Flags"; + lStr << "[" << level << "] COLLECT " << (int)SCENARIO_FLAG_FLAGS +- << " FLAGS.\nremaining: " << (int)SCENARIO_FLAG_FLAGS << ends; ++ << " FLAGS.\nremaining: " << (int)SCENARIO_FLAG_FLAGS; + } + + +@@ -2169,7 +2162,7 @@ + + void GenericSeals::new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP,int) { + // Add a team for each human in the game. + // Don't use locator->humans_registered() because they may not have been +@@ -2298,7 +2291,7 @@ + + + int Seals::new_level_check(int,WorldP,LocatorP locator, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &, + IPhysicalManagerP) { + int lemOut,lemSafe,lemActive,lemDead; + compute_out_safe_active_dead(locator,lemOut,lemSafe,lemActive,lemDead); +@@ -2312,10 +2305,10 @@ + + // Only update arena string if sealsSafe has changed. + if (lemSafe != sealsSafe && lemSafe != SCENARIO_SEALS_NEED) { +- ostrstream arenaStr; ++ stringstream arenaStr; + arenaStr << "Save " << (SCENARIO_SEALS_NEED - lemSafe) +- << " More Baby Seals" << ends; +- locator->arena_message_enq(arenaStr.str()); ++ << " More Baby Seals"; ++ locator->arena_message_enq(Utils::strdup(arenaStr.str().c_str())); + } + + sealsSafe = lemSafe; +@@ -2324,18 +2317,17 @@ + levelStr << "[" << level << "] SAVE " + << (int)SCENARIO_SEALS_NEED << " BABY SEALS\n" + << "out: " << sealsOut << " safe: " << sealsSafe +- << " dead: " << lemDead +- << ends; ++ << " dead: " << lemDead; + lStrChanged = True; + + // New level if enough seals are safe or too many are dead. + if (lemDead > (SCENARIO_SEALS_SEALS - SCENARIO_SEALS_NEED) + || lemSafe >= SCENARIO_SEALS_NEED) { + if (lemSafe < SCENARIO_SEALS_NEED) { +- ostrstream msg; ++ stringstream msg; + msg << "YOU FAILED TO SAVE " << (int)SCENARIO_SEALS_NEED +- << " BABY SEALS. TRY THIS LEVEL AGAIN." << ends; +- locator->arena_message_enq(msg.str()); ++ << " BABY SEALS. TRY THIS LEVEL AGAIN."; ++ locator->arena_message_enq(Utils::strdup(msg.str().c_str())); + } + else { + locator->arena_message_enq(Utils::strdup("Good work. Go to the next level.")); +@@ -2365,11 +2357,10 @@ + + + +-void Seals::set_level_strings(int level,ostrstream &lStr,ostrstream &lTitleStr) { +- lTitleStr << "[" << level << "] SAVE THE BABY SEALS" << ends; ++void Seals::set_level_strings(int level,stringstream &lStr,stringstream &lTitleStr) { ++ lTitleStr << "[" << level << "] SAVE THE BABY SEALS"; + lStr << "[" << level << "] SAVE "<< +- (int)SCENARIO_SEALS_NEED << " BABY SEALS\n" +- << "out: 0 safe: 0 dead: 0" << ends; ++ (int)SCENARIO_SEALS_NEED << " BABY SEALS\n" << "out: 0 safe: 0 dead: 0"; + } + + +@@ -2430,7 +2421,7 @@ + + + int AntiSeals::new_level_check(int,WorldP,LocatorP locator, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &, + IPhysicalManagerP) { + // level not over by default. + int ret = -1; +@@ -2441,15 +2432,13 @@ + + // Failure + if (lemSafe > SCENARIO_ANTI_SEALS_MAX_SLIPPAGE) { +- ostrstream msg; + #if 0 + // Not enough space on screen, need two lines. + msg << "YOU LET TOO MANY OF THE FAT BASTARDS GET AWAY\n" + << "Try this level again" << ends; + #else +- msg << "YOU LET TOO MANY OF THE FAT BASTARDS GET AWAY" << ends; #endif +- locator->arena_message_enq(msg.str()); ++ locator->arena_message_enq(Utils::strdup("YOU LET TOO MANY OF THE FAT BASTARDS GET AWAY")); + + // start new level + ret = 1; +@@ -2473,13 +2462,11 @@ + } + // Update UI + else if (lemSafe == sealsSafe) { // o.w. the "one got away" message takes priority +- ostrstream arenaStr; +- arenaStr << "Kill " +- << lemToKill << " More Baby Seals" << ends; +- locator->arena_message_enq(arenaStr.str()); ++ stringstream arenaStr; ++ arenaStr << "Kill " << lemToKill << " More Baby Seals"; ++ locator->arena_message_enq(Utils::strdup(arenaStr.str().c_str())); + +- levelStr << "[" << level << "] KILL " +- << lemToKill << " BABY SEALS" << ends; ++ levelStr << "[" << level << "] KILL " << lemToKill << " BABY SEALS"; + lStrChanged = True; + } + } // lemDead != sealsDead +@@ -2502,10 +2489,10 @@ + + + +-void AntiSeals::set_level_strings(int level,ostrstream &lStr,ostrstream &lTitleStr) { +- lTitleStr << "[" << level << "] KILL THE BABY SEALS" << ends; ++void AntiSeals::set_level_strings(int level,stringstream &lStr,stringstream &lTitleStr) { ++ lTitleStr << "[" << level << "] KILL THE BABY SEALS"; + lStr << "[" << level << "] KILL "<< +- (int)SCENARIO_SEALS_SEALS << " BABY SEALS" << ends; ++ (int)SCENARIO_SEALS_SEALS << " BABY SEALS"; + } + + +@@ -2552,7 +2539,7 @@ + + + int KillTheFireDemon::new_level_check(int enemiesPlaying,WorldP,LocatorP locator, +- int,Boolean &,ostrstream &,Timer &, ++ int,Boolean &,stringstream &,Timer &, + IPhysicalManagerP) { + if (enemiesPlaying == 0) { + locator->arena_message_enq(Utils::strdup("Take That, You Mother-Fucking Spawn From Hell")); +@@ -2572,12 +2559,12 @@ + + void KillTheFireDemon::new_level(int level,WorldP,LocatorP, + const DifficultyLevel &, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int) { + manager->create_enemy(manager->enemy_physical(A_FireDemon)); + +- lTitleStr << "[" << level << "] FIRE DEMON" << ends; +- lStr << "[" << level << "] Kill the Fire Demon." << ends; ++ lTitleStr << "[" << level << "] FIRE DEMON"; ++ lStr << "[" << level << "] Kill the Fire Demon."; + } + + +@@ -2594,7 +2581,7 @@ + + + int KillTheDragon::new_level_check(int enemiesPlaying,WorldP,LocatorP locator, +- int,Boolean &,ostrstream &,Timer &, ++ int,Boolean &,stringstream &,Timer &, + IPhysicalManagerP) { + if (enemiesPlaying == 0) { + locator->arena_message_enq(Utils::strdup("The Infernal Worm has been vanquished")); +@@ -2614,7 +2601,7 @@ + + void KillTheDragon::new_level(int level,WorldP w,LocatorP l, + const DifficultyLevel &, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int) { + const PhysicalContext *cx = &Dragon::creatureContext.movingContext.physicalContext; + Pos pos = w->empty_rect(cx->sizeMax); +@@ -2628,8 +2615,8 @@ + manager->create_enemy(p,False); + } + +- lTitleStr << "[" << level << "] Dragon" << ends; +- lStr << "[" << level << "] Kill the Dragon." << ends; ++ lTitleStr << "[" << level << "] Dragon"; ++ lStr << "[" << level << "] Kill the Dragon."; + } - #if WIN32 -@@ -2680,7 +2681,7 @@ + +@@ -2667,7 +2654,7 @@ + + + int ZigZag::new_level_check(int,WorldP world,LocatorP locator, +- int,Boolean &,ostrstream &,Timer &, ++ int,Boolean &,stringstream &,Timer &, + IPhysicalManagerP) { + PhysicalP xit = locator->lookup(xitId); + assert(xit); // The Xit should never be destroyed. +@@ -2680,7 +2667,7 @@ HumanP human = locator->get_human(n); if (human) { // previous depth - int depthOld = (int)human->get_data(); -+ intptr_t depthOld = (intptr_t)human->get_data(); ++ long depthOld = (long)human->get_data(); Id id = human->get_id(); // Get physical for intelligence +@@ -2697,9 +2684,9 @@ + human->set_data((void *)depth); + + // Use 1-based counting for the User. +- ostrstream str; +- str << "Depth " << (depth + 1) << ends; +- locator->arena_message_enq(str.str(),p); ++ stringstream str; ++ str << "Depth " << (depth + 1); ++ locator->arena_message_enq(Utils::strdup(str.str().c_str()),p); + } + } + } +@@ -2718,7 +2705,7 @@ + + void ZigZag::new_level(int level,WorldP world,LocatorP locator, + const DifficultyLevel &, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP,int) { + Rooms worldRooms = world->get_rooms(); + RoomIndex upperRight(0,worldRooms.acrossMax - 1); +@@ -2731,9 +2718,8 @@ + xitId = p->get_id(); + + // 1-based counting of depth for the user. +- lTitleStr << "[" << level << "] ZIG-ZAG: Depth " +- << worldRooms.downMax << ends; +- lStr << "[" << level << "] ZIG-ZAG.\nFind the exit." << ends; ++ lTitleStr << "[" << level << "] ZIG-ZAG: Depth " << worldRooms.downMax; ++ lStr << "[" << level << "] ZIG-ZAG.\nFind the exit."; + } + + +@@ -2761,7 +2747,7 @@ + + + int ThePound::new_level_check(int enemiesPlaying,WorldP,LocatorP locator, +- int,Boolean &,ostrstream &,Timer &, ++ int,Boolean &,stringstream &,Timer &, + IPhysicalManagerP) { + if (enemiesPlaying == 0) { + locator->arena_message_enq(Utils::strdup("Killed the Mutts")); +@@ -2781,7 +2767,7 @@ + + void ThePound::new_level(int level,WorldP,LocatorP locator, + const DifficultyLevel &, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int) { + locator->add_team(Scenarios::dog_team,NULL); + +@@ -2789,8 +2775,8 @@ + manager->create_enemy(manager->enemy_physical(A_Dog)); + } + +- lTitleStr << "[" << level << "] The Pound" << ends; +- lStr << "[" << level << "] The Pound" << ends; ++ lTitleStr << "[" << level << "] The Pound"; ++ lStr << "[" << level << "] The Pound"; + } + + +@@ -2801,7 +2787,7 @@ + + + int JapanTown::new_level_check(int enemiesPlaying,WorldP,LocatorP locator, +- int,Boolean &,ostrstream &,Timer &, ++ int,Boolean &,stringstream &,Timer &, + IPhysicalManagerP) { + if (enemiesPlaying == 0) { + locator->arena_message_enq(Utils::strdup("Damn Ninjas. Worse than roaches.")); +@@ -2821,7 +2807,7 @@ + + void JapanTown::new_level(int level,WorldP,LocatorP locator, + const DifficultyLevel &, +- ostrstream &lStr,ostrstream &lTitleStr, ++ stringstream &lStr,stringstream &lTitleStr, + IPhysicalManagerP manager,int) { + locator->add_team(JapanTown::ninja_team,NULL); + +@@ -2829,8 +2815,8 @@ + manager->create_enemy(manager->enemy_physical(A_Ninja)); + } + +- lTitleStr << "[" << level << "] Japan-Town" << ends; +- lStr << "[" << level << "] Japan-Town" << ends; ++ lTitleStr << "[" << level << "] Japan-Town"; ++ lStr << "[" << level << "] Japan-Town"; + } + + diff -urN /usr/ports/games/xevil/files/patch-cmn::game_style.h games/xevil/files/patch-cmn::game_style.h --- /usr/ports/games/xevil/files/patch-cmn::game_style.h 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-cmn::game_style.h 2012-05-27 06:56:20.000000000 +0900 @@ -1,12 +1,201 @@ ---- cmn/game_style.h.dist Sat Mar 22 20:22:30 2003 -+++ cmn/game_style.h Sat Oct 25 21:41:50 2003 -@@ -31,7 +31,8 @@ +--- cmn/game_style.h.orig 2012-05-27 06:52:31.000000000 +0900 ++++ cmn/game_style.h 2012-05-27 06:53:11.000000000 +0900 +@@ -30,12 +30,7 @@ + #endif #endif - #if X11 +-#if X11 -#include -+#include +-#endif +-#if WIN32 +-#include +-#endif ++#include + + #include "utils.h" + #include "coord.h" +@@ -44,6 +39,8 @@ + #include "intel.h" + + +using namespace std; - #endif - #if WIN32 - #include ++ + #define SCENARIO_SEALS_TRAPDOORS 2 + #define SCENARIO_BONUS_FROGS 12 + #define SCENARIO_FLAG_FLAGS 15 +@@ -91,7 +88,7 @@ + + virtual GameStyle *clone() = 0; + +- virtual void describe(ostrstream &) = 0; ++ virtual void describe(stringstream &) = 0; + /* EFFECTS: Write a two-line description of the style to the stream. */ + + virtual GameStyleType get_type() = 0; +@@ -137,7 +134,7 @@ + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, + int level, +- Boolean &lStrChanged,ostrstream &levelStr, ++ Boolean &lStrChanged,stringstream &levelStr, + Timer &timer, + IPhysicalManagerP); + /* MODIFIES: lStrChanged */ +@@ -166,7 +163,7 @@ + + virtual void new_level(int level,WorldP,LocatorP, + const DifficultyLevel &dLevel, +- ostrstream &levelStr,ostrstream &levelTitleStr, ++ stringstream &levelStr,stringstream &levelTitleStr, + IPhysicalManagerP,int humansNum) = 0; + /* MODIFIES: level */ + /* EFFECTS: Start a new level. Use levelStr levelTitleStr to +@@ -249,7 +246,7 @@ + + virtual GameStyleP clone(); + +- virtual void describe(ostrstream &); ++ virtual void describe(stringstream &); + + virtual GameStyleType get_type(); + +@@ -269,7 +266,7 @@ + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, + int level,Boolean &lStrChanged, +- ostrstream &levelStr,Timer &timer, ++ stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + virtual Boolean advance_level(); +@@ -277,7 +274,7 @@ + virtual Boolean award_bonus(); + + virtual void new_level(int level,WorldP,LocatorP,const DifficultyLevel &dLevel, +- ostrstream &levelStr,ostrstream &levelTitleStr, ++ stringstream &levelStr,stringstream &levelTitleStr, + IPhysicalManagerP,int humansNum); + + virtual void new_level_set_timer(Timer &timer); +@@ -305,7 +302,7 @@ + + virtual GameStyleP clone(); + +- virtual void describe(ostrstream &); ++ virtual void describe(stringstream &); + + virtual GameStyleType get_type(); + +@@ -314,11 +311,11 @@ + virtual void reset(WorldP,LocatorP,const DifficultyLevel &,int enemiesNumNext); + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + virtual void new_level(int level,WorldP,LocatorP,const DifficultyLevel &dLevel, +- ostrstream &levelStr,ostrstream &levelTitleStr, ++ stringstream &levelStr,stringstream &levelTitleStr, + IPhysicalManagerP,int humansNum); + + virtual void new_level_set_timer(Timer &timer); +@@ -340,7 +337,7 @@ + + virtual GameStyleP clone(); + +- virtual void describe(ostrstream &); ++ virtual void describe(stringstream &); + + virtual GameStyleType get_type(); + +@@ -355,7 +352,7 @@ + virtual Boolean game_over_check(int humansPlaying,int enemiesPlaying); + + virtual void new_level(int level,WorldP,LocatorP,const DifficultyLevel &dLevel, +- ostrstream &levelStr,ostrstream &levelTitleStr, ++ stringstream &levelStr,stringstream &levelTitleStr, + IPhysicalManagerP,int humansNum); + + virtual void refill_enemies(Boolean enemiesRefill,WorldP,LocatorP,IPhysicalManagerP); +@@ -376,7 +373,7 @@ + + virtual GameStyleP clone(); + +- virtual void describe(ostrstream &); ++ virtual void describe(stringstream &); + + virtual GameStyleType get_type(); + +@@ -389,7 +386,7 @@ + virtual Boolean game_over_check(int humansPlaying,int enemiesPlaying); + + virtual void new_level(int level,WorldP,LocatorP,const DifficultyLevel &dLevel, +- ostrstream &levelStr,ostrstream &levelTitleStr, ++ stringstream &levelStr,stringstream &levelTitleStr, + IPhysicalManagerP,int humansNum); + + virtual void refill_enemies(Boolean enemiesRefill,WorldP,LocatorP,IPhysicalManagerP); +@@ -408,7 +405,7 @@ + + virtual GameStyleP clone(); + +- virtual void describe(ostrstream &); ++ virtual void describe(stringstream &); + + virtual GameStyleType get_type(); + +@@ -423,7 +420,7 @@ + virtual Boolean game_over_check(int humansPlaying,int enemiesPlaying); + + virtual void new_level(int level,WorldP,LocatorP,const DifficultyLevel &dLevel, +- ostrstream &levelStr,ostrstream &levelTitleStr, ++ stringstream &levelStr,stringstream &levelTitleStr, + IPhysicalManagerP,int humansNum); + + virtual void refill_enemies(Boolean enemiesRefill,WorldP,LocatorP,IPhysicalManagerP); +@@ -442,7 +439,7 @@ + + virtual GameStyleP clone(); + +- virtual void describe(ostrstream &); ++ virtual void describe(stringstream &); + + virtual GameStyleType get_type(); + +@@ -451,7 +448,7 @@ + virtual void reset(WorldP,LocatorP,const DifficultyLevel &dLevel,int); + + virtual void new_level(int level,WorldP,LocatorP,const DifficultyLevel &dLevel, +- ostrstream &levelStr,ostrstream &levelTitleStr, ++ stringstream &levelStr,stringstream &levelTitleStr, + IPhysicalManagerP,int humansNum); + + virtual void refill_enemies(Boolean enemiesRefill,WorldP,LocatorP,IPhysicalManagerP); +@@ -466,7 +463,7 @@ + + virtual GameStyleP clone(); + +- virtual void describe(ostrstream &); ++ virtual void describe(stringstream &); + + virtual GameStyleType get_type(); + +@@ -485,7 +482,7 @@ + virtual void reset(WorldP,LocatorP,const DifficultyLevel &,int enemiesNumNext); + + virtual int new_level_check(int enemiesPlaying,WorldP,LocatorP, +- int level,Boolean &lStrChanged,ostrstream &levelStr,Timer &timer, ++ int level,Boolean &lStrChanged,stringstream &levelStr,Timer &timer, + IPhysicalManagerP); + + virtual Boolean advance_level(); +@@ -493,7 +490,7 @@ + virtual Boolean award_bonus(); + + virtual void new_level(int level,WorldP,LocatorP,const DifficultyLevel &dLevel, +- ostrstream &levelStr,ostrstream &levelTitleStr, ++ stringstream &levelStr,stringstream &levelTitleStr, + IPhysicalManagerP manager,int humansNum); + + virtual void new_level_set_timer(Timer &timer); diff -urN /usr/ports/games/xevil/files/patch-cmn::intel.cpp games/xevil/files/patch-cmn::intel.cpp --- /usr/ports/games/xevil/files/patch-cmn::intel.cpp 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-cmn::intel.cpp 2012-05-27 06:56:42.000000000 +0900 @@ -1,12 +1,109 @@ ---- cmn/intel.cpp.orig Wed Mar 19 09:49:22 2003 -+++ cmn/intel.cpp Sat Oct 25 21:42:14 2003 -@@ -35,7 +35,8 @@ +--- cmn/intel.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ cmn/intel.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -35,7 +35,7 @@ #include } #if X11 -#include -+#include -+using namespace std; ++#include #endif #if WIN32 #include +@@ -50,6 +50,7 @@ + #include "xdata.h" + + ++using namespace std; + + // Defines + #define FIGHT_RANGE 40 // made it smaller for Dogs 45 // [50-40] +@@ -212,7 +213,7 @@ + + + +-Intel::Intel(WorldP w,LocatorP l,char *name, ++Intel::Intel(WorldP w,LocatorP l,const char *name, + const IntelOptions *ops,ITmask opMask) { + intelStatusChanged = True; + living = True; +@@ -755,7 +756,7 @@ + + + +-Human::Human(WorldP w,LocatorP l,char *name,int lves, ++Human::Human(WorldP w,LocatorP l,const char *name,int lves, + int *sharedLves,ColorNum cNum) + : Intel(w,l,name,NULL,ITnone) { + lives = lves; +@@ -931,7 +932,7 @@ + + + +-Machine::Machine(WorldP w,LocatorP l,char *name,const IntelOptions *ops, ++Machine::Machine(WorldP w,LocatorP l,const char *name,const IntelOptions *ops, + ITmask opMask) + : Intel(w,l,name,ops,opMask) + { +@@ -1829,7 +1830,7 @@ + + + +-Enemy::Enemy(WorldP w,LocatorP l,char *name, ++Enemy::Enemy(WorldP w,LocatorP l,const char *name, + const IntelOptions *ops,ITmask opMask) + :Machine(w,l,name,ops,opMask) {} + +@@ -1854,7 +1855,7 @@ + + + +-Neutral::Neutral(WorldP w,LocatorP l,char *name, ++Neutral::Neutral(WorldP w,LocatorP l,const char *name, + const IntelOptions *ops,ITmask opMask) + :Machine(w,l,name,ops,opMask) {} + +@@ -1867,7 +1868,7 @@ + + + +-SealIntel::SealIntel(WorldP w,LocatorP l,char *name,const Id &home_id) ++SealIntel::SealIntel(WorldP w,LocatorP l,const char *name,const Id &home_id) + :Neutral(w,l,name,NULL,ITnone) + { + // Timer oTimer(LADDER_JUMP_TIME); +@@ -1906,7 +1907,7 @@ + + + +-DoppelIntel::DoppelIntel(WorldP w,LocatorP l,char *name, ++DoppelIntel::DoppelIntel(WorldP w,LocatorP l,const char *name, + const IntelOptions *ops,ITmask opMask,IntelP master) + :Neutral(w,l,name,ops,opMask) { + assert(master); +@@ -2073,7 +2074,7 @@ + + + +-Pet::Pet(WorldP w,LocatorP l,char *name, ++Pet::Pet(WorldP w,LocatorP l,const char *name, + const IntelOptions *ops,ITmask opMask,IntelP master) + :DoppelIntel(w,l,name,ops,opMask,master) { + mode = Heel; +@@ -2095,7 +2096,7 @@ + char buffer[80]; + ostrstream str(buffer,80); + str << "mode changing from:" << Pet::mode_string(prev) << +- " to: " << Pet::mode_string(curr) << endl << ends; ++ " to: " << Pet::mode_string(curr) << endl; + #if WIN32 + TRACE(buffer); + #endif +@@ -2308,7 +2309,7 @@ + + + +-char *Pet::mode_string(int mode) { ++const char *Pet::mode_string(int mode) { + switch (mode) { + case Heel: + return "Heel"; diff -urN /usr/ports/games/xevil/files/patch-cmn::locator.h games/xevil/files/patch-cmn::locator.h --- /usr/ports/games/xevil/files/patch-cmn::locator.h 2006-10-07 05:33:53.000000000 +0900 +++ games/xevil/files/patch-cmn::locator.h 2012-05-27 06:57:16.000000000 +0900 @@ -1,27 +1,20 @@ ---- cmn/locator.h.orig Sat Mar 22 20:35:30 2003 -+++ cmn/locator.h Fri Oct 6 13:44:36 2006 -@@ -47,7 +47,8 @@ +--- cmn/locator.h.orig 2012-05-27 06:52:31.000000000 +0900 ++++ cmn/locator.h 2012-05-27 06:53:11.000000000 +0900 +@@ -47,7 +47,7 @@ // Include Files -#include +#include -+using namespace std; #include "utils.h" #include "coord.h" -@@ -108,12 +109,12 @@ +@@ -96,6 +96,8 @@ + #define OL_RECENT_SOUNDS_MAX 30 - - // Only valid if mapped || flash. -- OLgridEntry *gridEntry; -+ class OLgridEntry *gridEntry; - // Set by OLgridEntry::insert. Not nec. valid. - GLoc gloc; - #if X11 - // Only valid if mapped || flash. -- OLshadowEntry *shadowEntry; -+ class OLshadowEntry *shadowEntry; - // Set by OLshadowEntry::insert. Not nec. valid. - GLoc shadowGloc; - #endif + ++class OLgridEntry; ++class OLshadowEntry; + + // An entry for one object in the list of all objects currently in the game. + class OLentry { diff -urN /usr/ports/games/xevil/files/patch-cmn::physical.cpp games/xevil/files/patch-cmn::physical.cpp --- /usr/ports/games/xevil/files/patch-cmn::physical.cpp 2007-07-31 23:11:02.000000000 +0900 +++ games/xevil/files/patch-cmn::physical.cpp 2012-05-27 06:57:29.000000000 +0900 @@ -1,25 +1,191 @@ ---- cmn/physical.cpp.orig 2000-01-19 20:38:14.000000000 +0100 -+++ cmn/physical.cpp 2007-07-31 15:54:01.000000000 +0200 -@@ -33,10 +33,11 @@ +--- cmn/physical.cpp.orig 2012-05-27 06:52:30.000000000 +0900 ++++ cmn/physical.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -33,10 +33,10 @@ // Include Files #include "xdata.h" #include "physical.h" -#include +#include -+using namespace std; #if X11 -#include -+#include ++#include #endif #if WIN32 #include +@@ -54,6 +54,7 @@ + + #include "bitmaps/transform/transform.bitmaps" + ++using namespace std; + + // Defines + #define VEL_SMALL 1 +@@ -523,9 +524,9 @@ + + if (heat == 0 && heatNext > 0) { + LocatorP l = get_locator(); +- ostrstream str; +- str << get_class_name() << " is on fire." << ends; +- locator->message_enq(str.str()); ++ stringstream str; ++ str << get_class_name() << " is on fire."; ++ locator->message_enq(Utils::strdup(str.str().c_str())); + } + } + previousHeatWasSecondary = secondary; @@ -1844,7 +1845,7 @@ } // Use the pixmap resource id as the base. - u_int cmnBitsId = (unsigned int)mc->pixmapBits[baseDir][animNum]; -+ u_int cmnBitsId = (unsigned intptr_t)mc->pixmapBits[baseDir][animNum]; ++ u_int cmnBitsId = (unsigned long)mc->pixmapBits[baseDir][animNum]; // It is ok to call OneTransform::compute_key() even if there is no // transformation, will just return 0x0. +@@ -2556,17 +2557,17 @@ + + void Item::die() { + LocatorP locator = get_locator(); +- ostrstream msg; ++ stringstream msg; + switch (dieMessage) { + case NONE: + break; + case USED: +- msg << get_class_name() << " has been used." << ends; +- locator->message_enq(msg.str()); ++ msg << get_class_name() << " has been used."; ++ locator->message_enq(Utils::strdup(msg.str().c_str())); + break; + case DESTROYED: +- msg << get_class_name() << " is destroyed." << ends; +- locator->message_enq(msg.str()); ++ msg << get_class_name() << " is destroyed."; ++ locator->message_enq(Utils::strdup(msg.str().c_str())); + break; + }; + +@@ -2650,10 +2651,8 @@ + // Prevent non-biologicals from picking up drugs. + + if (p->is_creature() && !((CreatureP)p)->biological()) { +- ostrstream msg; +- msg << "Non-Biological Creatures Cannot Use Drugs" << ends; + LocatorP locator = get_locator(); +- locator->arena_message_enq(msg.str(),p); ++ locator->arena_message_enq(Utils::strdup("Non-Biological Creatures Cannot Use Drugs"), p); + kill_self(); + } + else { +@@ -2673,13 +2672,11 @@ + assert(context->odChance >= 0); + if (context->odChance && Utils::choose(context->odChance) == 0) { + p->kill_self(); +- ostrstream msg; +- msg << p->get_class_name() << " dies from crack overdose." << ends; +- locator->message_enq(msg.str()); ++ stringstream msg; ++ msg << p->get_class_name() << " dies from crack overdose."; ++ locator->message_enq(Utils::strdup(msg.str().c_str())); + +- ostrstream arenaMsg; +- arenaMsg << "You Died From Drug Overdose" << ends; +- locator->arena_message_enq(arenaMsg.str(),p); ++ locator->arena_message_enq(Utils::strdup("You Died From Drug Overdose"),p); + + set_quiet_death(); // so doesn't report "has been used" message. + } +@@ -2693,9 +2690,7 @@ + } + else { + // Shouldn't get here, should kill self when picking it up. +- ostrstream msg; +- msg << "Non-Biological Creatures Cannot Use Drugs" << ends; +- locator->arena_message_enq(msg.str(),p); ++ locator->arena_message_enq(Utils::strdup("Non-Biological Creatures Cannot Use Drugs"),p); + } + + kill_self(); +@@ -4334,14 +4329,14 @@ + if (!get_quiet_death() && !alive() && + (corpseTimer.ready() || (get_health() < - cc->corpseHealth))) { + LocatorP locator = get_locator(); +- ostrstream msg; ++ stringstream msg; + if (corpseTimer.ready()) { +- msg << get_class_name() << " corpse has decomposed." << ends; +- locator->message_enq(msg.str()); ++ msg << get_class_name() << " corpse has decomposed."; ++ locator->message_enq(Utils::strdup(msg.str().c_str())); + } + else { +- msg << get_class_name() << " corpse has been destroyed." << ends; +- locator->message_enq(msg.str()); ++ msg << get_class_name() << " corpse has been destroyed."; ++ locator->message_enq(Utils::strdup(msg.str().c_str())); + } + set_delete_me(); + } +@@ -4399,9 +4394,9 @@ + set_vel_next(velNew); + set_stance_next(CO_air); + +- ostrstream msg; +- msg << get_class_name() << " has died." << ends; +- locator->message_enq(msg.str()); ++ stringstream msg; ++ msg << get_class_name() << " has died."; ++ locator->message_enq(Utils::strdup(msg.str().c_str())); + + set_no_death_delete(); + } +@@ -6072,10 +6067,10 @@ + } + // If User is already holding the max number of weapons. + else if (weaponsNum >= PH_WEAPONS_MAX) { +- ostrstream msg; +- msg << "Can only hold " << PH_WEAPONS_MAX << " weapons" << ends; ++ stringstream msg; ++ msg << "Can only hold " << PH_WEAPONS_MAX << " weapons"; + LocatorP locator = cre->get_locator(); +- locator->arena_message_enq(msg.str(),cre); ++ locator->arena_message_enq(Utils::strdup(msg.str().c_str()),cre); + destroyOther = True; + } + // Actually pick it up. +@@ -6124,15 +6119,14 @@ + else { + LocatorP locator = cre->get_locator(); + if (itemsNum == PH_ITEMS_MAX) { +- ostrstream msg; +- msg << "Can only hold " << PH_ITEMS_MAX << " items" << ends; +- locator->arena_message_enq(msg.str(),cre); ++ stringstream msg; ++ msg << "Can only hold " << PH_ITEMS_MAX << " items"; ++ locator->arena_message_enq(Utils::strdup(msg.str().c_str()),cre); + } + else if (itemClassCount >= ITEM_CLASS_MAX) { +- ostrstream msg; +- msg << "Can only hold " << ITEM_CLASS_MAX +- << " of any one item" << ends; +- locator->arena_message_enq(msg.str(),cre); ++ stringstream msg; ++ msg << "Can only hold " << ITEM_CLASS_MAX << " of any one item"; ++ locator->arena_message_enq(Utils::strdup(msg.str().c_str()),cre); + } + + other->set_quiet_death(); +@@ -6661,9 +6655,9 @@ + ((ItemP)p)->use(cre); + } + else { +- ostrstream str; +- str << "Cannot use " << p->get_class_name() << ends; +- locator->arena_message_enq(str.str(),cre); ++ stringstream str; ++ str << "Cannot use " << p->get_class_name(); ++ locator->arena_message_enq(Utils::strdup(str.str().c_str()),cre); + } + } + break; diff -urN /usr/ports/games/xevil/files/patch-cmn::role.cpp games/xevil/files/patch-cmn::role.cpp --- /usr/ports/games/xevil/files/patch-cmn::role.cpp 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-cmn::role.cpp 2012-05-27 06:57:48.000000000 +0900 @@ -1,15 +1,477 @@ ---- cmn/role.cpp.orig Wed Jan 19 12:54:34 2000 -+++ cmn/role.cpp Sat Oct 25 21:43:43 2003 -@@ -29,9 +29,10 @@ +--- cmn/role.cpp.orig 2012-05-27 06:52:30.000000000 +0900 ++++ cmn/role.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -29,9 +29,9 @@ #include "stdafx.h" -#include +#include -+using namespace std; #if X11 -#include -+#include ++#include #include #endif #if WIN32 +@@ -266,43 +266,39 @@ + + + void Role::error(const char *msg1,const char *msg2,const char *msg3) { +- ostrstream str; ++ stringstream str; + + if (msg2 == NULL) { +- str << msg1 << ends; ++ str << msg1; + } + else if (msg3 == NULL) { +- str << msg1 << msg2 << ends; ++ str << msg1 << msg2; + } + else { +- str << msg1 << msg2 << msg3 << ends; ++ str << msg1 << msg2 << msg3; + } + + // Call one argument version. +- _error(str.str()); +- +- delete str.str(); ++ _error(str.str().c_str()); + } + + + + void Role::message(const char *msg1,const char *msg2,const char *msg3) { +- ostrstream str; ++ stringstream str; + + if (msg2 == NULL) { +- str << msg1 << ends; ++ str << msg1; + } + else if (msg3 == NULL) { +- str << msg1 << msg2 << ends; ++ str << msg1 << msg2; + } + else { +- str << msg1 << msg2 << msg3 << ends; ++ str << msg1 << msg2 << msg3; + } + + // Call one argument version. +- _message(str.str()); +- +- delete str.str(); ++ _message(str.str().c_str()); + } + + +@@ -605,11 +601,11 @@ + // Display message that we are looking up IP address. + // Assumes that caller will call Client::connect_server after a turn or two, + // so the message will be displayed on the Ui. +- ostrstream str; +- str << "Looking up IP address for server " << serverName << ends; ++ stringstream str; ++ str << "Looking up IP address for server " << serverName; + // Display for a long time. +- errLocator->arena_message_enq(str.str(),NULL,1000000); +- errLocator->message_enq(Utils::strdup(str.str())); ++ errLocator->arena_message_enq(Utils::strdup(str.str().c_str()),NULL,1000000); ++ errLocator->message_enq(Utils::strdup(str.str().c_str())); + // Probably would be better to use Role::message(), but we want it to stay + // up for a long time. Should add argument to Role::message(). + +@@ -663,12 +659,10 @@ + } + } + if (n == CLIENT_PORT_TRIES) { +- ostrstream str; ++ stringstream str; + str << "Could not bind local UDP port to any of " +- << clientPortBase << "-" << (clientPortBase + CLIENT_PORT_TRIES - 1) +- << ends; +- error(str.str()); +- delete str.str(); ++ << clientPortBase << "-" << (clientPortBase + CLIENT_PORT_TRIES - 1); ++ error(str.str().c_str()); + return; + } + // cout << "UDP port seems to be" << client.sin_port << endl; +@@ -703,22 +697,19 @@ + + // Inform user of failed connection + if (!ok()) { +- strstream msg; ++ stringstream msg; + msg << "Could not connect to " << serverName << " on port " << +- port << "." << ends; +- error(msg.str()); +- delete(msg.str()); ++ port << "."; ++ error(msg.str().c_str()); + delete tcpOut; + return; + } + + // Inform user of successful connection +- strstream msg; ++ stringstream msg; + msg << hostName << " connected to " << serverName << " on port " << +- port << ends; +- message(msg.str()); +- delete msg.str(); +- ++ port; ++ message(msg.str().c_str()); + + // Create TCP and UDP streams. + tcpIn = new NetInStream(tcpSock,False); +@@ -967,11 +958,11 @@ + Role::_error(msg); + + if (errorLocator) { +- ostrstream str2; +- str2 << "ERROR: " << msg << ends; +- errorLocator->arena_message_enq(str2.str(),NULL,ROLE_FAILED_TIME); ++ stringstream str2; ++ str2 << "ERROR: " << msg; ++ errorLocator->arena_message_enq(Utils::strdup(str2.str().c_str()),NULL,ROLE_FAILED_TIME); + // Don't delete str2.str(), give memory to the Locator. +- errorLocator->message_enq(Utils::strdup(str2.str())); ++ errorLocator->message_enq(Utils::strdup(str2.str().c_str())); + } + #if WIN32 + // Only the client can afford to block on error messages. +@@ -986,11 +977,9 @@ + Role::_error(msg); + + if (errorLocator) { +- ostrstream str2; +- str2 << msg << ends; +- errorLocator->arena_message_enq(str2.str()); ++ errorLocator->arena_message_enq(Utils::strdup(msg)); + // Don't delete str2.str(), give memory to the Locator. +- errorLocator->message_enq(Utils::strdup(str2.str())); ++ errorLocator->message_enq(Utils::strdup(msg)); + } + } + +@@ -1256,10 +1245,9 @@ + if (turn > turnMax) { + turnMax = turn; + if (echoPingPong) { +- ostrstream str; +- str << "PONG the server with turn " << turnMax << ends; +- message(str.str()); +- delete str.str(); ++ stringstream str; ++ str << "PONG the server with turn " << turnMax; ++ message(str.str().c_str()); + } + // Tell server so it can free turn windows to send more data. + XETP::send_pong(udpOut,turnMax); +@@ -1365,10 +1353,9 @@ + } + } + else { +- ostrstream str; +- str << "No context for classId " << classId << ends; +- error(str.str()); +- delete str.str(); ++ stringstream str; ++ str << "No context for classId " << classId; ++ error(str.str().c_str()); + } + } + } +@@ -1582,9 +1569,9 @@ + return Utils::strdup(clientName); + } + +- ostrstream str; +- str << '\"' << intel->get_name() << "\"@" << clientName << ends; +- return str.str(); ++ stringstream str; ++ str << '\"' << intel->get_name() << "\"@" << clientName; ++ return Utils::strdup(str.str().c_str()); + } + + +@@ -1695,11 +1682,10 @@ + } + + #ifdef SKIP_MESSAGES +- ostrstream msg; ++ stringstream msg; + msg << "Average delay is " << avg << " out of " +- << delaysNum << " samples." << ends; ++ << delaysNum << " samples."; + server->message(msg.str()); +- delete msg.str(); + #endif + + #if 0 +@@ -1723,10 +1709,9 @@ + // server->error("Client has reached maximum skip value."); + // } + #ifdef SKIP_MESSAGES +- ostrstream msg; +- msg << "Increasing skip to " << skip << ends; ++ stringstream msg; ++ msg << "Increasing skip to " << skip; + server->message(msg.str()); +- delete msg.str(); + #endif + } + // We have moved back into our target range, can send more data now. +@@ -1734,10 +1719,9 @@ + skip--; + + #ifdef SKIP_MESSAGES +- ostrstream msg; +- msg << "Decreasing skip to " << skip << ends; ++ stringstream msg; ++ msg << "Decreasing skip to " << skip; + server->message(msg.str()); +- delete msg.str(); + #endif + } + +@@ -1777,7 +1761,7 @@ + + + +-Server::Server(Boolean lHuman,char *portName,LocatorP errLocator) { ++Server::Server(Boolean lHuman,const char *portName,LocatorP errLocator) { + // Hack, using errLocator for more than reporting errors. + errLocator->set_remember_deleted(True); + errLocator->set_remember_sounds(True); +@@ -1843,19 +1827,17 @@ + + // Give address to both the TCP and UDP sockets. + if (bind(tcpSock, (CMN_SOCKADDR *)&serverAddr, sizeof(serverAddr)) < 0) { +- ostrstream str; ++ stringstream str; + str << "Couldn't bind socket name to TCP socket on port " +- << port << "." << ends; +- error(str.str()); +- delete str.str(); ++ << port << "."; ++ error(str.str().c_str()); + return; + } + if (bind(udpSock, (CMN_SOCKADDR *)&serverAddr, sizeof(serverAddr)) < 0) { +- ostrstream str; ++ stringstream str; + str << "Couldn't bind socket name to UDP socket on port " +- << port << "." << ends; +- error(str.str()); +- delete str.str(); ++ << port << "."; ++ error(str.str().c_str()); + return; + } + +@@ -1868,10 +1850,9 @@ + assert(udpIn); + + // Message to server log. +- strstream msg; +- msg << "Set up server on port " << port << ends; +- message(msg.str()); +- delete(msg.str()); ++ stringstream msg; ++ msg << "Set up server on port " << port; ++ message(msg.str().c_str()); + + running = True; + } +@@ -1951,10 +1932,9 @@ + localHumanId = hId; + + // Log the human's name. +- strstream msg; +- msg << "Player 0 \"" << human->get_name() << '\"' << "@SERVER" << ends; +- message(msg.str()); +- delete(msg.str()); ++ stringstream msg; ++ msg << "Player 0 \"" << human->get_name() << '\"' << "@SERVER"; ++ message(msg.str().c_str()); + + return; + } +@@ -1985,12 +1965,11 @@ + + // Log all the players in the game, some code duplication for the + // local human. +- ostrstream str; ++ stringstream str; + char* fullName = cn->get_full_client_name(); +- str << "Player " << num << " " << fullName << ends; +- message(str.str()); ++ str << "Player " << num << " " << fullName; ++ message(str.str().c_str()); + delete fullName; +- delete str.str(); + + // Send assign_intel via TCP + OutStreamP out = cn->get_tcp_out_stream(); +@@ -2007,13 +1986,12 @@ + // anyway. + for (m = 0; m < connections.length() && m != n; m++) { + char* fullName = cn->get_full_client_name(); +- ostrstream str; +- str << fullName << " has joined the game" << ends; ++ stringstream str; ++ str << fullName << " has joined the game"; + delete fullName; + + OutStreamP out = cn->get_udp_out_stream(); +- XETP::send_arena_message(out,timeMS,str.str()); +- delete str.str(); ++ XETP::send_arena_message(out,timeMS,str.str().c_str()); + } + cn->creation_message_sent(); + } +@@ -2101,13 +2079,12 @@ + // Give the connection some slack when it is first starting up. + turn - cn->get_start_turn() >= MINIMUM_CUTOFF) { + char* fullName = cn->get_full_client_name(); +- ostrstream str; ++ stringstream str; + str << fullName + << " has not responded in " +- << diff << " turns. Disconnect." << ends; +- message(str.str()); ++ << diff << " turns. Disconnect."; ++ message(str.str().c_str()); + delete fullName; +- delete str.str(); + tooOld = True; + } + } +@@ -2147,11 +2124,10 @@ + diff == NO_ACTIVITY_WARN_2 || + diff == NO_ACTIVITY_WARN_3) { + if (echoPingPong) { +- ostrstream str; ++ stringstream str; + str << "Haven't heard from " << cn->get_client_name() +- << " in " << diff << " turns, sending PING." << ends; +- message(str.str()); +- delete str.str(); ++ << " in " << diff << " turns, sending PING."; ++ message(str.str().c_str()); + } + XETP::send_ping(cn->get_udp_out_stream()); + } +@@ -2311,7 +2287,11 @@ + for (m = 0; m < followers.length(); m++) { + PhysicalP q = (PhysicalP)followers.get(m); + netData = q->get_net_data(); +- assert(!netData->get_sent_flag()); ++ // This line was aborting network games, often in the pound scenario. ++ // Without it, the server seems to continue without error. ++ // I tried replacing it with a warning, but there is so much of it ++ // that it is nearly impossible to see anything else. -Brandon ++// assert(!netData->get_sent_flag()); + netData->set_sent_flag(True); + } + +@@ -2713,9 +2693,9 @@ + // Careful to set the propagate flag to False so the message doesn't get + // sent to the clients. + if (errorLocator) { +- ostrstream str2; +- str2 << "SERVER: " << msg << ends; +- errorLocator->arena_message_enq(str2.str(),NULL,ROLE_FAILED_TIME,False); ++ stringstream str2; ++ str2 << "SERVER: " << msg; ++ errorLocator->arena_message_enq(Utils::strdup(str2.str().c_str()),NULL,ROLE_FAILED_TIME,False); + // Don't delete str2.str(), give memory to the Locator. + + // Could do a regular message_enq(), but would have to deal with the +@@ -2728,10 +2708,9 @@ + void Server::display_chat_message(LocatorP l,const char* sender, + const char* msg) { + // Log the chat message, then let Role handle it. +- strstream logMsg; +- logMsg << '<' << sender << '>' << msg << ends; +- message(logMsg.str()); +- delete logMsg.str(); ++ stringstream logMsg; ++ logMsg << '<' << sender << '>' << msg; ++ message(logMsg.str().c_str()); + + Role::display_chat_message(l,sender,msg); + } +@@ -2851,12 +2830,11 @@ + udpAddr->sin_port = htons(udpPort); + + // Log the connection. +- strstream msg; ++ stringstream msg; + msg << clientName << + " connected (TCP port " << ntohs(tcpAddr.sin_port) << +- ", UDP port " << udpPort << ")" << ends; +- message(msg.str()); +- delete(msg.str()); ++ ", UDP port " << udpPort << ")"; ++ message(msg.str().c_str()); + + Connection* cn = + new Connection(this,errorLocator, +@@ -2874,7 +2852,7 @@ + XETP::send_reset(out,manager->get_game_style_type()); + + // Say hello to the new client. +- ostrstream greeting; ++ stringstream greeting; + greeting << "Welcome to " << hostName << "."; + + if (get_humans_num() == 1) { +@@ -2884,10 +2862,8 @@ + greeting << " There are now " + << get_humans_num() << " players."; + } +- greeting << ends; + int timeMS = quantaToMS(UI_ARENA_MESSAGE_TIME,manager); +- XETP::send_arena_message(out,timeMS,greeting.str()); +- delete greeting.str(); ++ XETP::send_arena_message(out,timeMS,greeting.str().c_str()); + + manager->humans_num_incremented(); + } +@@ -2918,18 +2894,16 @@ + Connection* cm = get_connection(m); + + char* fullName = cn->get_full_client_name(); +- ostrstream str; ++ stringstream str; + str << fullName << " has disconnected"; + if (intel) { + str << ", " << kills << " human kills"; + } +- str << ends; + XETP::send_arena_message(cm->get_udp_out_stream(), +- timeMS,str.str()); ++ timeMS,str.str().c_str()); + + + delete fullName; +- delete str.str(); + } + } + +@@ -3262,8 +3236,8 @@ + void Server::send_udp_server_pong(IGameManager* manager,LocatorP locator, + CMN_SOCKET udpSock, + CMN_SOCKADDR_IN* destAddr) { +- static char* unknownString = ""; +- static char* serverString = ""; ++ static const char* unknownString = ""; ++ static const char* serverString = ""; + + + // Temporary stream. diff -urN /usr/ports/games/xevil/files/patch-cmn::streams.cpp games/xevil/files/patch-cmn::streams.cpp --- /usr/ports/games/xevil/files/patch-cmn::streams.cpp 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-cmn::streams.cpp 2012-05-27 06:58:13.000000000 +0900 @@ -1,12 +1,35 @@ ---- cmn/streams.cpp.orig Wed Jan 19 12:54:32 2000 -+++ cmn/streams.cpp Sat Oct 25 21:44:08 2003 -@@ -31,7 +31,8 @@ +--- cmn/streams.cpp.orig 2012-05-27 06:52:30.000000000 +0900 ++++ cmn/streams.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -31,12 +31,13 @@ #include "utils.h" #include "neth.h" // needed for recv, send, recvfrom, sendto -#include +#include -+using namespace std; #include "streams.h" #include "xetp.h" // yuck, need this for XETP::versionStr + + ++using namespace std; + + Checksum GenericStream::compute_checksum(u_char *data,int len) { + Checksum c = 0; +@@ -205,7 +206,7 @@ + + + +-Boolean NetOutStream::write(void *buf,int size) { ++Boolean NetOutStream::write(const void *buf,int size) { + if (!isAlive) { + return False; + } +@@ -518,7 +519,7 @@ + + + +-Boolean UDPOutStream::write(void *buf,int size) { ++Boolean UDPOutStream::write(const void *buf,int size) { + if (!isAlive) { + return False; + } diff -urN /usr/ports/games/xevil/files/patch-cmn::utils.cpp games/xevil/files/patch-cmn::utils.cpp --- /usr/ports/games/xevil/files/patch-cmn::utils.cpp 2007-07-31 23:11:02.000000000 +0900 +++ games/xevil/files/patch-cmn::utils.cpp 2012-05-27 06:58:44.000000000 +0900 @@ -1,39 +1,84 @@ ---- cmn/utils.cpp.orig 2003-03-19 10:05:12.000000000 +0100 -+++ cmn/utils.cpp 2007-07-31 15:43:42.000000000 +0200 -@@ -30,16 +30,17 @@ +--- cmn/utils.cpp.orig 2012-05-27 06:52:30.000000000 +0900 ++++ cmn/utils.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -30,16 +30,16 @@ // Include Files #include "stdafx.h" -#include --#include --#include --#include --#include +#include -+#include -+#include -+#include + #include + #include + #include +-#include +#include -+using namespace std; #if WIN32 #include #endif #if X11 -#include -+#include ++#include #endif #ifdef WIN32 -@@ -605,7 +606,7 @@ +@@ -422,10 +422,8 @@ + + + char* Utils::get_OS_info() { +- ostrstream ret; +- +- + #ifdef WIN32 ++ stringstream ret; + OSVERSIONINFO osInfo; + osInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); + Boolean set = False; +@@ -465,12 +463,11 @@ + Utils::strcmp(osInfo.szCSDVersion," ")) { + ret << '(' << osInfo.szCSDVersion << ')'; + } +- ret << ends; + } + } + + if (!set) { +- ret << "Unknown Win32" << ends; ++ ret << "Unknown Win32"; + } + #endif + +@@ -494,20 +491,15 @@ + if (buffer[strLen - 1] == '\n') { + buffer[strLen - 1] = '\0'; + } +- ret << buffer << ends; +- set = True; ++ return strdup(buffer); + } + } + pclose(fp); + } + +- if (!set) { +- ret << "Unknown UNIX" << ends; +- } ++ return strdup("Unknown UNIX"); + #endif + +- +- return ret.str(); + } + + +@@ -605,7 +597,7 @@ // Not tested. out->write_int(len); for (int n = 0; n < len; n++) { - out->write_int((int)data[n]); -+ out->write_int((intptr_t)data[n]); ++ out->write_int((long)data[n]); } } -@@ -761,7 +762,7 @@ +@@ -761,7 +753,7 @@ private: @@ -42,12 +87,21 @@ /* MODIFIES: index */ /* EFFECTS: Internal helper function. Return the Bucket containing key or NULL if not found. Set index to the bucket list for key whether -@@ -944,7 +945,7 @@ +@@ -944,7 +936,7 @@ // Pretty crappy hash function, I know. // Careful if bucketsNum is a power of 2. int HashTable::defaultHash(void* key,int bucketsNum) { - return ((unsigned int)key) % bucketsNum; -+ return ((unsigned intptr_t)key) % bucketsNum; ++ return ((unsigned long)key) % bucketsNum; } +@@ -1024,7 +1016,7 @@ + #endif + + #if X11 +- cout << str << endl; ++ std::cout << str << std::endl; + #endif + } + diff -urN /usr/ports/games/xevil/files/patch-cmn::world.cpp games/xevil/files/patch-cmn::world.cpp --- /usr/ports/games/xevil/files/patch-cmn::world.cpp 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-cmn::world.cpp 2012-05-27 06:59:03.000000000 +0900 @@ -1,12 +1,19 @@ ---- cmn/world.cpp.orig Wed Jan 19 21:15:08 2000 -+++ cmn/world.cpp Sat Oct 25 21:45:40 2003 -@@ -35,7 +35,8 @@ +--- cmn/world.cpp.orig 2012-05-27 06:52:30.000000000 +0900 ++++ cmn/world.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -35,7 +35,7 @@ #endif // Include Files. -#include +#include -+using namespace std; #include "utils.h" #include "coord.h" +@@ -48,6 +48,7 @@ + // For PhysMover. + #include "actual.h" + ++using namespace std; + + // Defines. + #define HANGING_PERCENT 0.40 // The % of the edge hanging off the corner. diff -urN /usr/ports/games/xevil/files/patch-cmn::xetp.cpp games/xevil/files/patch-cmn::xetp.cpp --- /usr/ports/games/xevil/files/patch-cmn::xetp.cpp 2007-07-31 23:11:02.000000000 +0900 +++ games/xevil/files/patch-cmn::xetp.cpp 2012-05-27 06:59:22.000000000 +0900 @@ -1,24 +1,50 @@ ---- cmn/xetp.cpp.orig 2000-01-19 12:54:30.000000000 +0100 -+++ cmn/xetp.cpp 2007-07-31 15:51:31.000000000 +0200 -@@ -29,9 +29,10 @@ +--- cmn/xetp.cpp.orig 2012-05-27 06:52:30.000000000 +0900 ++++ cmn/xetp.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -29,9 +29,9 @@ #include "stdafx.h" -#include +#include -+using namespace std; #if X11 -#include -+#include ++#include #endif #if WIN32 #include -@@ -159,7 +160,7 @@ +@@ -53,6 +53,8 @@ + #include "xetp.h" + + ++using namespace std; ++ + + void XETP::check_sizes() { + XETPBasic::check_sizes(); +@@ -159,7 +161,7 @@ for (n = 0; n < physicals.length(); n++) { PhysicalP p = (PhysicalP)physicals.get(n); // computing object_length twice, but who cares. - _send_object(out,p,turn,(TickType)tickTypes.get(n), -+ _send_object(out,p,turn,(intptr_t)tickTypes.get(n), ++ _send_object(out,p,turn,(long)tickTypes.get(n), compute_object_length(p)); } +@@ -274,7 +276,7 @@ + + + +-void XETP::send_message(OutStreamP out,char *msg) { ++void XETP::send_message(OutStreamP out,const char *msg) { + assert(msg); + u_int len = strlen(msg); + +@@ -293,7 +295,7 @@ + + + +-void XETP::send_arena_message(OutStreamP out,int time,char *msg) { ++void XETP::send_arena_message(OutStreamP out,int time,const char *msg) { + assert(msg); + u_int len = sizeof(int) + // time + strlen(msg); // string body diff -urN /usr/ports/games/xevil/files/patch-cmn__coord.h games/xevil/files/patch-cmn__coord.h --- /usr/ports/games/xevil/files/patch-cmn__coord.h 1970-01-01 09:00:00.000000000 +0900 +++ games/xevil/files/patch-cmn__coord.h 2012-05-27 06:55:26.000000000 +0900 @@ -0,0 +1,11 @@ +--- cmn/coord.h.orig 2012-05-27 06:52:31.000000000 +0900 ++++ cmn/coord.h 2012-05-27 06:53:11.000000000 +0900 +@@ -619,7 +619,7 @@ + int enemiesInitial; // enemies on first level + int enemiesIncr; // this many more enemies each level + int enemiesMax; // maximum number of enemies (for levels) +- char *name; // of this difficulty level ++ const char *name; // of this difficulty level + }; + enum {DIFF_TRIVIAL,DIFF_NORMAL,DIFF_HARD,DIFF_BEND_OVER, + DIFFICULTY_LEVELS_NUM, DIFF_NONE=DIFFICULTY_LEVELS_NUM}; diff -urN /usr/ports/games/xevil/files/patch-cmn__intel.h games/xevil/files/patch-cmn__intel.h --- /usr/ports/games/xevil/files/patch-cmn__intel.h 1970-01-01 09:00:00.000000000 +0900 +++ games/xevil/files/patch-cmn__intel.h 2012-05-27 06:56:49.000000000 +0900 @@ -0,0 +1,83 @@ +--- cmn/intel.h.orig 2012-05-27 06:52:31.000000000 +0900 ++++ cmn/intel.h 2012-05-27 06:53:11.000000000 +0900 +@@ -123,7 +123,7 @@ + // Class Definitions. + class Intel { + public: +- Intel(WorldP w,LocatorP l,char *name, ++ Intel(WorldP w,LocatorP l,const char *name, + const IntelOptions *ops,ITmask opMask); + /* EFFECTS: Create a new intel with the options specified in opMakse that are + in ops. ops will never be referenced if opMask is ITnone. lives now +@@ -293,7 +293,7 @@ + // Simply buffers input from a user interface. + class Human: public Intel { + public: +- Human(WorldP w,LocatorP l,char *name,int lives, ++ Human(WorldP w,LocatorP l,const char *name,int lives, + int *sharedLives,ColorNum colorNum); + /* NOTE: Uses all default options. intelOptions should be meaningless for + a human. If "sharedLives" is non-null, ignore "lives" and share the lives. */ +@@ -346,7 +346,7 @@ + + class Machine: public Intel { + public: +- Machine(WorldP w,LocatorP l,char *name, ++ Machine(WorldP w,LocatorP l,const char *name, + const IntelOptions *ops,ITmask opMask); + + virtual IntelId get_master_intel_id(); +@@ -464,7 +464,7 @@ + + class Enemy: public Machine { + public: +- Enemy(WorldP w,LocatorP l,char *name, ++ Enemy(WorldP w,LocatorP l,const char *name, + const IntelOptions *ops,ITmask opMask); + + static void set_reflexes_time(int time) {reflexesTime = time;} +@@ -491,7 +491,7 @@ + + class Neutral: public Machine { + public: +- Neutral(WorldP w,LocatorP l,char *name, ++ Neutral(WorldP w,LocatorP l,const char *name, + const IntelOptions *ops,ITmask opMask); + + virtual Boolean is_enemy(); +@@ -502,7 +502,7 @@ + + class SealIntel: public Neutral { + public: +- SealIntel(WorldP w,LocatorP l,char *name,const Id &homeId); ++ SealIntel(WorldP w,LocatorP l,const char *name,const Id &homeId); + + virtual Boolean is_seal_intel(); + +@@ -522,7 +522,7 @@ + + class DoppelIntel: public Neutral { + public: +- DoppelIntel(WorldP w,LocatorP l,char *name, ++ DoppelIntel(WorldP w,LocatorP l,const char *name, + const IntelOptions *ops,ITmask opMask, + IntelP master = NULL); + +@@ -572,7 +572,7 @@ + // in choose_strategy() and go_get_em(). + class Pet: public DoppelIntel { + public: +- Pet(WorldP w,LocatorP l,char *name, ++ Pet(WorldP w,LocatorP l,const char *name, + const IntelOptions *ops,ITmask opMask, + IntelP master = NULL); + +@@ -583,7 +583,7 @@ + IT_WEAPON_{some dir}, or to come back to him if command is IT_WEAPON_CENTER. + This will also set p to be the new master. */ + +- static char *mode_string(int mode); ++ static const char *mode_string(int mode); + /* NOTE: For debugging. */ + + diff -urN /usr/ports/games/xevil/files/patch-cmn__locator.cpp games/xevil/files/patch-cmn__locator.cpp --- /usr/ports/games/xevil/files/patch-cmn__locator.cpp 1970-01-01 09:00:00.000000000 +0900 +++ games/xevil/files/patch-cmn__locator.cpp 2012-05-27 06:57:06.000000000 +0900 @@ -0,0 +1,10 @@ +--- cmn/locator.cpp.orig 2012-05-27 06:52:30.000000000 +0900 ++++ cmn/locator.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -50,6 +50,7 @@ + + #include "bitmaps/locator/locator.bitmaps" // for arrows + ++using namespace std; + + // When we reach this, start deleting objects. + #define OL_LIST_WARN ((int)(OL_LIST_MAX * 0.9)) diff -urN /usr/ports/games/xevil/files/patch-cmn__role.h games/xevil/files/patch-cmn__role.h --- /usr/ports/games/xevil/files/patch-cmn__role.h 1970-01-01 09:00:00.000000000 +0900 +++ games/xevil/files/patch-cmn__role.h 2012-05-27 06:57:59.000000000 +0900 @@ -0,0 +1,11 @@ +--- cmn/role.h.orig 2012-05-27 06:52:31.000000000 +0900 ++++ cmn/role.h 2012-05-27 06:53:11.000000000 +0900 +@@ -539,7 +539,7 @@ + + + public: +- Server(Boolean localHuman,char *portName,LocatorP); ++ Server(Boolean localHuman,const char *portName,LocatorP); + /* EFFECTS: Create a server that listens for connections on given port. + If NULL is passed in, use XETP::DEFAULT_PORT. */ + diff -urN /usr/ports/games/xevil/files/patch-cmn__streams.h games/xevil/files/patch-cmn__streams.h --- /usr/ports/games/xevil/files/patch-cmn__streams.h 1970-01-01 09:00:00.000000000 +0900 +++ games/xevil/files/patch-cmn__streams.h 2012-05-27 06:58:27.000000000 +0900 @@ -0,0 +1,29 @@ +--- cmn/streams.h.orig 2012-05-27 06:52:31.000000000 +0900 ++++ cmn/streams.h 2012-05-27 06:53:11.000000000 +0900 +@@ -97,7 +97,7 @@ + public: + OutStream(Boolean ownSock) : GenericStream(ownSock) {} + +- virtual Boolean write(void *buf,int size) = 0; ++ virtual Boolean write(const void *buf,int size) = 0; + /* EFFECTS: Write size number of bytes into buf. Return True if + successful. */ + +@@ -171,7 +171,7 @@ + + virtual Boolean alive(); + +- virtual Boolean write(void *buf,int size); ++ virtual Boolean write(const void *buf,int size); + + virtual void write_char(u_char); + +@@ -253,7 +253,7 @@ + + virtual void done_packet(); + +- virtual Boolean write(void *buf,int size); ++ virtual Boolean write(const void *buf,int size); + + void flush(); + diff -urN /usr/ports/games/xevil/files/patch-cmn__utils.h games/xevil/files/patch-cmn__utils.h --- /usr/ports/games/xevil/files/patch-cmn__utils.h 1970-01-01 09:00:00.000000000 +0900 +++ games/xevil/files/patch-cmn__utils.h 2012-05-27 06:58:52.000000000 +0900 @@ -0,0 +1,28 @@ +--- cmn/utils.h.orig 2012-05-27 06:52:31.000000000 +0900 ++++ cmn/utils.h 2012-05-27 06:53:11.000000000 +0900 +@@ -159,7 +159,7 @@ + + typedef int GameStyleType; + // Possible values of GameStyleType. +-enum {SCENARIOS,LEVELS_ONLY,KILL,DUEL,EXTENDED,TRAINING,LEVELS}; ++enum {SCENARIOS,LEVELS_ONLY,KILL,DUEL,EXTENDED,TRAINING,LEVELS,NUM_GAME_STYLES}; + + + +@@ -237,13 +237,13 @@ + /* EFFECTS: Wrapper for C library strcmp(). Return 0 if strings are the + same. */ + +- static char* strchr(const char* cs,int c) ++ static const char* strchr(const char* cs,int c) + {return ::strchr(cs,c);} + +- static char* strrchr(const char* cs,int c) ++ static const char* strrchr(const char* cs,int c) + {return ::strrchr(cs,c);} + +- static char* strstr(const char* cs,const char* ct) ++ static const char* strstr(const char* cs,const char* ct) + {return ::strstr(cs,ct);} + + static void strcpy(char* s,const char* ct) diff -urN /usr/ports/games/xevil/files/patch-cmn__xetp.h games/xevil/files/patch-cmn__xetp.h --- /usr/ports/games/xevil/files/patch-cmn__xetp.h 1970-01-01 09:00:00.000000000 +0900 +++ games/xevil/files/patch-cmn__xetp.h 2012-05-27 06:59:31.000000000 +0900 @@ -0,0 +1,14 @@ +--- cmn/xetp.h.orig 2012-05-27 06:52:31.000000000 +0900 ++++ cmn/xetp.h 2012-05-27 06:53:11.000000000 +0900 +@@ -83,9 +83,9 @@ + static void send_rooms_known(OutStreamP,const Rooms &, + int worldVersion,Boolean *map); + +- static void send_message(OutStreamP,char *msg); ++ static void send_message(OutStreamP,const char *msg); + +- static void send_arena_message(OutStreamP,int timeMS,char *msg); ++ static void send_arena_message(OutStreamP,int timeMS,const char *msg); + + static void send_command(OutStreamP,const IntelId &,ITcommand); + diff -urN /usr/ports/games/xevil/files/patch-cmn__xetp_basic.cpp games/xevil/files/patch-cmn__xetp_basic.cpp --- /usr/ports/games/xevil/files/patch-cmn__xetp_basic.cpp 1970-01-01 09:00:00.000000000 +0900 +++ games/xevil/files/patch-cmn__xetp_basic.cpp 2012-05-27 06:59:48.000000000 +0900 @@ -0,0 +1,11 @@ +--- cmn/xetp_basic.cpp.orig 2012-05-27 06:52:30.000000000 +0900 ++++ cmn/xetp_basic.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -33,7 +33,7 @@ + #include "xetp_basic.h" + + +-char *XETPBasic::versionStr = "XETP1.00"; ++const char *XETPBasic::versionStr = "XETP1.00"; + // 0.10 released with special RedHat version + // 0.12 for 2.0b5 + // 0.15 for 2.0b6 diff -urN /usr/ports/games/xevil/files/patch-cmn__xetp_basic.h games/xevil/files/patch-cmn__xetp_basic.h --- /usr/ports/games/xevil/files/patch-cmn__xetp_basic.h 1970-01-01 09:00:00.000000000 +0900 +++ games/xevil/files/patch-cmn__xetp_basic.h 2012-05-27 06:59:58.000000000 +0900 @@ -0,0 +1,11 @@ +--- cmn/xetp_basic.h.orig 2012-05-27 06:52:31.000000000 +0900 ++++ cmn/xetp_basic.h 2012-05-27 06:53:11.000000000 +0900 +@@ -52,7 +52,7 @@ + // All values are big-endian + enum {HEADER_LENGTH = 3}; // 8 + enum {VERSION_LENGTH = 8}; // streams.h depends on this value. +- static char *versionStr; ++ static const char *versionStr; + + // The ':' syntax gives the size in bytes of each component. :String means + // use Utils::string_read(), Utils::string_write(), etc. diff -urN /usr/ports/games/xevil/files/patch-x11::l_agreement_dlg.cpp games/xevil/files/patch-x11::l_agreement_dlg.cpp --- /usr/ports/games/xevil/files/patch-x11::l_agreement_dlg.cpp 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-x11::l_agreement_dlg.cpp 2012-05-27 07:04:12.000000000 +0900 @@ -1,12 +1,10 @@ ---- x11/l_agreement_dlg.cpp.orig Wed Jan 19 12:55:04 2000 -+++ x11/l_agreement_dlg.cpp Sat Oct 25 21:46:33 2003 -@@ -31,7 +31,8 @@ +--- x11/l_agreement_dlg.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ x11/l_agreement_dlg.cpp 2012-05-27 06:52:59.000000000 +0900 +@@ -31,7 +31,6 @@ #include } -#include -+#include -+using namespace std; #include "xdata.h" #include "panel.h" diff -urN /usr/ports/games/xevil/files/patch-x11::main.cpp games/xevil/files/patch-x11::main.cpp --- /usr/ports/games/xevil/files/patch-x11::main.cpp 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-x11::main.cpp 2012-05-27 07:00:44.000000000 +0900 @@ -1,12 +1,34 @@ ---- x11/main.cpp.orig Sat Mar 22 20:52:14 2003 -+++ x11/main.cpp Sat Oct 25 21:47:04 2003 -@@ -33,7 +33,8 @@ +--- x11/main.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ x11/main.cpp 2012-05-27 06:52:58.000000000 +0900 +@@ -25,6 +25,7 @@ + #include "utils.h" + + extern "C" { ++#include + #include + + #ifdef OPENWOUND_XOS_STRLEN_HACK +@@ -33,13 +34,13 @@ #include } -#include +#include -+using namespace std; #include "utils.h" #include "neth.h" + #include "game.h" + +- ++GameP g_game; + + class TurnStarter: public ITurnStarter { + public: +@@ -68,6 +69,7 @@ + Utils::seed_random(); + + GameP game = new Game(&argc,argv); ++ g_game = game; + + // assert (clock() != -1); + diff -urN /usr/ports/games/xevil/files/patch-x11::panel.cpp games/xevil/files/patch-x11::panel.cpp --- /usr/ports/games/xevil/files/patch-x11::panel.cpp 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-x11::panel.cpp 2012-05-27 07:00:55.000000000 +0900 @@ -1,14 +1,52 @@ ---- x11/panel.cpp.orig Sat Mar 22 20:50:44 2003 -+++ x11/panel.cpp Sat Oct 25 21:47:34 2003 -@@ -31,8 +31,9 @@ +--- x11/panel.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ x11/panel.cpp 2012-05-27 06:52:58.000000000 +0900 +@@ -31,13 +31,14 @@ #include #include } -#include -#include +#include -+#include -+using namespace std; ++#include #include "utils.h" #include "xdata.h" + #include "panel.h" + ++using namespace std; + + #define PANEL_BORDER 1 + #define PANEL_MARGAIN 2 +@@ -311,15 +312,14 @@ + + + void WritePanel::update_message() { +- ostrstream tmp; ++ stringstream tmp; + if (active) { +- tmp << prompt << value << "_" << ends; ++ tmp << prompt << value << "_"; + } + else { +- tmp << prompt << value << ends; ++ tmp << prompt << value; + } +- set_message(tmp.str()); +- delete tmp.str(); ++ set_message(tmp.str().c_str()); + } + + +@@ -524,9 +524,8 @@ + return; + } + +- ostrstream tmp; +- tmp << "CHAT <<" << value << "\nEnter to send, Esc to cancel." << ends; +- TextPanel::set_message(tmp.str()); +- delete tmp.str(); ++ stringstream tmp; ++ tmp << "CHAT <<" << value << "\nEnter to send, Esc to cancel."; ++ TextPanel::set_message(tmp.str().c_str()); + } + diff -urN /usr/ports/games/xevil/files/patch-x11::serverping.cpp games/xevil/files/patch-x11::serverping.cpp --- /usr/ports/games/xevil/files/patch-x11::serverping.cpp 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-x11::serverping.cpp 2012-05-27 07:12:24.000000000 +0900 @@ -1,14 +1,111 @@ ---- x11/serverping.cpp.orig Sat Mar 22 21:55:12 2003 -+++ x11/serverping.cpp Sat Oct 25 21:48:03 2003 -@@ -25,8 +25,9 @@ +--- x11/serverping.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ x11/serverping.cpp 2012-05-27 07:12:12.000000000 +0900 +@@ -25,14 +25,15 @@ // code and should be reasonably easy to compile on Windows. -#include -#include +#include -+#include -+using namespace std; ++#include #include "utils.h" #include "streams.h" #include "xetp_basic.h" + #include "neth.h" + #include "id.h" + ++using namespace std; + + + class ServerPing { +@@ -113,7 +114,7 @@ + + + char* sString = argv[argc - 1]; +- char* port = Utils::strchr(sString,':'); ++ const char* port = Utils::strchr(sString,':'); + // server:port + if (port) { + serverName = new char[port - sString + 1]; +@@ -140,10 +141,9 @@ + error("Error opening client UDP socket."); + } + +- ostrstream str; +- str << "Looking up IP address for server " << serverName << ends; +- message(str.str()); +- delete str.str(); ++ stringstream str; ++ str << "Looking up IP address for server " << serverName; ++ message(str.str().c_str()); + + // Create server address. + memset((void *)&serverAddr,'\0',sizeof(serverAddr)); +@@ -171,10 +171,9 @@ + client.sin_addr.s_addr = htonl(INADDR_ANY); + client.sin_port = htons((u_short)clientPort); + if (bind(udpSock,(CMN_SOCKADDR *)&client,sizeof(client)) < 0) { +- ostrstream str; +- str << "Could not bind local UDP port " << clientPort << ends; +- error(str.str()); +- delete str.str(); ++ stringstream str; ++ str << "Could not bind local UDP port " << clientPort; ++ error(str.str().c_str()); + return; + } + +@@ -197,11 +196,10 @@ + // Send "count" number of SERVER_PINGs. + for (int tries = 0; tries < count; tries++) { + // Send the ping. +- ostrstream msg; ++ stringstream msg; + msg << "Sending XETP::SERVER_PING to " +- << serverName << ':' << serverPort << ends; +- message(msg.str()); +- delete msg.str(); ++ << serverName << ':' << serverPort; ++ message(msg.str().c_str()); + XETPBasic::send_server_ping(udpOut); + // Don't buffer the ping. + udpOut->flush(); +@@ -248,11 +246,10 @@ + } + + // If we get here, we failed to reach the server. +- ostrstream msg; ++ stringstream msg; + msg << "No return from " << serverName << ':' << serverPort << " after " +- << count << " tries." << ends; +- error(msg.str()); +- delete msg.str(); ++ << count << " tries."; ++ error(msg.str().c_str()); + } + + +@@ -271,12 +268,9 @@ + + + void ServerPing::error(const char* msg1,const char* msg2) { +- ostrstream str; +- str << msg1 << msg2 << ends; +- error(str.str()); +- +- // Will never get here, but WTF. +- delete str.str(); ++ stringstream str; ++ str << msg1 << msg2; ++ error(str.str().c_str()); + } + + +@@ -355,6 +349,7 @@ + + + ++int + main(int argc,char** argv) { + ServerPing ping(argc,argv); + ping.go(); diff -urN /usr/ports/games/xevil/files/patch-x11::ui.cpp games/xevil/files/patch-x11::ui.cpp --- /usr/ports/games/xevil/files/patch-x11::ui.cpp 2007-07-31 23:11:02.000000000 +0900 +++ games/xevil/files/patch-x11::ui.cpp 2012-05-27 07:01:22.000000000 +0900 @@ -1,131 +1,377 @@ ---- x11/ui.cpp.orig 2003-03-19 10:05:38.000000000 +0100 -+++ x11/ui.cpp 2007-07-31 16:05:35.000000000 +0200 -@@ -40,8 +40,9 @@ +--- x11/ui.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ x11/ui.cpp 2012-05-27 06:52:59.000000000 +0900 +@@ -30,6 +30,7 @@ + #include "utils.h" + extern "C" { + #include ++#include + #include + #ifdef OPENWOUND_XOS_STRLEN_HACK + #define _strings_h +@@ -40,8 +41,8 @@ #include } -#include -#include +#include -+#include -+using namespace std; ++#include #include "coord.h" #include "area.h" -@@ -930,7 +931,7 @@ +@@ -59,6 +60,7 @@ + #include "panel.h" + #include "viewport.h" + ++using namespace std; + + // Defines + #define DEFAULT_BIG_FONT_NAME "-*-helvetica-*-r-*-*-18-*-*-*-*-*-*-*" +@@ -226,20 +228,6 @@ + for (int d = 0; d < xvars.dpyMax; d++) { + xvars.alloc_named_color(d,"steelblue"); + } +- +- // Run the license agreement. +- // Note: The license agreement will not be run if the user runs +- // "xevil -server -no_ui". +- // Must be after init_x(). +- Boolean reduceDraw = Viewport::get_reduce_draw(); +- Boolean accepted = +- LAgreement::check_accepted(largeViewport,smoothScroll,reduceDraw, +- xvars,0,argc,argv); +- Viewport::set_reduce_draw(reduceDraw); +- if (!accepted) { +- // Should probably let game.cpp call exit. +- exit(1); +- } + + // Ick, this should be in init_x(), but we need to call init_x() before + // running the License Agreement to get this information. +@@ -461,21 +449,27 @@ + } + } + +- if (down) { +- // Restart game if space pressed. +- // This doesn't always work, the otherInput flag might get cleared +- // before it is used. +- if (keycode == XKeysymToKeycode(xvars.dpy[dpyNum],XK_space)) { +- otherInput = True; ++ // If function keys are assigned to movement, weapon or item functions, ++ // then this code will not get executed. ++ if (down && !found) { ++ // Pause Game ++ if (keycode == XKeysymToKeycode(xvars.dpy[dpyNum],XK_F1)) { ++ settingsChanges |= UIpause; ++ settings.pause = True; + } +- +- if (!found) { +- // Undocumented pause key feature. +- // Don't do pause if XK_F1 is used for something else. +- if (keycode == XKeysymToKeycode(xvars.dpy[dpyNum],XK_F1)) { +- settingsChanges |= UIpause; +- settings.pause = True; +- } ++ // New Game ++ if (keycode == XKeysymToKeycode(xvars.dpy[dpyNum],XK_F2)) { ++ settingsChanges |= UInewGame; ++ } ++ // Change game style ++ if (keycode == XKeysymToKeycode(xvars.dpy[dpyNum],XK_F3)) { ++ settingsChanges |= UIstyle; ++ settings.style = (settings.style + 1) % NUM_GAME_STYLES; ++ ++ // Avoid the LEVELS_ONLY option. There was no button before ++ // I got here. Avoiding the ability to set it until I ++ // discover why ++ settings.style += (settings.style == LEVELS_ONLY) ? 1 : 0; + } + } + } +@@ -865,7 +859,7 @@ + char *msg; + if (msg = locator->message_deq()) { + set_message(msg); +- delete msg; ++ delete [] msg; + messageTimer.set(MESSAGE_TIME); + } + } +@@ -930,7 +924,7 @@ UiP ui = (UiP)closure; ui->settingsChanges |= UIenemiesRefill; // SGI compiler says you can't cast void* to Boolean. - Boolean val = (Boolean)(int)value; -+ Boolean val = (Boolean)(intptr_t)value; ++ Boolean val = (Boolean)(long)value; ui->settings.enemiesRefill = val; } -@@ -939,7 +940,7 @@ +@@ -939,7 +933,7 @@ void Ui::menu_controls_CB(void* value,Viewport* vPort,void* closure) { UiP ui = (UiP)closure; int dpyNum = vPort->get_dpy_num(); - Boolean val = (Boolean)(int)value; -+ Boolean val = (Boolean)(intptr_t)value; ++ Boolean val = (Boolean)(long)value; if (val) { XMapWindow(ui->xvars.dpy[dpyNum],ui->xdata.controls[dpyNum]); } -@@ -955,7 +956,7 @@ +@@ -955,13 +949,13 @@ Viewport* vPort,void* closure) { UiP ui = (UiP)closure; int dpyNum = vPort->get_dpy_num(); - Boolean active = (Boolean)(int)value; -+ Boolean active = (Boolean)(intptr_t)value; ++ Boolean active = (Boolean)(long)value; if (active) { ui->lControls[dpyNum].input = ui->lControls[dpyNum].key = -@@ -994,7 +995,7 @@ + ui->lControls[dpyNum].which = 0; + +- ostrstream str; ++ stringstream str; + str << "There are 2 sets of controls for the players on the right and" + << "\n" + << "left sides of the keyboard, respectively." << "\n" +@@ -979,10 +973,9 @@ + << " player enter the " + << (ui->lControls[dpyNum].which ? "second" : "first") + << " key for <" << ui->keysNames[ui->lControls[dpyNum].key] +- << ">." << ends; ++ << ">."; + +- ui->learnControls[dpyNum]->set_message(str.str()); +- delete str.str(); ++ ui->learnControls[dpyNum]->set_message(str.str().c_str()); + XMapWindow(ui->xvars.dpy[dpyNum],ui->xdata.learnControls[dpyNum]); + } + else { +@@ -994,7 +987,7 @@ void Ui::menu_scenarios_CB(void* value,Viewport*,void* closure) { UiP ui = (UiP)closure; - Boolean val = (Boolean)(int)value; -+ Boolean val = (Boolean)(intptr_t)value; ++ Boolean val = (Boolean)(long)value; if (val) { ui->settingsChanges |= UIstyle; ui->settings.style = SCENARIOS; -@@ -1005,7 +1006,7 @@ +@@ -1005,7 +998,7 @@ void Ui::menu_levels_CB(void* value,Viewport*,void* closure) { UiP ui = (UiP)closure; - Boolean val = (Boolean)(int)value; -+ Boolean val = (Boolean)(intptr_t)value; ++ Boolean val = (Boolean)(long)value; if (val) { ui->settingsChanges |= UIstyle; ui->settings.style = LEVELS; -@@ -1016,7 +1017,7 @@ +@@ -1016,7 +1009,7 @@ void Ui::menu_kill_CB(void* value,Viewport*,void* closure) { UiP ui = (UiP)closure; - Boolean val = (Boolean)(int)value; -+ Boolean val = (Boolean)(intptr_t)value; ++ Boolean val = (Boolean)(long)value; if (val) { ui->settingsChanges |= UIstyle; ui->settings.style = KILL; -@@ -1027,7 +1028,7 @@ +@@ -1027,7 +1020,7 @@ void Ui::menu_duel_CB(void* value,Viewport*,void* closure) { UiP ui = (UiP)closure; - Boolean val = (Boolean)(int)value; -+ Boolean val = (Boolean)(intptr_t)value; ++ Boolean val = (Boolean)(long)value; if (val) { ui->settingsChanges |= UIstyle; ui->settings.style = DUEL; -@@ -1038,7 +1039,7 @@ +@@ -1038,7 +1031,7 @@ void Ui::menu_extended_CB(void* value,Viewport*,void* closure) { UiP ui = (UiP)closure; - Boolean val = (Boolean)(int)value; -+ Boolean val = (Boolean)(intptr_t)value; ++ Boolean val = (Boolean)(long)value; if (val) { ui->settingsChanges |= UIstyle; ui->settings.style = EXTENDED; -@@ -1049,7 +1050,7 @@ +@@ -1049,7 +1042,7 @@ void Ui::menu_training_CB(void* value,Viewport*,void* closure) { UiP ui = (UiP)closure; - Boolean val = (Boolean)(int)value; -+ Boolean val = (Boolean)(intptr_t)value; ++ Boolean val = (Boolean)(long)value; if (val) { ui->settingsChanges |= UIstyle; ui->settings.style = TRAINING; -@@ -1070,7 +1071,7 @@ +@@ -1070,7 +1063,7 @@ void Ui::menu_cooperative_CB(void* value,Viewport*,void* closure) { UiP ui = (UiP)closure; ui->settingsChanges |= UIcooperative; - Boolean val = (Boolean)(int)value; -+ Boolean val = (Boolean)(intptr_t)value; ++ Boolean val = (Boolean)(long)value; ui->settings.cooperative = val; } -@@ -1079,7 +1080,7 @@ +@@ -1079,7 +1072,7 @@ void Ui::menu_help_CB(void* value,Viewport* vPort,void* closure) { UiP ui = (UiP)closure; int dpyNum = vPort->get_dpy_num(); - Boolean active = (Boolean)(int)value; -+ Boolean active = (Boolean)(intptr_t)value; ++ Boolean active = (Boolean)(long)value; if (active) { XMapWindow(ui->xvars.dpy[dpyNum],ui->xdata.help[dpyNum]); -@@ -1094,7 +1095,7 @@ +@@ -1094,7 +1087,7 @@ void Ui::status_weapon_CB(void* value,Viewport* vPort,void*) { // Some mouse controls. // UiP ui = (UiP)closure; - int button = (int)value; -+ intptr_t button = (intptr_t)value; ++ long button = (long)value; switch (button) { case Button1: -@@ -1113,7 +1114,7 @@ +@@ -1113,7 +1106,7 @@ void Ui::status_item_CB(void* value,Viewport* vPort,void*) { // UiP ui = (UiP)closure; - int button = (int)value; -+ intptr_t button = (intptr_t)value; ++ long button = (long)value; switch (button) { case Button1: +@@ -1167,14 +1160,14 @@ + return; + } + +- ostrstream str; ++ stringstream str; + str << (ui->lControls[dpyNum].input ? "Left" : "Right") + << " player: The " + << (ui->lControls[dpyNum].which ? "second" : "first") << " key for <" + << ui->keysNames[ui->lControls[dpyNum].key] << "> is " + << XKeysymToString(XKeycodeToKeysym(ui->xvars.dpy[dpyNum], + event->xkey.keycode,0)) +- << "." << "\n" << "\n"; ++ << ".\n\n"; + ui->keycodes[dpyNum][ui->lControls[dpyNum].input] + [ui->lControls[dpyNum].key][ui->lControls[dpyNum].which] = + event->xkey.keycode; +@@ -1222,21 +1215,18 @@ + << " player enter the " + << (ui->lControls[dpyNum].which ? "second" : "first") + << " key for <" << keysNames[ui->lControls[dpyNum].key] +- << ">." << ends; ++ << ">."; + + // Add message in front of str.str(). +- ostrstream fullStr; ++ stringstream fullStr; + if (ui->lControls[dpyNum].input == UI_KEYS_LEFT) { + fullStr << "You may dismiss this dialog now if you only want to" << "\n" +- << "set the controls for one player." +- << "\n" << "\n"; ++ << "set the controls for one player.\n\n"; + } +- fullStr << str.str() << ends; +- delete str.str(); ++ fullStr << str.str(); + + +- ui->learnControls[dpyNum]->set_message(fullStr.str()); +- delete fullStr.str(); ++ ui->learnControls[dpyNum]->set_message(fullStr.str().c_str()); + + ui->controls_redraw(dpyNum); + } +@@ -1537,7 +1527,7 @@ + Line::set_text_columns(HELP_COLS); + Page page(NULL,helpMessage); + const PtrList& lines = page.get_lines(); +- ostrstream message; ++ stringstream message; + for (int n = 0; n < lines.length(); n++) { + Line* line = (Line*)lines.get(n); + char* text = line->alloc_text(); +@@ -1545,7 +1535,6 @@ + message << text << '\n'; + delete [] text; + } +- message << ends; + + + for (int dpyNum = 0; dpyNum < xvars.dpyMax; dpyNum++) { +@@ -1564,10 +1553,8 @@ + new TextPanel(dpyNum,xvars,xdata.help[dpyNum],pos,size); + assert(help[dpyNum]); + +- help[dpyNum]->set_message(message.str()); ++ help[dpyNum]->set_message(message.str().c_str()); + } // dpyNum +- +- delete message.str(); + } + + +@@ -1621,7 +1608,7 @@ + // Loop through all keys. + for (int n = 0; n < UI_KEYS_MAX; n++) { + // String for right side. +- strstream str0; ++ stringstream str0; + str0 << keysNames[n] << ": " << XKeysymToString(keymaps[0][n][0][0]); + if (keymaps[0][n][0][1] && strlen(XKeysymToString(keymaps[0][n][0][1]))) + str0 << ", " << XKeysymToString(keymaps[0][n][0][1]); +@@ -1631,10 +1618,9 @@ + && strlen(XKeysymToString(keymaps[0][n][1][1]))) + str0 << ", " << XKeysymToString(keymaps[0][n][1][1]); + } +- str0 << ends; + + // String for left side. +- strstream str1; ++ stringstream str1; + str1 << keysNames[n] << ": " << XKeysymToString(keymaps[1][n][0][0]); + if (keymaps[1][n][0][1] && strlen(XKeysymToString(keymaps[1][n][0][1]))) { + str1 << ", " << XKeysymToString(keymaps[1][n][0][1]); +@@ -1645,7 +1631,6 @@ + && strlen(XKeysymToString(keymaps[1][n][1][1]))) + str1 << ", " << XKeysymToString(keymaps[1][n][1][1]); + } +- str1 << ends; + + // Draw key on left side. + if (n != IT_CHAT) { // Chat meaningless for left player. +@@ -1653,16 +1638,14 @@ + xvars.fontSize[dpyNum].width, + xvars.font[dpyNum]->max_bounds.ascent + + p * xvars.fontSize[dpyNum].height, +- str1.str(),strlen(str1.str())); ++ str1.str().c_str(),str1.str().length()); + } + // Draw on right side. + XDrawString(xvars.dpy[dpyNum],xdata.controls[dpyNum],xvars.gc[dpyNum], + xvars.fontSize[dpyNum].width * (CONTROLS_COLS / 2 + 1), + xvars.font[dpyNum]->max_bounds.ascent + + (p++) * xvars.fontSize[dpyNum].height, +- str0.str(),strlen(str0.str())); +- delete str0.str(); +- delete str1.str(); ++ str0.str().c_str(),str0.str().length()); + } + p++; + +@@ -1693,7 +1676,7 @@ + + + +-char *Ui::keysNames[UI_KEYS_MAX] = { ++const char *Ui::keysNames[UI_KEYS_MAX] = { + "center", + "right", + "down_right", +@@ -1752,7 +1735,7 @@ + + + +-char* Ui::helpMessage = ++const char* Ui::helpMessage = + "For full instructions, including NETWORK PLAY, see " + "http://www.xevil.com/docs/instructions.html\n" + "\n" diff -urN /usr/ports/games/xevil/files/patch-x11::viewport.cpp games/xevil/files/patch-x11::viewport.cpp --- /usr/ports/games/xevil/files/patch-x11::viewport.cpp 2007-07-31 23:11:02.000000000 +0900 +++ games/xevil/files/patch-x11::viewport.cpp 2012-05-27 07:01:46.000000000 +0900 @@ -1,21 +1,294 @@ ---- x11/viewport.cpp.orig 2000-01-19 12:54:14.000000000 +0100 -+++ x11/viewport.cpp 2007-07-31 15:59:37.000000000 +0200 -@@ -44,7 +44,8 @@ +--- x11/viewport.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ x11/viewport.cpp 2012-05-27 06:52:59.000000000 +0900 +@@ -44,8 +44,9 @@ #include #include } -#include -+#include -+using namespace std; ++#include ++using namespace std; #define TICK_BORDER_WIDTH 5 // border width big enough for a tick mark. -@@ -1632,7 +1633,7 @@ + #define TICK_WIDTH 3 +@@ -60,14 +61,14 @@ + #define COL_SHIFT 4 + + // Number of characters across for each menu button. +-#define QUIT_LINE_LENGTH 5 +-#define NEW_GAME_LINE_LENGTH 9 ++#define QUIT_LINE_LENGTH 4 ++#define NEW_GAME_LINE_LENGTH 13 + #define HUMANS_NUM_LINE_LENGTH 9 + #define ENEMIES_NUM_LINE_LENGTH 11 + #define ENEMIES_REFILL_LINE_LENGTH 13 + #define CONTROLS_LINE_LENGTH 13 + #define LEARN_CONTROLS_LINE_LENGTH 12 +-#define STYLE_LINE_LENGTH 11 ++#define STYLE_LINE_LENGTH 16 + #define SCENARIOS_LINE_LENGTH 9 + #define LEVELS_LINE_LENGTH 6 + #define KILL_LINE_LENGTH 16 +@@ -1056,20 +1057,18 @@ + + void Viewport::set_menu_humans_num(int val) { + assert(menusNum > menuHumansNum); +- ostrstream str; +- str << val << ends; +- ((WritePanel *)menus[menuHumansNum])->set_value(str.str()); +- delete str.str(); ++ stringstream str; ++ str << val; ++ ((WritePanel *)menus[menuHumansNum])->set_value(str.str().c_str()); + } + + + + void Viewport::set_menu_enemies_num(int val) { + assert(menusNum > menuEnemiesNum); +- ostrstream str; +- str << val << ends; +- ((WritePanel *)menus[menuEnemiesNum])->set_value(str.str()); +- delete str.str(); ++ stringstream str; ++ str << val; ++ ((WritePanel *)menus[menuEnemiesNum])->set_value(str.str().c_str()); + } + + +@@ -1128,10 +1127,9 @@ + + void Viewport::set_quanta(Quanta quanta) { + assert(menusNum > menuQuanta); +- ostrstream str; +- str << quanta << ends; +- ((WritePanel *)menus[menuQuanta])->set_value(str.str()); +- delete str.str(); ++ stringstream str; ++ str << quanta; ++ ((WritePanel *)menus[menuQuanta])->set_value(str.str().c_str()); + } + + +@@ -1144,33 +1142,27 @@ + + + void Viewport::set_humans_playing(int val) { +- ostrstream msg; ++ stringstream msg; + if (val == 1) { +- msg << "1 Human" << ends; ++ msg << "1 Human"; + } + else { +- msg << val << " Humans" << ends; ++ msg << val << " Humans"; + } +- char *msg_str = msg.str(); +- +- humansPlaying->set_message(msg_str); +- delete msg_str; ++ humansPlaying->set_message(msg.str().c_str()); + } + + + + void Viewport::set_enemies_playing(int val) { +- ostrstream msg; ++ stringstream msg; + if (val == 1) { +- msg << "1 Enemy" << ends; ++ msg << "1 Enemy"; + } + else { +- msg << val << " Enemies" << ends; ++ msg << val << " Enemies"; + } +- char *msg_str = msg.str(); +- +- enemiesPlaying->set_message(msg_str); +- delete msg_str; ++ enemiesPlaying->set_message(msg.str().c_str()); + } + + +@@ -1632,7 +1624,7 @@ // Would be much better to put the radio-button logic in the Panel classes. if (pClosure->radio) { // SGI compiler says you can't cast void* to Boolean. - Boolean bValue = (Boolean)(int)value; -+ Boolean bValue = (Boolean)(intptr_t)value; ++ Boolean bValue = (Boolean)(long)value; if (!bValue) { ((TogglePanel*)panel)->set_value(True); } +@@ -1701,7 +1693,7 @@ + pos.y += xvars.fontSize[dpyNum].height; + + for (int n = 0; n < DIFFICULTY_LEVELS_NUM; n++) { +- ostrstream str; ++ stringstream str; + str << "[" << n; + if (n == DIFF_NORMAL) { + str << ",space] "; +@@ -1709,10 +1701,9 @@ + else { + str << "] "; + } +- str << difficultyLevels[n].name << ends; ++ str << difficultyLevels[n].name; + pos.y += xvars.fontSize[dpyNum].height; +- draw_string(pos,str.str()); +- delete str.str(); ++ draw_string(pos,str.str().c_str()); + } + + XSetForeground(xvars.dpy[dpyNum],xvars.gc[dpyNum], +@@ -1733,7 +1724,7 @@ + + + +-void Viewport::draw_string(const Pos &pos,char *msg) { ++void Viewport::draw_string(const Pos &pos,const char *msg) { + XDrawString(xvars.dpy[dpyNum],arena, + xvars.gc[dpyNum], + pos.x,pos.y + xvars.font[dpyNum]->max_bounds.ascent, +@@ -1930,7 +1921,7 @@ + new ButtonPanel(dpyNum,xvars,toplevel, + pos,newGameUnit, + Viewport::panel_callback,panelClosures.get(menuNewGame), +- "New Game"); ++ "New Game (F2)"); + assert(p); + p->set_background(menuBg,False); + pos.x += newGameUnit.width; +@@ -2016,7 +2007,7 @@ + new TextPanel(dpyNum,xvars,toplevel, + pos,styleUnit, + NULL,NULL, +- "Game style:"); ++ "Game style: (F3)"); + assert(p); + // p->set_background(menuBg,False); + pos.x += styleUnit.width; +@@ -2194,33 +2185,24 @@ + } + + const IntelStatus *status = intel->get_intel_status(); ++ statuses[statusName]->set_message(status->name); ++ ++ statuses[statusClassName]->set_message(status->className); + +- ostrstream name; +- name << status->name << ends; +- statuses[statusName]->set_message(name.str()); +- delete name.str(); +- +- ostrstream className; +- className << status->className << ends; +- statuses[statusClassName]->set_message(className.str()); +- delete className.str(); +- +- ostrstream health; ++ stringstream health; + if (status->health == -1) { +- health << "Dead" << ends; ++ health << "Dead"; + } + else { +- health << status->health << " Health" << ends; ++ health << status->health << " Health"; + } +- statuses[statusHealth]->set_message(health.str()); +- delete health.str(); ++ statuses[statusHealth]->set_message(health.str().c_str()); + +- ostrstream mass; +- mass << status->mass << " Mass" << ends; +- statuses[statusMass]->set_message(mass.str()); +- delete mass.str(); ++ stringstream mass; ++ mass << status->mass << " Mass"; ++ statuses[statusMass]->set_message(mass.str().c_str()); + +- ostrstream weapon; ++ stringstream weapon; + if (status->weaponClassId == A_None) { + weapon << "No Weapon"; + } +@@ -2230,62 +2212,56 @@ + if (status->ammo != PH_AMMO_UNLIMITED) { + weapon << " (" << status->ammo << ")"; + } +- weapon << ends; + statuses[statusWeapon]-> + set_foreground(status->weaponReady ? + xvars.green[dpyNum] : xvars.red[dpyNum],False); +- statuses[statusWeapon]->set_message(weapon.str()); +- delete weapon.str(); ++ statuses[statusWeapon]->set_message(weapon.str().c_str()); + +- ostrstream item; ++ stringstream item; + if (status->itemClassId == A_None) { + item << "No Item"; + } + else { + item << status->item << " (" << status->itemCount << ")"; + } +- item << ends; +- statuses[statusItem]->set_message(item.str()); +- delete item.str(); ++ statuses[statusItem]->set_message(item.str().c_str()); + +- ostrstream livesHKills; ++ stringstream livesHKills; + if (styleInfo->get_game_style_type() == EXTENDED) { + // Takes soups into account. + livesHKills << (status->humanKills - status->soups) +- << " Human Kills" << ends; ++ << " Human Kills"; + } + else { + if (status->lives == IT_INFINITE_LIVES) { + // Does this case ever happen? I don't think so. +- livesHKills << "Unlimited Lives" << ends; ++ livesHKills << "Unlimited Lives"; + } + else { + if (status->lives == 1) { +- livesHKills << "1 Life" << ends; ++ livesHKills << "1 Life"; + } + else { +- livesHKills << status->lives << " Lives" << ends; ++ livesHKills << status->lives << " Lives"; + } + } + } +- statuses[statusLivesHKills]->set_message(livesHKills.str()); +- delete livesHKills.str(); ++ statuses[statusLivesHKills]->set_message(livesHKills.str().c_str()); + +- ostrstream killsMKills; ++ stringstream killsMKills; + if (styleInfo->get_game_style_type() == EXTENDED) { +- killsMKills << status->enemyKills << " Machine Kills" << ends; ++ killsMKills << status->enemyKills << " Machine Kills"; + } + else { + int kills = status->humanKills + status->enemyKills; + if (kills == 1) { +- killsMKills << "1 Kill" << ends; ++ killsMKills << "1 Kill"; + } + else { +- killsMKills << kills << " Kills" << ends; ++ killsMKills << kills << " Kills"; + } + } +- statuses[statusKillsMKills]->set_message(killsMKills.str()); +- delete killsMKills.str(); ++ statuses[statusKillsMKills]->set_message(killsMKills.str().c_str()); + } + + diff -urN /usr/ports/games/xevil/files/patch-x11::xdata.cpp games/xevil/files/patch-x11::xdata.cpp --- /usr/ports/games/xevil/files/patch-x11::xdata.cpp 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/files/patch-x11::xdata.cpp 2012-05-27 07:02:06.000000000 +0900 @@ -1,12 +1,101 @@ ---- x11/xdata.cpp.orig Wed Jan 19 12:54:14 2000 -+++ x11/xdata.cpp Sat Oct 25 21:49:26 2003 -@@ -30,7 +30,8 @@ +--- x11/xdata.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ x11/xdata.cpp 2012-05-27 06:52:59.000000000 +0900 +@@ -1,4 +1,5 @@ + /* ++ * WK - note to self - search for xpmcreate + * XEvil(TM) Copyright (C) 1994,2000 Steve Hardt and Michael Judge + * http://www.xevil.com + * satan@xevil.com +@@ -30,11 +31,12 @@ #include "xdata.h" #include "area.h" -#include +#include -+using namespace std; #include #include #include + ++using namespace std; + + + // Means always allocate some color, even if it's really, really bad. +@@ -47,9 +49,16 @@ + int dpyNum,const Size& size, + const char* title, + long eventMask) { ++ ++ // Get Size of screen, so we can center Window ++ XWindowAttributes root_window_attributes; ++ XGetWindowAttributes(dpy[dpyNum],root[dpyNum], &root_window_attributes); ++ int left = (root_window_attributes.width - size.width) / 2; ++ int top = (root_window_attributes.height - size.height) / 3; ++ + // Creates with 0 border width. + Window toplevel = +- XCreateSimpleWindow(dpy[dpyNum],root[dpyNum],0,0, ++ XCreateSimpleWindow(dpy[dpyNum],root[dpyNum],left,top, + size.width,size.height, + 0,windowBorder[dpyNum], + windowBg[dpyNum]); +@@ -90,7 +99,9 @@ + + XClassHint class_hints; + class_hints.res_name = argv[0]; +- class_hints.res_class = "XEvil"; ++ ++ static char res_class[] = "XEvil"; ++ class_hints.res_class = res_class; + + XSetWMProperties(dpy[dpyNum],toplevel, + &windowName,&iconName,argv,argc, +@@ -185,14 +196,14 @@ + + + Boolean Xvars::load_pixmap(Drawable* pixmap,Drawable* mask, +- int dpyNum,char** xpmBits) { ++ int dpyNum, const char** xpmBits) { + return load_pixmap(pixmap,mask,dpyNum,xpmBits,is_stretched()); + } + + + + Boolean Xvars::load_pixmap(Drawable* pixmap,Drawable* mask, +- int dpyNum,char** xpmBits,Boolean fullSize) { ++ int dpyNum, const char** xpmBits,Boolean fullSize) { + // Just load XPM as is. + if (fullSize) { + XpmAttributes attr; +@@ -200,9 +211,9 @@ + attr.closeness = XPM_CLOSENESS; + attr.alloc_close_colors = True; + +- int val = ++ int val = + XpmCreatePixmapFromData(dpy[dpyNum],root[dpyNum], +- xpmBits, ++ const_cast (xpmBits), + pixmap,mask, + &attr); + XpmFreeAttributes(&attr); +@@ -212,7 +223,7 @@ + ret = False; + } + +- return ret; ++ return ret; + } + + +@@ -231,9 +242,8 @@ + + // Perhaps should use XpmReturnAllocPixels, neither gives the transparent + // value. +- int val = +- XpmCreateImageFromData(dpy[dpyNum], +- xpmBits, ++ int val = XpmCreateImageFromData(dpy[dpyNum], ++ const_cast (xpmBits), + &srcImage,(mask ? &srcMask : (XImage**)NULL), + &attr); + srcSize.width = attr.width; diff -urN /usr/ports/games/xevil/files/patch-x11__draw.cpp games/xevil/files/patch-x11__draw.cpp --- /usr/ports/games/xevil/files/patch-x11__draw.cpp 1970-01-01 09:00:00.000000000 +0900 +++ games/xevil/files/patch-x11__draw.cpp 2012-05-27 07:00:29.000000000 +0900 @@ -0,0 +1,100 @@ +--- x11/draw.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ x11/draw.cpp 2012-05-27 06:52:59.000000000 +0900 +@@ -34,6 +34,7 @@ + // in Xvars instead. + #include "viewport.h" + ++using namespace std; + + + // Draw functions for World +@@ -327,7 +328,7 @@ + Boolean val = + xvars.load_pixmap(&xdata.blockPixmaps[dpyNum][n], + mask,dpyNum, +- (char**)blocksBits[n]); ++ (const char**)blocksBits[n]); + if (!val) { + cerr << "Failed to load block " << n << endl; + } +@@ -352,7 +353,7 @@ + Boolean val = + xvars.load_pixmap(&xdata.posterPixmaps[dpyNum][n], + &xdata.posterMasks[dpyNum][n], +- dpyNum,(char**)posters[n].id); ++ dpyNum,(const char**)posters[n].id); + if (!val) { + cerr << "Failed to load poster " << n << endl; + } +@@ -363,7 +364,7 @@ + for (n = 0; n < W_ALL_DOORS_NUM; n++) { + Boolean val = + xvars.load_pixmap(&xdata.doorPixmaps[dpyNum][n],NULL,dpyNum, +- (char**)doorPixmapBits[n]); ++ (const char**)doorPixmapBits[n]); + if (!val) { + cerr << "Failed to load door block " << n << endl; + } +@@ -376,7 +377,7 @@ + xvars.load_pixmap(&xdata.moverSquarePixmaps[dpyNum][n], + &xdata.moverSquareMasks[dpyNum][n], + dpyNum, +- (char**)moverSquarePixmapBits[n]); ++ (const char**)moverSquarePixmapBits[n]); + if (!val) { + cerr << "Failed to mover square " << n << endl; + } +@@ -400,7 +401,7 @@ + xvars.load_pixmap(&xdata.moverPixmaps[dpyNum][n], + &xdata.moverMasks[dpyNum][n], + dpyNum, +- (char**)moverPixmapBits[n]); ++ (const char**)moverPixmapBits[n]); + if (!val) { + cerr << "Failed to load mover " << n << endl; + } +@@ -411,7 +412,7 @@ + for (n = 0; n < W_ALL_BACKGROUNDS_NUM; n++) { + Boolean val = + xvars.load_pixmap(&xdata.backgroundPixmaps[dpyNum][n],NULL,dpyNum, +- (char**)backgrounds[n].id); ++ (const char**)backgrounds[n].id); + if (!val) { + cerr << "Failed to load background " << n << endl; + } +@@ -422,7 +423,7 @@ + for (n = 0; n < W_ALL_OUTSIDES_NUM; n++) { + Boolean val = + xvars.load_pixmap(&xdata.outsidePixmaps[dpyNum][n],NULL,dpyNum, +- (char**)outsides[n].id); ++ (const char**)outsides[n].id); + if (!val) { + cerr << "Failed to load outside " << n << endl; + } +@@ -689,7 +690,7 @@ + assert(tickPixmapBits[tt][hp] != PH_AUTO_GEN); + xvars.load_pixmap(&xdata.tickPixmaps[dpyNum][tt][hp], + &xdata.tickMasks[dpyNum][tt][hp], +- dpyNum,(char**)tickPixmapBits[tt][hp]); ++ dpyNum,(const char**)tickPixmapBits[tt][hp]); + } + } + } +@@ -1020,7 +1021,7 @@ + for (dpyNum = 0; dpyNum < xvars.dpyMax; dpyNum++) { + Boolean val = xvars.load_pixmap(&xdata.pixmap[dpyNum], + &xdata.mask[dpyNum], +- dpyNum,(char**)fireBits); ++ dpyNum,(const char**)fireBits); + if (!val) { + cerr << "Failed to load fire graphics." << endl; + } +@@ -1292,7 +1293,7 @@ + Boolean val = + xvars.load_pixmap(&movingXdata.pixmaps[dpyNum][n][m], + &movingXdata.masks[dpyNum][n][m], +- dpyNum,(char**)mc.pixmapBits[n][m]); ++ dpyNum,(const char**)mc.pixmapBits[n][m]); + if (!val) { + cerr << "load_pixmap() failed for " + << mc.physicalContext.className diff -urN /usr/ports/games/xevil/files/patch-x11__ui.h games/xevil/files/patch-x11__ui.h --- /usr/ports/games/xevil/files/patch-x11__ui.h 1970-01-01 09:00:00.000000000 +0900 +++ games/xevil/files/patch-x11__ui.h 2012-05-27 07:01:30.000000000 +0900 @@ -0,0 +1,20 @@ +--- x11/ui.h.orig 2012-05-27 06:52:31.000000000 +0900 ++++ x11/ui.h 2012-05-27 06:52:59.000000000 +0900 +@@ -338,7 +338,7 @@ + + + // Variables. +- static char *keysNames[UI_KEYS_MAX]; ++ static const char *keysNames[UI_KEYS_MAX]; + + char **argv; // Warning: Exposing the rep. + int argc; +@@ -402,7 +402,7 @@ + // The callbacks to export to the Viewport. + static ViewportCallback viewportCallbacks[VIEWPORT_CB_NUM]; + +- static char* helpMessage; ++ static const char* helpMessage; + }; + + #endif diff -urN /usr/ports/games/xevil/files/patch-x11__viewport.h games/xevil/files/patch-x11__viewport.h --- /usr/ports/games/xevil/files/patch-x11__viewport.h 1970-01-01 09:00:00.000000000 +0900 +++ games/xevil/files/patch-x11__viewport.h 2012-05-27 07:01:53.000000000 +0900 @@ -0,0 +1,11 @@ +--- x11/viewport.h.orig 2012-05-27 06:52:31.000000000 +0900 ++++ x11/viewport.h 2012-05-27 06:52:59.000000000 +0900 +@@ -348,7 +348,7 @@ + /* NOTE: Will draw everything if redrawArena is true, else just what has + changed. */ + +- void draw_string(const Pos &pos,char *msg); ++ void draw_string(const Pos &pos,const char *msg); + /* EFFECTS: Draw string msg using current GC on arena with upper left of + character at position pos. */ + diff -urN /usr/ports/games/xevil/files/patch-x11__xdata.h games/xevil/files/patch-x11__xdata.h --- /usr/ports/games/xevil/files/patch-x11__xdata.h 1970-01-01 09:00:00.000000000 +0900 +++ games/xevil/files/patch-x11__xdata.h 2012-05-27 07:02:16.000000000 +0900 @@ -0,0 +1,28 @@ +--- x11/xdata.h.orig 2012-05-27 06:52:31.000000000 +0900 ++++ x11/xdata.h 2012-05-27 06:52:58.000000000 +0900 +@@ -74,7 +74,7 @@ + + typedef XEvent *CMN_EVENTDATA; + +-typedef char *CMN_COLOR; ++typedef const char *CMN_COLOR; + + + +@@ -132,14 +132,14 @@ + transformations. Use scratch for all scratch calculations. */ + + Boolean load_pixmap(Drawable* pixmap,Drawable* mask, +- int dpyNum,char** xpmBits); ++ int dpyNum, const char** xpmBits); + /* MODIFIES: pixmap, mask */ + /* EFFECTS: Load an XPM pixmap and mask from xpmBits. Only load mask if + non-NULL. Reduce pixmap size by a factor of 2 if + !xvars.is_stretched(). */ + + Boolean load_pixmap(Drawable* pixmap,Drawable* mask, +- int dpyNum,char** xpmBits,Boolean fullSize); ++ int dpyNum, const char** xpmBits,Boolean fullSize); + /* EFFECTS: Same as above load_pixmap() except caller explicitly + specifies whether pixmap is fullSize or reduced by a factor of 2. */ + /* NOTE: This method can be called before Xvars::stretch is set. */ diff -urN /usr/ports/games/xevil/pkg-descr games/xevil/pkg-descr --- /usr/ports/games/xevil/pkg-descr 2001-11-21 08:29:24.000000000 +0900 +++ games/xevil/pkg-descr 2012-05-27 05:40:37.000000000 +0900 @@ -8,7 +8,4 @@ Remover", while a good one might achieve a prestigious title such as "VP of Hell Marketing" or even "Lead Software Engineer of Hell". -The XEvil 2.X Instruction Manual is located in -/usr/X11R6/share/doc/xevil/instructions - WWW: http://www.xevil.com/ diff -urN /usr/ports/games/xevil/pkg-plist games/xevil/pkg-plist --- /usr/ports/games/xevil/pkg-plist 2003-11-04 03:59:15.000000000 +0900 +++ games/xevil/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,10 +0,0 @@ -bin/xevil -%%PORTDOCS%%%%DOCSDIR%%/instructions/UNIXSetControls.gif -%%PORTDOCS%%%%DOCSDIR%%/instructions/UNIXShowControls.gif -%%PORTDOCS%%%%DOCSDIR%%/instructions/UNIXmenu.gif -%%PORTDOCS%%%%DOCSDIR%%/instructions/instructions.html -%%PORTDOCS%%%%DOCSDIR%%/instructions/keysdlg.gif -%%PORTDOCS%%%%DOCSDIR%%/instructions/optionsdlg.gif -%%PORTDOCS%%%%DOCSDIR%%/readme.txt -%%PORTDOCS%%@dirrm %%DOCSDIR%%/instructions -%%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 691FC1065672 for ; Tue, 25 Sep 2012 18:10:27 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 426A08FC1F for ; Tue, 25 Sep 2012 18:10:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAR6E020936 for ; Tue, 25 Sep 2012 18:10:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIARnC020930; Tue, 25 Sep 2012 18:10:27 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:27 GMT Resent-Message-Id: <201209251810.q8PIARnC020930@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82204106566C for ; Tue, 25 Sep 2012 18:06:58 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id 0D6D28FC19 for ; Tue, 25 Sep 2012 18:06:58 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 8B90123C036 for ; Wed, 26 Sep 2012 03:06:50 +0900 (JST) Message-Id: <20120926022343.955e4e324454a8b44310e2d4@yahoo.com> Date: Wed, 26 Sep 2012 02:23:43 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172011: graphics/OpenEXR: Update to version 1.7.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:27 -0000 >Number: 172011 >Category: ports >Synopsis: graphics/OpenEXR: Update to version 1.7.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:27 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update graphics/OpenEXR to version 1.7.1 - Update graphics/ampasCTL to version 1.4.1 - Update graphics/ilmbase to version 1.0.3 - Update graphics/openexr_ctl to version 1.0.1 [graphics/OpenEXR] New file: files/patch-IlmImf__ImfAutoArray.h Remove file: files/patch-IlmImfExamples-Makeilfe.in files/patch-Makefile.in files/patch-doc-Makefile.in [graphics/ampasCTL] Remove file: files/patch-Makefile.in files/patch-doc-Makefile.in [graphics/ilmbase] New file: files/patch-IexMath__IexMathFpu.cpp Remove file: files/patch-Makefile files/patch-configure [graphics/openexr_ctl] Remove file: files/patch-Makefile.in >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # graphics_OpenEXR.diff # graphics_ampasCTL.diff # graphics_lcms-python.patch # graphics_openexr_ctl.diff # echo x - graphics_OpenEXR.diff sed 's/^X//' >graphics_OpenEXR.diff << '1aa9bb9aa22078d8b3d76072649238c0' Xdiff -urN /usr/ports/graphics/OpenEXR/Makefile graphics/OpenEXR/Makefile X--- /usr/ports/graphics/OpenEXR/Makefile 2012-09-20 23:38:19.000000000 +0900 X+++ graphics/OpenEXR/Makefile 2012-09-25 03:33:35.000000000 +0900 X@@ -1,55 +1,61 @@ X-# New ports collection makefile for: OpenEXR X-# Date created: 2003/01/26 X-# Whom: nork@FreeBSD.org X-# X+# Created by: nork@FreeBSD.org X # $FreeBSD: ports/graphics/OpenEXR/Makefile,v 1.44 2012/09/20 14:38:19 swills Exp $ X-# X X PORTNAME= OpenEXR X-PORTVERSION= 1.7.0 X+PORTVERSION= 1.7.1 X DISTNAME= ${PORTNAME:L}-${PORTVERSION} X CATEGORIES= graphics devel X-MASTER_SITES= ${MASTER_SITE_SAVANNAH} X-MASTER_SITE_SUBDIR= ${PORTNAME:L} X+MASTER_SITES= http://cloud.github.com/downloads/openexr/openexr/ X X MAINTAINER= ports@FreeBSD.org X COMMENT= A high dynamic-range (HDR) image file format X X-LIB_DEPENDS= Half.6:${PORTSDIR}/graphics/ilmbase X+LIB_DEPENDS= Half:${PORTSDIR}/graphics/ilmbase X X-USE_GMAKE= yes X-USE_GNOME= pkgconfig X-USE_LDCONFIG= yes X-USE_AUTOTOOLS= libtool X-GNU_CONFIGURE= YES X+OPTIONS_DEFINE= THREAD LARGE_STACK DOCS EXAMPLES X+OPTIONS_DEFAULT=THREAD X+THREAD_DESC= Enable multithreaded file I/O support X+LARGE_STACK_DESC= Enable sys-dependant large stack optimizations X X-CONFIGURE_ARGS+=--enable-imfexamples X+USE_GNOME= gnomehack X+USE_PKGCONFIG= build X+USE_AUTOTOOLS= libtool X+USE_LDCONFIG= yes X+MAKE_JOBS_SAFE= yes X X-OPTIONS_DEFINE= LARGE_STACK X-LARGE_STACK_DESC= Enable sys-dependant large stack optimizations X+.include X X-.include X+.if ${PORT_OPTIONS:MTHREAD} X+CONFIGURE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ X+ PTHREAD_LIBS="${PTHREAD_LIBS}" X+.else X+CONFIGURE_ARGS+=--disable-threading X+.endif X X .if ${PORT_OPTIONS:MLARGE_STACK} X CONFIGURE_ARGS+=--enable-large-stack X .endif X X-# must be explicitely linked with -l{thr|pthread} X-LDFLAGS+= ${PTHREAD_LIBS} X- X-WRKSRC= ${WRKDIR}/${DISTNAME} X+post-patch: X+ @${REINPLACE_CMD} -e \ X+ 's|IlmImfExamples doc|| ; \ X+ /^pkgconfigdir/s|= .*|= $$(prefix)/libdata/pkgconfig|' \ X+ ${WRKSRC}/Makefile.in X+ X+post-install: X+.if ${PORT_OPTIONS:MDOCS} X+ @${MKDIR} ${DOCSDIR} X+ (cd ${WRKSRC}/doc \ X+ && ${INSTALL_DATA} *.pdf ${DOCSDIR}) X+.endif X+.if ${PORT_OPTIONS:MEXAMPLES} X+ @${MKDIR} ${EXAMPLESDIR} X+ (cd ${WRKSRC}/IlmImfExamples \ X+ && ${INSTALL_DATA} *.cpp *.h ${EXAMPLESDIR}) X+.endif X X regression-test regression test check: build X- @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} check) X- X-# IlmImfTest hangs indefinitely X-# X-#.if defined(PACKAGE_BUILDING) X-#.if ${ARCH} != sparc64 || ${OSVERSION} >= 700055 X-#.if ${ARCH} != amd64 || ${OSVERSION} < 800000 X-#pre-install: test X-#.endif X-#.endif X-#.endif X+ @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \ X+ ${MAKEFILE} ${MAKE_ARGS} check) X X-.include X+.include Xdiff -urN /usr/ports/graphics/OpenEXR/distinfo graphics/OpenEXR/distinfo X--- /usr/ports/graphics/OpenEXR/distinfo 2012-09-20 23:38:19.000000000 +0900 X+++ graphics/OpenEXR/distinfo 2012-09-20 01:18:47.000000000 +0900 X@@ -1,2 +1,2 @@ X-SHA256 (openexr-1.7.0.tar.gz) = b68a2164d01bd028d15bd96af2704634a344e291dc7cc2019a662045d8c52ca4 X-SIZE (openexr-1.7.0.tar.gz) = 13542910 X+SHA256 (openexr-1.7.1.tar.gz) = 692ee6566d49939b2613e63b3afea2d38b871c0202cc829a7e32ced780af55c5 X+SIZE (openexr-1.7.1.tar.gz) = 13554138 Xdiff -urN /usr/ports/graphics/OpenEXR/files/patch-IlmImfExamples-Makeilfe.in graphics/OpenEXR/files/patch-IlmImfExamples-Makeilfe.in X--- /usr/ports/graphics/OpenEXR/files/patch-IlmImfExamples-Makeilfe.in 2007-10-08 02:45:39.000000000 +0900 X+++ graphics/OpenEXR/files/patch-IlmImfExamples-Makeilfe.in 1970-01-01 09:00:00.000000000 +0900 X@@ -1,11 +0,0 @@ X---- IlmImfExamples/Makefile.in.orig 2007-08-04 05:07:13.000000000 +0900 X-+++ IlmImfExamples/Makefile.in 2007-10-08 02:22:15.000000000 +0900 X-@@ -225,7 +225,7 @@ X- rgbaInterfaceTiledExamples.h \ X- lowLevelIoExamples.h previewImageExamples.h X- X--examplesdir = $(datadir)/doc/OpenEXR-@OPENEXR_VERSION@/examples X-+examplesdir = $(prefix)/share/examples/OpenEXR X- examples_DATA = $(imfexamples_SOURCES) X- imfexamplesdir = $(examplesdir) X- all: all-am Xdiff -urN /usr/ports/graphics/OpenEXR/files/patch-IlmImf__ImfAutoArray.h graphics/OpenEXR/files/patch-IlmImf__ImfAutoArray.h X--- /usr/ports/graphics/OpenEXR/files/patch-IlmImf__ImfAutoArray.h 1970-01-01 09:00:00.000000000 +0900 X+++ graphics/OpenEXR/files/patch-IlmImf__ImfAutoArray.h 2012-09-20 01:45:26.000000000 +0900 X@@ -0,0 +1,10 @@ X+--- IlmImf/ImfAutoArray.h.orig 2012-07-18 08:27:26.000000000 +0900 X++++ IlmImf/ImfAutoArray.h 2012-09-20 01:41:28.000000000 +0900 X+@@ -45,6 +45,7 @@ X+ //----------------------------------------------------------------------------- X+ X+ #include "OpenEXRConfig.h" X++#include X+ X+ namespace Imf { X+ Xdiff -urN /usr/ports/graphics/OpenEXR/files/patch-Makefile.in graphics/OpenEXR/files/patch-Makefile.in X--- /usr/ports/graphics/OpenEXR/files/patch-Makefile.in 2007-10-08 02:45:39.000000000 +0900 X+++ graphics/OpenEXR/files/patch-Makefile.in 1970-01-01 09:00:00.000000000 +0900 X@@ -1,11 +0,0 @@ X---- Makefile.in.orig 2007-08-04 05:07:15.000000000 +0900 X-+++ Makefile.in 2007-10-08 02:14:58.000000000 +0900 X-@@ -214,7 +214,7 @@ X- openexr.m4 \ X- config.windows/OpenEXRConfig.h X- X--pkgconfigdir = $(libdir)/pkgconfig X-+pkgconfigdir = $(prefix)/libdata/pkgconfig X- pkgconfig_DATA = OpenEXR.pc X- m4datadir = $(datadir)/aclocal X- m4data_DATA = openexr.m4 Xdiff -urN /usr/ports/graphics/OpenEXR/files/patch-doc-Makefile.in graphics/OpenEXR/files/patch-doc-Makefile.in X--- /usr/ports/graphics/OpenEXR/files/patch-doc-Makefile.in 2007-10-08 02:45:39.000000000 +0900 X+++ graphics/OpenEXR/files/patch-doc-Makefile.in 1970-01-01 09:00:00.000000000 +0900 X@@ -1,11 +0,0 @@ X---- doc/Makefile.in.orig 2007-08-04 05:07:14.000000000 +0900 X-+++ doc/Makefile.in 2007-10-08 02:19:31.000000000 +0900 X-@@ -177,7 +177,7 @@ X- TechnicalIntroduction.pdf \ X- OpenEXRFileLayout.pdf X- X--docdir = $(datadir)/doc/OpenEXR-@OPENEXR_VERSION@ X-+docdir = $(datadir)/doc/OpenEXR X- doc_DATA = $(EXTRA_DIST) X- all: all-am X- Xdiff -urN /usr/ports/graphics/OpenEXR/pkg-descr graphics/OpenEXR/pkg-descr X--- /usr/ports/graphics/OpenEXR/pkg-descr 2003-01-26 21:39:22.000000000 +0900 X+++ graphics/OpenEXR/pkg-descr 2012-08-30 04:34:23.000000000 +0900 X@@ -15,4 +15,4 @@ X its new file format a bit, and to publish it. OpenEXR is X the result. X X-WWW: http://www.openexr.org/ X+WWW: http://www.openexr.com/ Xdiff -urN /usr/ports/graphics/OpenEXR/pkg-plist graphics/OpenEXR/pkg-plist X--- /usr/ports/graphics/OpenEXR/pkg-plist 2012-09-20 23:38:19.000000000 +0900 X+++ graphics/OpenEXR/pkg-plist 2012-09-20 01:23:59.000000000 +0900 X@@ -5,10 +5,6 @@ X bin/exrmaketiled X bin/exrmultiview X bin/exrstdattr X-lib/libIlmImf.a X-lib/libIlmImf.la X-lib/libIlmImf.so X-lib/libIlmImf.so.6 X include/OpenEXR/ImfAcesFile.h X include/OpenEXR/ImfArray.h X include/OpenEXR/ImfAttribute.h X@@ -69,26 +65,30 @@ X include/OpenEXR/ImfWav.h X include/OpenEXR/ImfXdr.h X include/OpenEXR/OpenEXRConfig.h X+lib/libIlmImf.a X+lib/libIlmImf.la X+lib/libIlmImf.so X+lib/libIlmImf.so.7 X libdata/pkgconfig/OpenEXR.pc X share/aclocal/openexr.m4 X-%%DOCSDIR%%/MultiViewOpenEXR.pdf X-%%DOCSDIR%%/OpenEXRFileLayout.pdf X-%%DOCSDIR%%/ReadingAndWritingImageFiles.pdf X-%%DOCSDIR%%/TechnicalIntroduction.pdf X-%%EXAMPLESDIR%%/drawImage.cpp X-%%EXAMPLESDIR%%/drawImage.h X-%%EXAMPLESDIR%%/generalInterfaceExamples.cpp X-%%EXAMPLESDIR%%/generalInterfaceExamples.h X-%%EXAMPLESDIR%%/generalInterfaceTiledExamples.cpp X-%%EXAMPLESDIR%%/generalInterfaceTiledExamples.h X-%%EXAMPLESDIR%%/lowLevelIoExamples.cpp X-%%EXAMPLESDIR%%/lowLevelIoExamples.h X-%%EXAMPLESDIR%%/main.cpp X-%%EXAMPLESDIR%%/previewImageExamples.cpp X-%%EXAMPLESDIR%%/previewImageExamples.h X-%%EXAMPLESDIR%%/rgbaInterfaceExamples.cpp X-%%EXAMPLESDIR%%/rgbaInterfaceExamples.h X-%%EXAMPLESDIR%%/rgbaInterfaceTiledExamples.cpp X-%%EXAMPLESDIR%%/rgbaInterfaceTiledExamples.h X-@dirrm %%EXAMPLESDIR%% X-@dirrm %%DOCSDIR%% X+%%PORTDOCS%%%%DOCSDIR%%/MultiViewOpenEXR.pdf X+%%PORTDOCS%%%%DOCSDIR%%/OpenEXRFileLayout.pdf X+%%PORTDOCS%%%%DOCSDIR%%/ReadingAndWritingImageFiles.pdf X+%%PORTDOCS%%%%DOCSDIR%%/TechnicalIntroduction.pdf X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/drawImage.cpp X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/drawImage.h X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/generalInterfaceExamples.cpp X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/generalInterfaceExamples.h X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/generalInterfaceTiledExamples.cpp X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/generalInterfaceTiledExamples.h X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lowLevelIoExamples.cpp X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lowLevelIoExamples.h X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/main.cpp X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/previewImageExamples.cpp X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/previewImageExamples.h X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rgbaInterfaceExamples.cpp X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rgbaInterfaceExamples.h X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rgbaInterfaceTiledExamples.cpp X+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rgbaInterfaceTiledExamples.h X+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% X+%%PORTDOCS%%@dirrm %%DOCSDIR%% 1aa9bb9aa22078d8b3d76072649238c0 echo x - graphics_ampasCTL.diff sed 's/^X//' >graphics_ampasCTL.diff << '2e7e9703f66fde658311f0dcb0a612b5' Xdiff -urN /usr/ports/graphics/ampasCTL/Makefile graphics/ampasCTL/Makefile X--- /usr/ports/graphics/ampasCTL/Makefile 2012-08-16 04:26:13.000000000 +0900 X+++ graphics/ampasCTL/Makefile 2012-09-25 03:33:43.000000000 +0900 X@@ -1,31 +1,40 @@ X-# New ports collection makefile for: ampasCTL X-# Date created: 2007-10-08 X-# Whom: nork@FreeBSD.org X-# X+# Created by: nork@FreeBSD.org X # $FreeBSD: ports/graphics/ampasCTL/Makefile,v 1.5 2012/08/15 19:26:13 tabthorpe Exp $ X # X X PORTNAME= ampasCTL X-PORTVERSION= 1.4.0 X+PORTVERSION= 1.4.1 X CATEGORIES= graphics devel X-MASTER_SITES= SF/${PORTNAME:L}/ctl/${PORTVERSION} X+MASTER_SITES= SF/${PORTNAME:L}/ctl/ctl-${PORTVERSION} X DISTNAME= ctl-${PORTVERSION} X X MAINTAINER= ports@FreeBSD.org X COMMENT= Color Transformation Language interpreter X X-LIB_DEPENDS= Half.6:${PORTSDIR}/graphics/ilmbase X+LIB_DEPENDS= Half:${PORTSDIR}/graphics/ilmbase X X-USE_GNOME= pkgconfig X-USE_LDCONFIG= yes X-GNU_CONFIGURE= yes X+OPTIONS_DEFINE= DOCS X+ X+USE_GNOME= gnomehack X+USE_PKGCONFIG= build X USE_AUTOTOOLS= libtool X+USE_LDCONFIG= yes X+MAKE_JOBS_SAFE= yes X X-test check: build X- @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} check) X+.include X X-.if defined(PACKAGE_BUILDING) X-pre-install: test X+post-patch: X+ @${REINPLACE_CMD} -e \ X+ '/^SUBDIRS/s|doc||' ${WRKSRC}/Makefile.in X+ X+post-install: X+.if ${PORT_OPTIONS:MDOCS} X+ @${MKDIR} ${DOCSDIR} X+ ${INSTALL_DATA} ${WRKSRC}/doc/CtlManual.* ${DOCSDIR} X .endif X X+test check: build X+ @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \ X+ ${MAKEFILE} ${MAKE_ARGS} check) X+ X .include Xdiff -urN /usr/ports/graphics/ampasCTL/distinfo graphics/ampasCTL/distinfo X--- /usr/ports/graphics/ampasCTL/distinfo 2011-07-03 23:11:00.000000000 +0900 X+++ graphics/ampasCTL/distinfo 2012-08-30 04:47:17.000000000 +0900 X@@ -1,2 +1,2 @@ X-SHA256 (ctl-1.4.0.tar.gz) = 85cc710d18f1ac16e77640e165ba083c6e27766cbe6b0cfdb80eac3daef58aa6 X-SIZE (ctl-1.4.0.tar.gz) = 1004039 X+SHA256 (ctl-1.4.1.tar.gz) = b202d9552eeb81f3ded66a6786719f6e1138fa4e31c866799b1efad6ef7a9f9a X+SIZE (ctl-1.4.1.tar.gz) = 996923 Xdiff -urN /usr/ports/graphics/ampasCTL/files/patch-Makefile.in graphics/ampasCTL/files/patch-Makefile.in X--- /usr/ports/graphics/ampasCTL/files/patch-Makefile.in 2007-10-08 07:46:38.000000000 +0900 X+++ graphics/ampasCTL/files/patch-Makefile.in 1970-01-01 09:00:00.000000000 +0900 X@@ -1,11 +0,0 @@ X---- Makefile.in.orig 2007-08-04 09:11:41.000000000 +0900 X-+++ Makefile.in 2007-10-08 06:50:25.000000000 +0900 X-@@ -203,7 +203,7 @@ X- AUTHORS COPYING ChangeLog INSTALL LICENSE NEWS \ X- README README.CVS README.OSX README.win32 bootstrap X- X--pkgconfigdir = $(libdir)/pkgconfig X-+pkgconfigdir = $(prefix)/libdata/pkgconfig X- pkgconfig_DATA = CTL.pc X- all: all-recursive X- Xdiff -urN /usr/ports/graphics/ampasCTL/files/patch-doc-Makefile.in graphics/ampasCTL/files/patch-doc-Makefile.in X--- /usr/ports/graphics/ampasCTL/files/patch-doc-Makefile.in 2007-10-08 07:46:38.000000000 +0900 X+++ graphics/ampasCTL/files/patch-doc-Makefile.in 1970-01-01 09:00:00.000000000 +0900 X@@ -1,11 +0,0 @@ X---- doc/Makefile.in.orig 2007-08-04 09:11:41.000000000 +0900 X-+++ doc/Makefile.in 2007-10-08 06:51:25.000000000 +0900 X-@@ -171,7 +171,7 @@ X- sysconfdir = @sysconfdir@ X- target_alias = @target_alias@ X- EXTRA_DIST = CtlManual.pdf CtlManual.doc X--docdir = $(datadir)/doc/CTL-@CTL_VERSION@ X-+docdir = $(datadir)/doc/ampasCTL X- doc_DATA = $(EXTRA_DIST) X- all: all-am X- Xdiff -urN /usr/ports/graphics/ampasCTL/pkg-descr graphics/ampasCTL/pkg-descr X--- /usr/ports/graphics/ampasCTL/pkg-descr 2007-10-08 07:46:38.000000000 +0900 X+++ graphics/ampasCTL/pkg-descr 2012-08-30 04:38:48.000000000 +0900 X@@ -10,4 +10,4 @@ X between standard color spaces, 1D and 3D lookup tables, X 3D scattered data interpolation. X X-WWW: http://www.oscars.org/council/ctl.html X+WWW: http://ampasctl.sourceforge.net/ Xdiff -urN /usr/ports/graphics/ampasCTL/pkg-plist graphics/ampasCTL/pkg-plist X--- /usr/ports/graphics/ampasCTL/pkg-plist 2007-10-08 07:46:38.000000000 +0900 X+++ graphics/ampasCTL/pkg-plist 2012-08-30 04:55:28.000000000 +0900 X@@ -1,15 +1,3 @@ X-lib/libIlmCtl.a X-lib/libIlmCtl.la X-lib/libIlmCtl.so X-lib/libIlmCtl.so.2 X-lib/libIlmCtlMath.a X-lib/libIlmCtlMath.la X-lib/libIlmCtlMath.so X-lib/libIlmCtlMath.so.2 X-lib/libIlmCtlSimd.a X-lib/libIlmCtlSimd.la X-lib/libIlmCtlSimd.so X-lib/libIlmCtlSimd.so.2 X include/CTL/CtlAddr.h X include/CTL/CtlAlign.h X include/CTL/CtlColorSpace.h X@@ -31,8 +19,20 @@ X include/CTL/CtlTokens.h X include/CTL/CtlType.h X include/CTL/CtlVersion.h X+lib/libIlmCtl.a X+lib/libIlmCtl.la X+lib/libIlmCtl.so X+lib/libIlmCtl.so.2 X+lib/libIlmCtlMath.a X+lib/libIlmCtlMath.la X+lib/libIlmCtlMath.so X+lib/libIlmCtlMath.so.2 X+lib/libIlmCtlSimd.a X+lib/libIlmCtlSimd.la X+lib/libIlmCtlSimd.so X+lib/libIlmCtlSimd.so.2 X libdata/pkgconfig/CTL.pc X-%%DOCSDIR%%/CtlManual.pdf X-%%DOCSDIR%%/CtlManual.doc X-@dirrm %%DOCSDIR%% X+%%PORTDOCS%%%%DOCSDIR%%/CtlManual.doc X+%%PORTDOCS%%%%DOCSDIR%%/CtlManual.pdf X+%%PORTDOCS%%@dirrm %%DOCSDIR%% X @dirrm include/CTL 2e7e9703f66fde658311f0dcb0a612b5 echo x - graphics_lcms-python.patch sed 's/^X//' >graphics_lcms-python.patch << '47137fa9b29011b390c2b0ce2547cdb7' Xdiff -urN /usr/ports/graphics/lcms-python/Makefile graphics/lcms-python/Makefile X--- /usr/ports/graphics/lcms-python/Makefile 2011-10-24 12:33:06.000000000 +0900 X+++ graphics/lcms-python/Makefile 2012-09-25 03:34:50.000000000 +0900 X@@ -1,39 +1,36 @@ X-# New ports collection makefile for: lcms-python X-# Date created: 13/10/2009 X-# Whom: stas X-# X+# Created by: stas X # $FreeBSD: ports/graphics/lcms-python/Makefile,v 1.5 2011/10/24 03:33:06 stas Exp $ X-# X X PORTNAME= lcms X PORTVERSION= 1.19 X CATEGORIES= graphics devel python X-MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/1.19 \ X- http://www.littlecms.com/ X+MASTER_SITES= SF X PKGNAMESUFFIX= -python X X MAINTAINER= ports@FreeBSD.org X COMMENT= Light Color Management System (python bindings) X X+LICENSE= MIT X+ X LIB_DEPENDS+= lcms.1:${PORTSDIR}/graphics/lcms X X+BUILD_WRKSRC= ${WRKSRC}/python X+INSTALL_WRKSRC= ${WRKSRC}/python X+ X USE_PYTHON= yes X GNU_CONFIGURE= yes X CONFIGURE_ARGS= --with-python X-LDFLAGS+= -L${LOCALBASE}/lib X-WRKSRC= ${WRKDIR}/lcms-1.19 X-PLIST_FILES= ${PYTHON_SITELIBDIR:C,${PREFIX}/?,,}/_lcms.so \ X- ${PYTHON_SITELIBDIR:C,${PREFIX}/?,,}/lcms.py X X-.include X+CPPFLAGS+= -I${LOCALBASE}/include X+LDFLAGS+= -L${LOCALBASE}/lib X X-do-build: X- cd ${WRKSRC}/python && ${SETENV} ${MAKE_ENV} ${MAKE} all X+PLIST_FILES= %%PYTHON_SITELIBDIR%%/_lcms.so \ X+ %%PYTHON_SITELIBDIR%%/lcms.py X X do-install: X- ${INSTALL_DATA} ${WRKSRC}/python/.libs/_lcms.so \ X+ ${INSTALL_DATA} ${INSTALL_WRKSRC}/.libs/_lcms.so \ X ${PYTHON_SITELIBDIR}/_lcms.so X- ${INSTALL_DATA} ${WRKSRC}/python/lcms.py \ X+ ${INSTALL_DATA} ${INSTALL_WRKSRC}/lcms.py \ X ${PYTHON_SITELIBDIR}/lcms.py X X-.include X+.include 47137fa9b29011b390c2b0ce2547cdb7 echo x - graphics_openexr_ctl.diff sed 's/^X//' >graphics_openexr_ctl.diff << '486d53c4868b85f006655b44d1e4f453' Xdiff -urN /usr/ports/graphics/openexr_ctl/Makefile graphics/openexr_ctl/Makefile X--- /usr/ports/graphics/openexr_ctl/Makefile 2012-08-16 04:26:13.000000000 +0900 X+++ graphics/openexr_ctl/Makefile 2012-09-25 03:33:51.000000000 +0900 X@@ -1,32 +1,25 @@ X-# New ports collection makefile for: openexr_ctl X-# Date created: 2007-10-09 X-# Whom: nork@FreeBSD.org X-# X+# Created by: nork@FreeBSD.org X # $FreeBSD: ports/graphics/openexr_ctl/Makefile,v 1.4 2012/08/15 19:26:13 tabthorpe Exp $ X-# X X PORTNAME= openexr_ctl X-PORTVERSION= 1.0.0 X+PORTVERSION= 1.0.1 X CATEGORIES= graphics devel X-MASTER_SITES= ${MASTER_SITE_SAVANNAH} X-MASTER_SITE_SUBDIR= openexr X+MASTER_SITES= SF/ampasctl/${PORTNAME}/${PORTNAME}-${PORTVERSION} X X MAINTAINER= ports@FreeBSD.org X COMMENT= Simplified OpenEXR interface to CTL X X-LIB_DEPENDS+= IlmImf.6:${PORTSDIR}/graphics/OpenEXR \ X- IlmCtl.2:${PORTSDIR}/graphics/ampasCTL X+LIB_DEPENDS= IlmImf:${PORTSDIR}/graphics/OpenEXR \ X+ IlmCtl:${PORTSDIR}/graphics/ampasCTL X X-USE_GNOME= pkgconfig X-USE_LDCONFIG= yes X-GNU_CONFIGURE= yes X+USE_GNOME= gnomehack X+USE_PKGCONFIG= build X USE_AUTOTOOLS= libtool X+USE_LDCONFIG= yes X+MAKE_JOBS_SAFE= yes X X test check: build X- @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} check) X- X-.if defined(PACKAGE_BUILDING) X-pre-install: test X-.endif X+ @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \ X+ ${MAKEFILE} ${MAKE_ARGS} check) X X .include Xdiff -urN /usr/ports/graphics/openexr_ctl/distinfo graphics/openexr_ctl/distinfo X--- /usr/ports/graphics/openexr_ctl/distinfo 2011-07-03 23:11:43.000000000 +0900 X+++ graphics/openexr_ctl/distinfo 2012-08-30 04:41:38.000000000 +0900 X@@ -1,2 +1,2 @@ X-SHA256 (openexr_ctl-1.0.0.tar.gz) = bfa28d626201f6b29e794b9ab54a01ec4b1153ec99160b492adabf0ae082f304 X-SIZE (openexr_ctl-1.0.0.tar.gz) = 367164 X+SHA256 (openexr_ctl-1.0.1.tar.gz) = 2d88d624e24fce64ee8494d4dd46e33684f93941e1ca46024554d1ab6ed5e9c9 X+SIZE (openexr_ctl-1.0.1.tar.gz) = 362864 Xdiff -urN /usr/ports/graphics/openexr_ctl/files/patch-Makefile.in graphics/openexr_ctl/files/patch-Makefile.in X--- /usr/ports/graphics/openexr_ctl/files/patch-Makefile.in 2007-10-09 01:37:46.000000000 +0900 X+++ graphics/openexr_ctl/files/patch-Makefile.in 1970-01-01 09:00:00.000000000 +0900 X@@ -1,11 +0,0 @@ X---- Makefile.in.orig 2007-08-04 09:13:15.000000000 +0900 X-+++ Makefile.in 2007-10-09 01:15:31.000000000 +0900 X-@@ -209,7 +209,7 @@ X- AUTHORS COPYING ChangeLog INSTALL LICENSE NEWS \ X- README README.CVS README.OSX README.win32 bootstrap X- X--pkgconfigdir = $(libdir)/pkgconfig X-+pkgconfigdir = $(prefix)/libdata/pkgconfig X- pkgconfig_DATA = OpenEXR_CTL.pc X- all: all-recursive X- Xdiff -urN /usr/ports/graphics/openexr_ctl/pkg-descr graphics/openexr_ctl/pkg-descr X--- /usr/ports/graphics/openexr_ctl/pkg-descr 2007-10-09 01:37:46.000000000 +0900 X+++ graphics/openexr_ctl/pkg-descr 2012-08-30 04:38:23.000000000 +0900 X@@ -16,4 +16,4 @@ X header fields and most OpenEXR attributes are lost during file X conversion. X X-WWW: http://www.openexr.com/ X+WWW: http://ampasctl.sourceforge.net/ Xdiff -urN /usr/ports/graphics/openexr_ctl/pkg-plist graphics/openexr_ctl/pkg-plist X--- /usr/ports/graphics/openexr_ctl/pkg-plist 2007-10-09 01:37:46.000000000 +0900 X+++ graphics/openexr_ctl/pkg-plist 2012-09-20 05:32:09.000000000 +0900 X@@ -1,15 +1,15 @@ X bin/exr_ctl_exr X bin/exrdpx X-lib/libIlmImfCtl.a X-lib/libIlmImfCtl.la X-lib/libIlmImfCtl.so X-lib/libIlmImfCtl.so.2 X+include/OpenEXR/ImfCtlApplyTransforms.h X lib/CTL/change_saturation.ctl X lib/CTL/transform_DPX_EXR.ctl X lib/CTL/transform_EXR_DPX.ctl X lib/CTL/transform_RRT.ctl X lib/CTL/transform_display_video.ctl X lib/CTL/utilities.ctl X+lib/libIlmImfCtl.a X+lib/libIlmImfCtl.la X+lib/libIlmImfCtl.so X+lib/libIlmImfCtl.so.2 X libdata/pkgconfig/OpenEXR_CTL.pc X-include/OpenEXR/ImfCtlApplyTransforms.h X @dirrm lib/CTL 486d53c4868b85f006655b44d1e4f453 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA5381065676 for ; Tue, 25 Sep 2012 18:10:27 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 962458FC2D for ; Tue, 25 Sep 2012 18:10:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIARbW020992 for ; Tue, 25 Sep 2012 18:10:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIARHs020985; Tue, 25 Sep 2012 18:10:27 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:27 GMT Resent-Message-Id: <201209251810.q8PIARHs020985@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6EE1B106564A for ; Tue, 25 Sep 2012 18:07:02 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 220348FC08 for ; Tue, 25 Sep 2012 18:07:02 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id 81EF82BC040 for ; Wed, 26 Sep 2012 03:07:00 +0900 (JST) Message-Id: <20120926022347.149c4f7fd83026f4d20b3f3b@yahoo.com> Date: Wed, 26 Sep 2012 02:23:47 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172012: graphics/apngasm: Update to version 2.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:27 -0000 >Number: 172012 >Category: ports >Synopsis: graphics/apngasm: Update to version 2.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:27 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 2.7 >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/apngasm/Makefile graphics/apngasm/Makefile --- /usr/ports/graphics/apngasm/Makefile 2012-06-01 14:19:37.000000000 +0900 +++ graphics/apngasm/Makefile 2012-09-25 03:34:03.000000000 +0900 @@ -1,13 +1,8 @@ -# New ports collection makefile for: apngasm -# Date created: 02 May 2010 -# Whom: Anonymous -# +# Created by: Anonymous # $FreeBSD: ports/graphics/apngasm/Makefile,v 1.9 2012/06/01 05:19:37 dinoex Exp $ -# PORTNAME= apngasm -PORTVERSION= 2.6 -PORTREVISION= 1 +PORTVERSION= 2.7 DISTVERSIONSUFFIX=-src CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} @@ -18,6 +13,8 @@ LICENSE= LGPL21 LGPL3 LICENSE_COMB= dual +OPTIONS_DEFINE= STATIC DOCS + NO_WRKSUBDIR= yes USE_DOS2UNIX= yes @@ -29,13 +26,13 @@ PORTDOCS= readme.txt PLIST_FILES= bin/${PORTNAME} -.include +.include -.if !defined(NO_SHARED) -LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png -.else +.if ${PORT_OPTIONS:MSTATIC} BUILD_DEPENDS+= ${LOCALBASE}/lib/libpng.a:${PORTSDIR}/graphics/png LDFLAGS+= -static +.else +LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png .endif do-build: @@ -44,9 +41,9 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} .endif -.include +.include diff -urN /usr/ports/graphics/apngasm/distinfo graphics/apngasm/distinfo --- /usr/ports/graphics/apngasm/distinfo 2012-02-20 09:05:58.000000000 +0900 +++ graphics/apngasm/distinfo 2012-09-19 23:10:08.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (apngasm-2.6-src.zip) = 1d4b63e55c241c0db4a812e6cddea48586e4275b041a1e600154c2840f4ebb06 -SIZE (apngasm-2.6-src.zip) = 11350 +SHA256 (apngasm-2.7-src.zip) = af42569666cab268a20a0754191396c9d48f4e01d6e8f93c3ae1164c3c821cc3 +SIZE (apngasm-2.7-src.zip) = 11448 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A1851065679 for ; Tue, 25 Sep 2012 18:10:28 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EA2598FC23 for ; Tue, 25 Sep 2012 18:10:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAR5e021067 for ; Tue, 25 Sep 2012 18:10:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIARux021056; Tue, 25 Sep 2012 18:10:27 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:27 GMT Resent-Message-Id: <201209251810.q8PIARux021056@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47FA41065672 for ; Tue, 25 Sep 2012 18:07:07 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 072CF8FC0A for ; Tue, 25 Sep 2012 18:07:07 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id B69C734034 for ; Wed, 26 Sep 2012 03:07:04 +0900 (JST) Message-Id: <20120926022351.fce98ca10a0430240767d07d@yahoo.com> Date: Wed, 26 Sep 2012 02:23:51 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172013: graphics/autotrace: Fix OPTIONS_DEFINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:28 -0000 >Number: 172013 >Category: ports >Synopsis: graphics/autotrace: Fix OPTIONS_DEFINE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:27 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Fix OPTIONS_DEFINE - Add LICENSE - Add MAKE_JOBS_SAFE Remove file: files/patch-configure >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/autotrace/Makefile graphics/autotrace/Makefile --- /usr/ports/graphics/autotrace/Makefile 2012-09-23 06:06:17.000000000 +0900 +++ graphics/autotrace/Makefile 2012-09-25 04:58:49.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: autotrace -# Date created: 12 April 2001 -# Whom: KANOU Hiroki -# +# Created by: KANOU Hiroki # $FreeBSD: ports/graphics/autotrace/Makefile,v 1.59 2012/09/22 21:06:17 rm Exp $ -# PORTNAME= autotrace PORTVERSION= 0.31.1 @@ -14,42 +10,54 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Convert bitmap to vector graphics -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ - MagickWand.5:${PORTSDIR}/graphics/ImageMagick +LICENSE= GPLv2 LGPL21 +LICENSE_COMB= multi +LIB_DEPENDS= png15:${PORTSDIR}/graphics/png + +OPTIONS_DEFINE= IMAGEMAGICK MING PSTOEDIT +OPTIONS_DEFAULT= IMAGEMAGICK PSTOEDIT +MING_DESC= Enable swf interface +PSTOEDIT_DESC= Convert postscript to other formats + +USE_GNOME= gnomehack +USE_PKGCONFIG= build USE_AUTOTOOLS= libtool USE_LDCONFIG= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" -CPPFLAGS+= -I${LOCALBASE}/include/libpng15 +MAKE_JOBS_SAFE= yes -MAN1= autotrace.1 +CPPFLAGS+= $$(libpng-config --I_opts) ${PTHREAD_CFLAGS} +LDFLAGS+= $$(libpng-config --L_opts) ${PTHREAD_LIBS} -OPTIONS_DEFINE= MING PSTOEDIT -OPTIONS_DEFAULT= PSTOEDIT -MING_DESC= Enable swf interface -PSTOEDIT_DESC= Convert postscript to other formats +MAN1= autotrace.1 .include +.if ${PORT_OPTIONS:MIMAGEMAGICK} +LIB_DEPENDS+= MagickWand:${PORTSDIR}/graphics/ImageMagick +.else +CONFIGURE_ARGS+=--without-magick +.endif + .if ${PORT_OPTIONS:MMING} -LIB_DEPENDS+= ming.5:${PORTSDIR}/graphics/ming -CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/ming +LIB_DEPENDS+= ming:${PORTSDIR}/graphics/ming +CPPFLAGS+= $$(pkg-config --cflags-only-I libming) +LDFLAGS+= $$(pkg-config --libs-only-L libming) +.else +CONFIGURE_ENV+= ac_cv_header_ming_h=no .endif .if ${PORT_OPTIONS:MPSTOEDIT} -LIB_DEPENDS+= pstoedit.0:${PORTSDIR}/graphics/pstoedit +LIB_DEPENDS+= pstoedit:${PORTSDIR}/graphics/pstoedit +.else +CONFIGURE_ARGS+=--without-pstoedit .endif post-patch: @${REINPLACE_CMD} -e \ - 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|' \ - ${WRKSRC}/Makefile.in - -.if ${PORT_OPTIONS:MPSTOEDIT} - @${REINPLACE_CMD} -e '/$$PSTOEDIT_CONFIG/ s|--version|--modversion| ; \ - s|$$PSTOEDIT_CONFIG $$pstoedit_args|pkg-config pstoedit| ; \ - /^PSTOEDIT_CONFIG=/ s|=.*$$|=pkg-config| ' ${WRKSRC}/configure -.endif + 's|Magick-config|MagickWand-config|g ; \ + /$$PSTOEDIT_CONFIG/s|--version|--modversion| ; \ + s|$$PSTOEDIT_CONFIG $$pstoedit_args|pkg-config pstoedit| ; \ + /^PSTOEDIT_CONFIG=/s|=.*$$|=pkg-config|' ${WRKSRC}/configure .include diff -urN /usr/ports/graphics/autotrace/files/patch-configure graphics/autotrace/files/patch-configure --- /usr/ports/graphics/autotrace/files/patch-configure 2008-09-26 22:59:08.000000000 +0900 +++ graphics/autotrace/files/patch-configure 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- configure.orig 2008-09-26 15:52:26.000000000 +0200 -+++ configure 2008-09-26 15:52:09.000000000 +0200 -@@ -7973,7 +7973,7 @@ - MAGICK_CFLAGS=${CPPFLAGS} - CPPFLAGS=${CPPFLAGS_BACKUP} - if test "x${magick_header_found}" = xyes ; then -- MAGICK_LDFLAGS="`Magick-config --ldflags` `Magick-config --libs`" -+ MAGICK_LDFLAGS="`Magick-config --ldflags` `Magick-config --libs` `MagickWand-config --ldflags` `MagickWand-config --libs`" - echo "$as_me:$LINENO: checking ImageMagick - version >= 5.2.1" >&5 - echo $ECHO_N "checking ImageMagick - version >= 5.2.1... $ECHO_C" >&6 - MAGICK_VERSION=`Magick-config --version` >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D006106567B for ; Tue, 25 Sep 2012 18:10:28 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4923D8FC2E for ; Tue, 25 Sep 2012 18:10:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIASpe021137 for ; Tue, 25 Sep 2012 18:10:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIASui021134; Tue, 25 Sep 2012 18:10:28 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:28 GMT Resent-Message-Id: <201209251810.q8PIASui021134@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 602D2106564A for ; Tue, 25 Sep 2012 18:07:11 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 31BF18FC0C for ; Tue, 25 Sep 2012 18:07:11 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 86B794AC037 for ; Wed, 26 Sep 2012 03:07:09 +0900 (JST) Message-Id: <20120926022354.e36685b81e9ade39fee1a3b7@yahoo.com> Date: Wed, 26 Sep 2012 02:23:54 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172014: graphics/backfract: Remove USE_PERL5_BUILD X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:28 -0000 >Number: 172014 >Category: ports >Synopsis: graphics/backfract: Remove USE_PERL5_BUILD >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:27 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Add LICENSE - Remove USE_PERL5_BUILD - Update WWW: line >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/backfract/Makefile graphics/backfract/Makefile --- /usr/ports/graphics/backfract/Makefile 2009-11-20 07:07:40.000000000 +0900 +++ graphics/backfract/Makefile 2012-09-25 03:34:18.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: backfract -# Date created: 8 August 2000 -# Whom: Patrick Gardella -# +# Created by: Patrick Gardella # $FreeBSD: ports/graphics/backfract/Makefile,v 1.11 2009/11/19 22:07:40 pav Exp $ -# PORTNAME= backfract PORTVERSION= 1.1.2 @@ -14,16 +10,20 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Fractal image animated wallpaper program +LICENSE= GPLv2 # (or later) + USE_XORG= x11 -PLIST_FILES= bin/backfract GNU_CONFIGURE= yes -USE_PERL5_BUILD=yes -NO_INSTALL_MANPAGE= yes ALL_TARGET= # none MAKE_JOBS_UNSAFE= yes -pre-configure: - ${PERL} -pi -e "s@-O3@${CFLAGS}@g" ${WRKSRC}/configure +PLIST_FILES= bin/backfract + +post-patch: + @${REINPLACE_CMD} -e \ + "/'-O3'/s|^|#| ; \ + /'-O'/s|^|#| ; \ + s|linux/soundcard.h|sys/soundcard.h|" ${WRKSRC}/configure do-install: ${INSTALL_PROGRAM} ${WRKSRC}/backfract ${PREFIX}/bin diff -urN /usr/ports/graphics/backfract/pkg-descr graphics/backfract/pkg-descr --- /usr/ports/graphics/backfract/pkg-descr 2012-01-08 16:01:20.000000000 +0900 +++ graphics/backfract/pkg-descr 2012-07-08 23:01:49.000000000 +0900 @@ -4,4 +4,4 @@ zooms in, it uses a simple heuristic to try to stay with "interesting" scenes. -WWW: http://www.inetarena.com/~wms/comp/backfract/ +WWW: http://www.igoweb.org/~wms/comp/backfract/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E2B6F106568F for ; Tue, 25 Sep 2012 18:10:28 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9CD9E8FC30 for ; Tue, 25 Sep 2012 18:10:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAS7R021211 for ; Tue, 25 Sep 2012 18:10:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIASbg021208; Tue, 25 Sep 2012 18:10:28 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:28 GMT Resent-Message-Id: <201209251810.q8PIASbg021208@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A7FB51065670 for ; Tue, 25 Sep 2012 18:07:15 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 79B9C8FC12 for ; Tue, 25 Sep 2012 18:07:15 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id C9E402BC03B for ; Wed, 26 Sep 2012 03:07:13 +0900 (JST) Message-Id: <20120926022358.aa9857be5935dde6edca81fc@yahoo.com> Date: Wed, 26 Sep 2012 02:23:58 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172015: graphics/icoutils: Update to version 0.30.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:29 -0000 >Number: 172015 >Category: ports >Synopsis: graphics/icoutils: Update to version 0.30.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:28 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.30.0 >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/icoutils/Makefile graphics/icoutils/Makefile --- /usr/ports/graphics/icoutils/Makefile 2012-06-29 03:37:12.000000000 +0900 +++ graphics/icoutils/Makefile 2012-09-25 03:34:25.000000000 +0900 @@ -1,13 +1,8 @@ -# New ports collection makefile for: icoutils -# Date created: Sun Jun 12 10:19:46 UTC 2005 -# Whom: Mario Sergio Fujikawa Ferreira -# +# Created by: Mario Sergio Fujikawa Ferreira # $FreeBSD: ports/graphics/icoutils/Makefile,v 1.19 2012/06/28 18:37:12 az Exp $ -# PORTNAME= icoutils -PORTVERSION= 0.29.1 -PORTREVISION= 1 +PORTVERSION= 0.30.0 CATEGORIES= graphics MASTER_SITES= SAVANNAH @@ -15,7 +10,6 @@ COMMENT= Convert/extract images in Microsoft Windows(R) icon/cursor files LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= png15:${PORTSDIR}/graphics/png RUN_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww diff -urN /usr/ports/graphics/icoutils/distinfo graphics/icoutils/distinfo --- /usr/ports/graphics/icoutils/distinfo 2011-09-01 07:01:25.000000000 +0900 +++ graphics/icoutils/distinfo 2012-08-30 01:18:39.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (icoutils-0.29.1.tar.bz2) = 646c33e5ecefb2faa254fca01c816ceae3c854855f9dfe9e896e301fc8c61ea0 -SIZE (icoutils-0.29.1.tar.bz2) = 456955 +SHA256 (icoutils-0.30.0.tar.bz2) = b62956462db3f5dc2961469279dab89f41098fd47537a17e781fd553dbaa21c0 +SIZE (icoutils-0.30.0.tar.bz2) = 462718 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E05C1065691 for ; Tue, 25 Sep 2012 18:10:29 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EEC6E8FC17 for ; Tue, 25 Sep 2012 18:10:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIASqt021285 for ; Tue, 25 Sep 2012 18:10:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIASQA021276; Tue, 25 Sep 2012 18:10:28 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:28 GMT Resent-Message-Id: <201209251810.q8PIASQA021276@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 52230106566B for ; Tue, 25 Sep 2012 18:07:20 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id 2402B8FC14 for ; Tue, 25 Sep 2012 18:07:19 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id 12C5247C036 for ; Wed, 26 Sep 2012 03:07:17 +0900 (JST) Message-Id: <20120926022402.f8e8137394e6d02e97c52ebc@yahoo.com> Date: Wed, 26 Sep 2012 02:24:02 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172016: graphics/ida: Fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:29 -0000 >Number: 172016 >Category: ports >Synopsis: graphics/ida: Fix build >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:28 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Fix build New file: files/patch-rd__read-gif.c >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/ida/Makefile graphics/ida/Makefile --- /usr/ports/graphics/ida/Makefile 2012-06-14 05:55:51.000000000 +0900 +++ graphics/ida/Makefile 2012-09-25 03:34:31.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: ida -# Date created: Thu Aug 19 21:13:58 UTC 2004 -# Whom: Andrey Slusar -# +# Created by: Andrey Slusar # $FreeBSD: ports/graphics/ida/Makefile,v 1.27 2012/06/13 20:55:51 pav Exp $ -# PORTNAME= ida PORTVERSION= 2.09 @@ -16,12 +12,9 @@ COMMENT= Small and fast motif-based image viewer and editor LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \ - exif.12:${PORTSDIR}/graphics/libexif - -BROKEN= does not compile +LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg \ + exif:${PORTSDIR}/graphics/libexif OPTIONS_DEFINE= GIF PCF PNG SANE TIFF WEBP DOCS OPTIONS_DEFAULT= GIF PNG TIFF @@ -69,7 +62,7 @@ .endif .if ${PORT_OPTIONS:MTIFF} -LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff +LIB_DEPENDS+= tiff:${PORTSDIR}/graphics/tiff .else MAKE_ARGS+= HAVE_LIBTIFF=no .endif diff -urN /usr/ports/graphics/ida/files/patch-rd__read-gif.c graphics/ida/files/patch-rd__read-gif.c --- /usr/ports/graphics/ida/files/patch-rd__read-gif.c 1970-01-01 09:00:00.000000000 +0900 +++ graphics/ida/files/patch-rd__read-gif.c 2012-09-10 18:53:01.000000000 +0900 @@ -0,0 +1,47 @@ +--- rd/read-gif.c.orig 2012-02-23 02:13:36.000000000 +0900 ++++ rd/read-gif.c 2012-09-10 18:52:32.000000000 +0900 +@@ -13,6 +13,17 @@ + int w,h; + }; + ++static void ++localPrintGifError(void) ++{ ++ char *Err = GifErrorString(); ++ ++ if (Err != NULL) ++ fprintf(stderr, "\nGIF-LIB error: %s.\n", Err); ++ else ++ fprintf(stderr, "\nGIF-LIB undefined error %d.\n", GifError()); ++} ++ + static GifRecordType + gif_fileread(struct gif_state *h) + { +@@ -25,7 +36,7 @@ + if (GIF_ERROR == DGifGetRecordType(h->gif,&RecordType)) { + if (debug) + fprintf(stderr,"gif: DGifGetRecordType failed\n"); +- PrintGifError(); ++ localPrintGifError(); + return -1; + } + switch (RecordType) { +@@ -42,7 +53,7 @@ + if (rc == GIF_ERROR) { + if (debug) + fprintf(stderr,"gif: DGifGetExtension failed\n"); +- PrintGifError(); ++ localPrintGifError(); + return -1; + } + if (debug) { +@@ -108,7 +119,7 @@ + if (GIF_ERROR == DGifGetImageDesc(h->gif)) { + if (debug) + fprintf(stderr,"gif: DGifGetImageDesc failed\n"); +- PrintGifError(); ++ localPrintGifError(); + } + if (NULL == h->gif->SColorMap && + NULL == h->gif->Image.ColorMap) { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 711CC1065672 for ; Tue, 25 Sep 2012 18:10:29 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4D9A58FC1E for ; Tue, 25 Sep 2012 18:10:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAT6s021361 for ; Tue, 25 Sep 2012 18:10:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIATuL021357; Tue, 25 Sep 2012 18:10:29 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:29 GMT Resent-Message-Id: <201209251810.q8PIATuL021357@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 665901065678 for ; Tue, 25 Sep 2012 18:07:25 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 0D3A98FC16 for ; Tue, 25 Sep 2012 18:07:24 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 9545F50036 for ; Wed, 26 Sep 2012 03:07:22 +0900 (JST) Message-Id: <20120926022408.82b7b46ceb70e2ef50db5b00@yahoo.com> Date: Wed, 26 Sep 2012 02:24:08 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172017: graphics/imagesort: Fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:29 -0000 >Number: 172017 >Category: ports >Synopsis: graphics/imagesort: Fix build >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:28 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Fix build - Add LICENSE - Add MAKE_JOBS_SAFE - Support PLIST_FILES Remove file: files/patch-Makefile pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/imagesort/Makefile graphics/imagesort/Makefile --- /usr/ports/graphics/imagesort/Makefile 2012-06-14 05:55:51.000000000 +0900 +++ graphics/imagesort/Makefile 2012-09-25 03:34:40.000000000 +0900 @@ -1,36 +1,48 @@ -# New ports collection makefile for: imagesort -# Date created: Apr 10, 2001 -# Whom: Mark Pulford -# +# Created by: Mark Pulford # $FreeBSD: ports/graphics/imagesort/Makefile,v 1.19 2012/06/13 20:55:51 pav Exp $ -# $MCom: ports/graphics/imagesort/Makefile,v 1.1 2006/10/04 13:18:57 ahze Exp $ PORTNAME= imagesort PORTVERSION= 2.0 PORTREVISION= 11 CATEGORIES= graphics -MASTER_SITES= ${MASTER_SITE_SUNSITE} -MASTER_SITE_SUBDIR= apps/graphics/viewers/X +MASTER_SITES= SUNSITE/apps/graphics/viewers/X MAINTAINER= ports@FreeBSD.org COMMENT= A flexible X utility for managing many image files -LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png \ - gif.5:${PORTSDIR}/graphics/giflib +LICENSE= GPLv2 -BROKEN= does not compile +LIB_DEPENDS= gif:${PORTSDIR}/graphics/giflib \ + jpeg:${PORTSDIR}/graphics/jpeg \ + png15:${PORTSDIR}/graphics/png + +OPTIONS_DEFINE= DOCS USE_XORG= x11 xt USE_GNOME= imlib -CFLAGS:= ${CFLAGS} -I${LOCALBASE}/include +MAKE_JOBS_SAFE= yes + +PORTDOCS= README imagesortrc.sample +PLIST_FILES= bin/imagesort + +.include + +post-patch: + @${REINPLACE_CMD} -e \ + '/^CC/s| =| ?=| ; \ + /^LIBS/s| =.*| = `imlib-config --libs`| ; \ + /^CFLAGS/s| =.*| += `imlib-config --cflags`|' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e \ + 's|unsigned int argc|int argc| ; \ + s|^#endif.*|#endif|' ${WRKSRC}/imagesort.c do-install: ${INSTALL_PROGRAM} ${WRKSRC}/imagesort ${PREFIX}/bin -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/imagesort - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/imagesort - ${INSTALL_DATA} ${WRKSRC}/imagesortrc.sample ${PREFIX}/share/doc/imagesort +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor .endif .include diff -urN /usr/ports/graphics/imagesort/files/patch-Makefile graphics/imagesort/files/patch-Makefile --- /usr/ports/graphics/imagesort/files/patch-Makefile 2012-02-19 19:20:46.000000000 +0900 +++ graphics/imagesort/files/patch-Makefile 1970-01-01 09:00:00.000000000 +0900 @@ -1,20 +0,0 @@ ---- Makefile.orig Tue Apr 10 18:16:03 2001 -+++ Makefile Tue Apr 10 18:18:54 2001 -@@ -7,15 +7,14 @@ - - # you may need to change this if you lack gcc (in which case you may - # not be able to compile at all --CC = gcc - - # you'll probably have to dick with the libs, depending on how your imlib - # is compiled. We default to including all of the extras supported by - # imlib 1.9 --LIBS = -lX11 -lXext -lImlib -ljpeg -lm -lpng -ltiff -lz -lgif -+LIBS = -lX11 -lXext -lImlib -ljpeg -lm -lpng -ltiff -lz -lgif - #LIBS = -lImlib -lX11 -lXext -ljpeg -lgif -lm - --CFLAGS = -g -L$(XDIR)/lib -I$(XDIR)/include -+CFLAGS += -L$(LOCALBASE)/lib -I$(LOCALBASE)/include - - all: imagesort.o - diff -urN /usr/ports/graphics/imagesort/pkg-plist graphics/imagesort/pkg-plist --- /usr/ports/graphics/imagesort/pkg-plist 2001-06-05 17:21:53.000000000 +0900 +++ graphics/imagesort/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,4 +0,0 @@ -bin/imagesort -%%PORTDOCS%%share/doc/imagesort/README -%%PORTDOCS%%share/doc/imagesort/imagesortrc.sample -%%PORTDOCS%%@dirrm share/doc/imagesort >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7EA21065677 for ; Tue, 25 Sep 2012 18:10:29 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A412C8FC24 for ; Tue, 25 Sep 2012 18:10:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAT8H021436 for ; Tue, 25 Sep 2012 18:10:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIATWB021430; Tue, 25 Sep 2012 18:10:29 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:29 GMT Resent-Message-Id: <201209251810.q8PIATWB021430@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F04E1065670 for ; Tue, 25 Sep 2012 18:07:29 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id 40EB78FC0A for ; Tue, 25 Sep 2012 18:07:29 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 9CC8623C031 for ; Wed, 26 Sep 2012 03:07:27 +0900 (JST) Message-Id: <20120926022412.9727a6d49eb38e035f5a45df@yahoo.com> Date: Wed, 26 Sep 2012 02:24:12 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172018: graphics/lcms-python: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:30 -0000 >Number: 172018 >Category: ports >Synopsis: graphics/lcms-python: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:29 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Add LICENSE - Support BUILD_WRKSRC/INSTALL_WRKSRC >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/lcms-python/Makefile graphics/lcms-python/Makefile --- /usr/ports/graphics/lcms-python/Makefile 2011-10-24 12:33:06.000000000 +0900 +++ graphics/lcms-python/Makefile 2012-09-25 03:34:50.000000000 +0900 @@ -1,39 +1,36 @@ -# New ports collection makefile for: lcms-python -# Date created: 13/10/2009 -# Whom: stas -# +# Created by: stas # $FreeBSD: ports/graphics/lcms-python/Makefile,v 1.5 2011/10/24 03:33:06 stas Exp $ -# PORTNAME= lcms PORTVERSION= 1.19 CATEGORIES= graphics devel python -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/1.19 \ - http://www.littlecms.com/ +MASTER_SITES= SF PKGNAMESUFFIX= -python MAINTAINER= ports@FreeBSD.org COMMENT= Light Color Management System (python bindings) +LICENSE= MIT + LIB_DEPENDS+= lcms.1:${PORTSDIR}/graphics/lcms +BUILD_WRKSRC= ${WRKSRC}/python +INSTALL_WRKSRC= ${WRKSRC}/python + USE_PYTHON= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-python -LDFLAGS+= -L${LOCALBASE}/lib -WRKSRC= ${WRKDIR}/lcms-1.19 -PLIST_FILES= ${PYTHON_SITELIBDIR:C,${PREFIX}/?,,}/_lcms.so \ - ${PYTHON_SITELIBDIR:C,${PREFIX}/?,,}/lcms.py -.include +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -do-build: - cd ${WRKSRC}/python && ${SETENV} ${MAKE_ENV} ${MAKE} all +PLIST_FILES= %%PYTHON_SITELIBDIR%%/_lcms.so \ + %%PYTHON_SITELIBDIR%%/lcms.py do-install: - ${INSTALL_DATA} ${WRKSRC}/python/.libs/_lcms.so \ + ${INSTALL_DATA} ${INSTALL_WRKSRC}/.libs/_lcms.so \ ${PYTHON_SITELIBDIR}/_lcms.so - ${INSTALL_DATA} ${WRKSRC}/python/lcms.py \ + ${INSTALL_DATA} ${INSTALL_WRKSRC}/lcms.py \ ${PYTHON_SITELIBDIR}/lcms.py -.include +.include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 25F471065680 for ; Tue, 25 Sep 2012 18:10:30 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 02C298FC15 for ; Tue, 25 Sep 2012 18:10:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIATLa021514 for ; Tue, 25 Sep 2012 18:10:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAT4I021510; Tue, 25 Sep 2012 18:10:29 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:29 GMT Resent-Message-Id: <201209251810.q8PIAT4I021510@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C112D106566B for ; Tue, 25 Sep 2012 18:07:33 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 923558FC17 for ; Tue, 25 Sep 2012 18:07:33 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id C8A6F4AC038 for ; Wed, 26 Sep 2012 03:07:31 +0900 (JST) Message-Id: <20120926022415.d62565d0077124824e9bd2aa@yahoo.com> Date: Wed, 26 Sep 2012 02:24:15 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172019: graphics/metapixel: Support PORTEXAMPLES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:30 -0000 >Number: 172019 >Category: ports >Synopsis: graphics/metapixel: Support PORTEXAMPLES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:29 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Add LICENSE - Support PORTEXAMPLES >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/metapixel/Makefile graphics/metapixel/Makefile --- /usr/ports/graphics/metapixel/Makefile 2012-06-01 14:20:21.000000000 +0900 +++ graphics/metapixel/Makefile 2012-09-25 03:34:56.000000000 +0900 @@ -1,7 +1,4 @@ -# Ports collection makefile for: metapixel -# Date created: 2002-05-23 -# Whom: Tilman Linneweh -# +# Created by: Tilman Linneweh # $FreeBSD: ports/graphics/metapixel/Makefile,v 1.28 2012/06/01 05:20:21 dinoex Exp $ PORTNAME= metapixel @@ -14,20 +11,28 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A photomosaic generator -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ - jpeg.11:${PORTSDIR}/graphics/jpeg \ - gif.5:${PORTSDIR}/graphics/giflib +LICENSE= GPLv2 # (or later) +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= gif:${PORTSDIR}/graphics/giflib \ + jpeg:${PORTSDIR}/graphics/jpeg \ + png15:${PORTSDIR}/graphics/png + +OPTIONS_DEFINE= DOCS EXAMPLES USE_GMAKE= yes -CPPFLAGS+= -I${LOCALBASE}/include -I. -I${LOCALBASE}/include/libpng15 -LDFLAGS+= -L${LOCALBASE}/lib +MAKE_JOBS_SAFE= yes + +CPPFLAGS+= $$(libpng-config --I_opts) -I${LOCALBASE}/include -I. +LDFLAGS+= $$(libpng-config --L_opts) -L${LOCALBASE}/lib -PLIST_FILES= bin/metapixel bin/metapixel-convert bin/metapixel-imagesize \ - bin/metapixel-prepare bin/metapixel-sizesort \ - share/examples/metapixel/metapixelrc -PLIST_DIRS= share/examples/metapixel -PORTDOCS= README NEWS MAN1= metapixel.1 +PORTDOCS= README NEWS +PORTEXAMPLES= metapixelrc +PLIST_FILES= bin/metapixel bin/metapixel-convert bin/metapixel-imagesize \ + bin/metapixel-prepare bin/metapixel-sizesort + +.include post-patch: @${RM} ${WRKSRC}/getopt.h @@ -38,12 +43,14 @@ ${INSTALL_PROGRAM} ${WRKSRC}/metapixel-imagesize ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/metapixel-prepare ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/metapixel-sizesort ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/metapixel.1 ${PREFIX}/man/man1 - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/metapixelrc ${EXAMPLESDIR} -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/metapixel.1 ${MANPREFIX}/man/man1 +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTEXAMPLES} ${EXAMPLESDIR} +.endif .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8014A1065670 for ; Tue, 25 Sep 2012 18:10:30 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5B47A8FC1F for ; Tue, 25 Sep 2012 18:10:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAUVp021602 for ; Tue, 25 Sep 2012 18:10:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAUpc021592; Tue, 25 Sep 2012 18:10:30 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:30 GMT Resent-Message-Id: <201209251810.q8PIAUpc021592@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E97341065675 for ; Tue, 25 Sep 2012 18:07:38 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id 9338F8FC12 for ; Tue, 25 Sep 2012 18:07:38 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 6486523C031 for ; Wed, 26 Sep 2012 03:07:36 +0900 (JST) Message-Id: <20120926022419.5103a389fd98985a90cc4848@yahoo.com> Date: Wed, 26 Sep 2012 02:24:19 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172020: graphics/pho: Update to version 0.9.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:30 -0000 >Number: 172020 >Category: ports >Synopsis: graphics/pho: Update to version 0.9.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:30 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.9.8 New file: files/patch-pho.c Remove file: files/patch-options >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/pho/Makefile graphics/pho/Makefile --- /usr/ports/graphics/pho/Makefile 2012-06-01 14:20:33.000000000 +0900 +++ graphics/pho/Makefile 2012-09-25 03:35:03.000000000 +0900 @@ -1,13 +1,8 @@ -# New ports collection makefile for: pho -# Date created: 10 April 2003 -# Whom: Roland Jesse -# +# Created by: Roland Jesse # $FreeBSD: ports/graphics/pho/Makefile,v 1.23 2012/06/01 05:20:33 dinoex Exp $ -# PORTNAME= pho -DISTVERSION= 0.9.7-pre7 -PORTREVISION= 1 +PORTVERSION= 0.9.8 CATEGORIES= graphics MASTER_SITES= http://shallowsky.com/software/pho/ @@ -16,20 +11,25 @@ LICENSE= GPLv2 -USE_GMAKE= yes -USE_GNOME= gtk20 -MAKE_ARGS= INSTALLPREFIX="${PREFIX}" -ALL_TARGET= pho WRKSRC= ${WRKDIR}/${PORTNAME} +USE_GNOME= gtk20 +USE_GMAKE= yes +MAKE_ENV= INSTALLPREFIX="${PREFIX}" +ALL_TARGET= ${PORTNAME} +MAKE_JOBS_SAFE= yes + MAN1= pho.1 PLIST_FILES= bin/pho post-patch: - @${REINPLACE_CMD} -e 's|make|$$(MAKE)| ; \ - /bin/s|$$(INSTALL)|${INSTALL_PROGRAM}| ; \ - /man/s|$$(INSTALL)|${INSTALL_MAN}| ; \ - /CFLAGS/s|-g|| ; s|^G1FLAGS|#&|' ${WRKSRC}/Makefile - @${REINPLACE_CMD} -e 's|-Wall -g -O2 ||' ${WRKSRC}/exif/Makefile + @${REINPLACE_CMD} -e \ + '/^CFLAGS/s|-g -Wall -pedantic|-Wall| ; \ + s|^INSTALL|#INSTALL| ; \ + s| make | $$(MAKE) | ; \ + /bin/s|$$(INSTALL)|$${BSD_INSTALL_PROGRAM}| ; \ + /man/s|$$(INSTALL)|$${BSD_INSTALL_MAN}|' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e \ + '/^CFLAGS/s|-Wall -g -O2|-Wall|' ${WRKSRC}/exif/Makefile .include diff -urN /usr/ports/graphics/pho/distinfo graphics/pho/distinfo --- /usr/ports/graphics/pho/distinfo 2011-12-16 23:36:43.000000000 +0900 +++ graphics/pho/distinfo 2012-09-12 18:37:19.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (pho-0.9.7-pre7.tar.gz) = 71db5a3824627b400d2feedf752da45a69804a0ce7b14bb789d25674b602c87a -SIZE (pho-0.9.7-pre7.tar.gz) = 127940 +SHA256 (pho-0.9.8.tar.gz) = 33d9ce822e4cf009d8fd3d0f1545960779ab099cadd8a8b5cac30b29f369e18e +SIZE (pho-0.9.8.tar.gz) = 129487 diff -urN /usr/ports/graphics/pho/files/patch-options graphics/pho/files/patch-options --- /usr/ports/graphics/pho/files/patch-options 2009-08-16 07:04:50.000000000 +0900 +++ graphics/pho/files/patch-options 1970-01-01 09:00:00.000000000 +0900 @@ -1,34 +0,0 @@ ---- gmain.c.orig Mon Jul 25 12:18:05 2005 -+++ gmain.c Mon Sep 11 16:05:05 2006 -@@ -668,6 +668,7 @@ - - int main(int argc, char** argv) - { -+ int options = 1; - /* Initialize some defaults from environment variables, - * before reading cmdline args. - */ -@@ -877,8 +877,11 @@ - - while (argc > 1) - { -- if (argv[1][0] == '-') -- CheckArg(argv[1]); -+ if (argv[1][0] == '-' && options) -+ if (strcmp(argv[1], "--")) -+ CheckArg(argv[1]); -+ else -+ options = 0; - else { - AddImage(argv[1]); - } ---- pho.c.orig Mon Mar 21 07:28:03 2005 -+++ pho.c Mon Sep 11 16:05:05 2006 -@@ -439,6 +439,7 @@ - printf("\t-d: Debug messages\n"); - printf("\t-h: Help: Print this summary\n"); - printf("\t-v: Verbose help: Print a summary of key bindings\n"); -+ printf("\t--: Assume no more options are given\n"); - exit(1); - } - diff -urN /usr/ports/graphics/pho/files/patch-pho.c graphics/pho/files/patch-pho.c --- /usr/ports/graphics/pho/files/patch-pho.c 1970-01-01 09:00:00.000000000 +0900 +++ graphics/pho/files/patch-pho.c 2012-09-12 18:43:20.000000000 +0900 @@ -0,0 +1,10 @@ +--- pho.c.orig Mon Mar 21 07:28:03 2005 ++++ pho.c Mon Sep 11 16:05:05 2006 +@@ -439,6 +439,7 @@ + printf("\t-d: Debug messages\n"); + printf("\t-h: Help: Print this summary\n"); + printf("\t-v: Verbose help: Print a summary of key bindings\n"); ++ printf("\t--: Assume no more options are given\n"); + exit(1); + } + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:31 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DB52B106567A for ; Tue, 25 Sep 2012 18:10:30 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B6EB68FC29 for ; Tue, 25 Sep 2012 18:10:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAUWF021677 for ; Tue, 25 Sep 2012 18:10:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAUoM021669; Tue, 25 Sep 2012 18:10:30 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:30 GMT Resent-Message-Id: <201209251810.q8PIAUoM021669@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DE1611065745 for ; Tue, 25 Sep 2012 18:07:43 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id 244538FC18 for ; Tue, 25 Sep 2012 18:07:43 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id 3168A47C036 for ; Wed, 26 Sep 2012 03:07:41 +0900 (JST) Message-Id: <20120926022422.f9813ec1b8a315191167c2a7@yahoo.com> Date: Wed, 26 Sep 2012 02:24:22 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172021: graphics/pstoedit: Update to version 3.61 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:31 -0000 >Number: 172021 >Category: ports >Synopsis: graphics/pstoedit: Update to version 3.61 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:30 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 3.61 >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/pstoedit/Makefile graphics/pstoedit/Makefile --- /usr/ports/graphics/pstoedit/Makefile 2012-07-26 14:40:22.000000000 +0900 +++ graphics/pstoedit/Makefile 2012-09-25 03:35:10.000000000 +0900 @@ -1,22 +1,17 @@ -# New ports collection makefile for: pstodit -# Date created: 03 July 1998 -# Whom: Thomas Gellekum -# +# Created by: Thomas Gellekum # $FreeBSD: ports/graphics/pstoedit/Makefile,v 1.73 2012/07/26 05:40:22 bapt Exp $ -# PORTNAME= pstoedit -PORTVERSION= 3.60 -PORTREVISION= 1 +PORTVERSION= 3.61 CATEGORIES= graphics print MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Convert PostScript to other vector graphic formats -LICENSE= GPLv2 +LICENSE= GPLv2 # (or later) -LIB_DEPENDS= gd.4:${PORTSDIR}/graphics/gd +LIB_DEPENDS= gd:${PORTSDIR}/graphics/gd OPTIONS_DEFINE= MAGICK EMF MING PLOTUTILS DOCS EXAMPLES OPTIONS_DEFAULT= MAGICK EMF PLOTUTILS @@ -25,13 +20,12 @@ PLOTUTILS_DESC= Enable libplot interface USE_GNOME= gnomehack -USE_PKGCONFIG= yes USE_GHOSTSCRIPT= yes +USE_PKGCONFIG= build USE_AUTOTOOLS= libtool USE_LDCONFIG= yes -MAKE_JOBS_UNSAFE=yes +MAKE_JOBS_SAFE=yes -CFLAGS+= -DHAVE_LIBGD CPPFLAGS+= -I${LOCALBASE}/include/ming -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib @@ -40,7 +34,7 @@ .include .if ${PORT_OPTIONS:MMAGICK} -LIB_DEPENDS+= Magick++.5:${PORTSDIR}/graphics/ImageMagick +LIB_DEPENDS+= Magick++:${PORTSDIR}/graphics/ImageMagick PLIST_SUB+= IMAGEMAGICK="" .else CONFIGURE_ARGS+= --without-magick @@ -48,7 +42,7 @@ .endif .if ${PORT_OPTIONS:MEMF} -LIB_DEPENDS+= EMF.1:${PORTSDIR}/graphics/libemf +LIB_DEPENDS+= EMF:${PORTSDIR}/graphics/libemf CONFIGURE_ARGS+= --with-libemf-include=${LOCALBASE}/include/libEMF PLIST_SUB+= EMF="" .else @@ -57,7 +51,7 @@ .endif .if ${PORT_OPTIONS:MMING} -LIB_DEPENDS+= ming.5:${PORTSDIR}/graphics/ming +LIB_DEPENDS+= ming:${PORTSDIR}/graphics/ming PLIST_SUB+= MING="" .else CONFIGURE_ARGS+= --without-swf @@ -65,7 +59,7 @@ .endif .if ${PORT_OPTIONS:MPLOTUTILS} -LIB_DEPENDS+= plotter.4:${PORTSDIR}/graphics/plotutils +LIB_DEPENDS+= plotter:${PORTSDIR}/graphics/plotutils PLIST_SUB+= PLOTUTILS="" .else CONFIGURE_ARGS+= --without-libplot diff -urN /usr/ports/graphics/pstoedit/distinfo graphics/pstoedit/distinfo --- /usr/ports/graphics/pstoedit/distinfo 2011-10-18 22:06:04.000000000 +0900 +++ graphics/pstoedit/distinfo 2012-08-30 01:30:25.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (pstoedit-3.60.tar.gz) = 118e58aa2c65e4193f1cc5a56c569e160752f654bf35e39f790d27b223b62391 -SIZE (pstoedit-3.60.tar.gz) = 988351 +SHA256 (pstoedit-3.61.tar.gz) = e9935f5510fc5a3227bd31a74e88911f02a4c8516f3e0fe9fbc0dc780f2460db +SIZE (pstoedit-3.61.tar.gz) = 989480 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:31 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2FCF2106567D for ; Tue, 25 Sep 2012 18:10:31 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 08CB08FC1D for ; Tue, 25 Sep 2012 18:10:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAUtq021753 for ; Tue, 25 Sep 2012 18:10:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAUc2021744; Tue, 25 Sep 2012 18:10:30 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:30 GMT Resent-Message-Id: <201209251810.q8PIAUc2021744@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C347106566C for ; Tue, 25 Sep 2012 18:07:54 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id D929D8FC1C for ; Tue, 25 Sep 2012 18:07:53 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id CB1772BC03B for ; Wed, 26 Sep 2012 03:07:45 +0900 (JST) Message-Id: <20120926022426.5d2ef237b77e2b834a698dfb@yahoo.com> Date: Wed, 26 Sep 2012 02:24:26 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172022: graphics/sane-backends: Update to version 1.0.23 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:31 -0000 >Number: 172022 >Category: ports >Synopsis: graphics/sane-backends: Update to version 1.0.23 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:30 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.0.23 New file: files/patch-backend__kodakaio.c files/patch-backend__kvs40xx.h files/patch-backend__kvs40xx_opt.c files/patch-backend__niash.c Remove file: files/patch-Makefile.in files/patch-backend-xerox_mfp.c files/patch-backend__epson2-commands.c files/patch-backend__epson2.c files/patch-backend__magicolor.c files/patch-backend__xerox_mfp-tcp.c files/patch-doc_Makefile.in files/patch-frontend__Makefile.in files/patch-include_sane_sanei_tcp.h files/patch-sanei_sanei_usb.c >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/sane-backends/Makefile graphics/sane-backends/Makefile --- /usr/ports/graphics/sane-backends/Makefile 2012-06-27 19:35:47.000000000 +0900 +++ graphics/sane-backends/Makefile 2012-09-25 03:35:18.000000000 +0900 @@ -1,45 +1,44 @@ -# New ports collection makefile for: sane-backends -# Date created: Sat Jul 19 16:23:10 MET DST 1997 -# Whom: gary@hotlava.com -# +# Created by: gary@hotlava.com # $FreeBSD: ports/graphics/sane-backends/Makefile,v 1.106 2012/06/27 10:35:47 ale Exp $ -# PORTNAME= sane-backends -PORTVERSION= 1.0.22 -PORTREVISION= 2 +PORTVERSION= 1.0.23 CATEGORIES= graphics -MASTER_SITES= http://alioth.debian.org/frs/download.php/3503/ \ - ftp://ftp2.sane-project.org/pub/sane/%SUBDIR%/ -MASTER_SITE_SUBDIR= ${PORTNAME}-${PORTVERSION} +MASTER_SITES= http://alioth.debian.org/frs/download.php/3752/:3752 \ + http://alioth.debian.org/frs/download.php/3753/:3753 \ + http://alioth.debian.org/frs/download.php/3754/:3754 +DISTFILES= ${DISTNAME}${EXTRACT_SUFX}.1:3752 \ + ${DISTNAME}${EXTRACT_SUFX}.2:3753 \ + ${DISTNAME}${EXTRACT_SUFX}.3:3754 +EXTRACT_ONLY= # need to concatenate before extraction MAINTAINER= ports@FreeBSD.org COMMENT= API for access to scanners, digitals camera, frame grabbers etc -LICENSE= GPLv2 GPLv3 -LICENSE_COMB= dual +LICENSE= GPLv2 # (or later) -LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \ - tiff.4:${PORTSDIR}/graphics/tiff - -OPTIONS_DEFINE= USB NLS GPHOTO2 SNMP AVAHI IEEE1284 IPV6 DOCS -OPTIONS_DEFAULT= USB +LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg \ + tiff:${PORTSDIR}/graphics/tiff +OPTIONS_DEFINE= USB NLS GPHOTO2 SNMP AVAHI IEEE1284 IPV6 CUPS DOCS +OPTIONS_DEFAULT=USB USB_DESC= USB support GPHOTO2_DESC= gPhoto2 support IEEE1284_DESC= libieee1284 support +USE_GNOME= gnomehack +USE_PKGCONFIG= build USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-docdir=${DOCSDIR} \ +CONFIGURE_ARGS= --with-docdir=${WRKDIR}/tmproot \ --disable-latex \ --disable-locking \ --enable-pthread USE_LDCONFIG= yes -MAKE_JOBS_UNSAFE= yes +MAKE_JOBS_SAFE= yes USE_RC_SUBR= saned -SUB_FILES+= pkg-message +SUB_FILES= pkg-message USERS= saned GROUPS= saned @@ -50,13 +49,9 @@ .include "Makefile.man" .include -.if empty(PORT_OPTIONS:MDOCS) -MAKE_ENV+= NOPORTDOCS=1 -.endif - .if ${PORT_OPTIONS:MUSB} .if ${OSVERSION} < 800069 -LIB_DEPENDS+= usb-0.1.8:${PORTSDIR}/devel/libusb +LIB_DEPENDS+= usb-0.1:${PORTSDIR}/devel/libusb .endif .else CONFIGURE_ARGS+= --disable-libusb @@ -75,7 +70,7 @@ .endif .if ${PORT_OPTIONS:MGPHOTO2} -LIB_DEPENDS+= gphoto2.2:${PORTSDIR}/graphics/libgphoto2 +LIB_DEPENDS+= gphoto2:${PORTSDIR}/graphics/libgphoto2 MAN5+= sane-gphoto2.5 PLIST_SUB+= GPHOTO2="" .else @@ -84,29 +79,49 @@ .endif .if ${PORT_OPTIONS:MSNMP} -LIB_DEPENDS+= netsnmp.30:${PORTSDIR}/net-mgmt/net-snmp +LIB_DEPENDS+= netsnmp:${PORTSDIR}/net-mgmt/net-snmp .else CONFIGURE_ARGS+= --without-snmp .endif .if ${PORT_OPTIONS:MAVAHI} -LIB_DEPENDS+= avahi-client.3:${PORTSDIR}/net/avahi-app +LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app CONFIGURE_ARGS+= --enable-avahi .endif .if ${PORT_OPTIONS:MIEEE1284} -LIB_DEPENDS+= ieee1284.5:${PORTSDIR}/sysutils/libieee1284 +LIB_DEPENDS+= ieee1284:${PORTSDIR}/sysutils/libieee1284 PLIST_SUB+= IEEE1284="" +MAN5+= sane-canon_pp.5 sane-hpsj5s.5 sane-mustek_pp.5 .else CONFIGURE_ENV+= sane_cv_use_libieee1284=no PLIST_SUB+= IEEE1284="@comment " .endif +.if ${PORT_OPTIONS:MCUPS} +LIB_DEPENDS+= cups:${PORTSDIR}/print/cups-client +.else +CONFIGURE_ENV+= ac_cv_header_cups_cups_h=no +.endif + +post-extract: + @((cd ${DISTDIR} && ${CAT} ${DISTFILES:C/:[^:]+$//}) | (cd ${WRKDIR} \ + && ${EXTRACT_CMD} ${EXTRACT_BEFOR_ARGS} ${EXTRACT_AFTER_ARGS})) + post-patch: - @${REINPLACE_CMD} -e '/^for ac_header in/s|libc.h||g ; \ - s|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e '/^for ac_header in/s|libc.h|cups/cups.h| ; \ + s|-e .*/cups.h|"$$ac_cv_header_cups_cups_h" = "yes"| ; \ + s|-pthread|${PTHREAD_LIBS}|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e '/^dist_doc_DATA/s|COPYING||' \ + ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e '/^pkgconfigdir/s|@libdir@|@prefix@/libdata|' \ + ${WRKSRC}/tools/Makefile.in post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + @(cd ${WRKDIR}/tmproot && ${COPYTREE_SHARE} . ${DOCSDIR}) +.endif @${CAT} ${PKGMESSAGE} .include diff -urN /usr/ports/graphics/sane-backends/Makefile.man graphics/sane-backends/Makefile.man --- /usr/ports/graphics/sane-backends/Makefile.man 2011-08-08 23:41:38.000000000 +0900 +++ graphics/sane-backends/Makefile.man 2012-08-29 19:40:43.000000000 +0900 @@ -38,8 +38,10 @@ MAN5+= sane-hs2p.5 MAN5+= sane-ibm.5 MAN5+= sane-kodak.5 +MAN5+= sane-kodakaio.5 MAN5+= sane-kvs1025.5 MAN5+= sane-kvs20xx.5 +MAN5+= sane-kvs40xx.5 MAN5+= sane-leo.5 MAN5+= sane-lexmark.5 MAN5+= sane-ma1509.5 diff -urN /usr/ports/graphics/sane-backends/distinfo graphics/sane-backends/distinfo --- /usr/ports/graphics/sane-backends/distinfo 2011-08-08 23:41:38.000000000 +0900 +++ graphics/sane-backends/distinfo 2012-08-29 16:07:13.000000000 +0900 @@ -1,2 +1,6 @@ -SHA256 (sane-backends-1.0.22.tar.gz) = 9f84a16800497f0b79a278531bb1a0f438de6ce8cf509fefc65a252e29f90c54 -SIZE (sane-backends-1.0.22.tar.gz) = 5150661 +SHA256 (sane-backends-1.0.23.tar.gz.1) = 551d7e0c89d18ca438bfce4f1c242b59485195c493c5f935a3b11e724ee39537 +SIZE (sane-backends-1.0.23.tar.gz.1) = 1792000 +SHA256 (sane-backends-1.0.23.tar.gz.2) = b487df0d8dc921803577ee34ceaa676a4a3b6715cd4d9a229b43d6a501a1baab +SIZE (sane-backends-1.0.23.tar.gz.2) = 1792000 +SHA256 (sane-backends-1.0.23.tar.gz.3) = af91e84cb72dc2b1fa4c7eaba948ae6ab8e2ab353f79805a21de4ac52de5b81a +SIZE (sane-backends-1.0.23.tar.gz.3) = 1758350 diff -urN /usr/ports/graphics/sane-backends/files/patch-Makefile.in graphics/sane-backends/files/patch-Makefile.in --- /usr/ports/graphics/sane-backends/files/patch-Makefile.in 2010-05-21 20:08:49.000000000 +0900 +++ graphics/sane-backends/files/patch-Makefile.in 1970-01-01 09:00:00.000000000 +0900 @@ -1,45 +0,0 @@ ---- Makefile.in.orig 2010-04-14 09:52:59.000000000 +0900 -+++ Makefile.in 2010-05-10 21:48:54.000000000 +0900 -@@ -82,7 +82,6 @@ - am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' --am__installdirs = "$(DESTDIR)$(docdir)" - DATA = $(dist_doc_DATA) - RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -@@ -292,7 +291,7 @@ - top_srcdir = @top_srcdir@ - SUBDIRS = include lib sanei backend frontend tools doc po - DIST_SUBDIRS = include lib sanei backend frontend tools doc po japi testsuite --dist_doc_DATA = AUTHORS ChangeLog COPYING LICENSE NEWS PROBLEMS PROJECTS \ -+dist_doc_DATA = AUTHORS ChangeLog LICENSE NEWS PROBLEMS PROJECTS \ - README README.aix README.beos README.darwin README.djpeg README.freebsd \ - README.hp-ux README.linux README.netbsd README.openbsd README.os2 \ - README.solaris README.unixware2 README.unixware7 README.windows \ -@@ -375,6 +374,7 @@ - distclean-libtool: - -rm -f libtool config.lt - install-dist_docDATA: $(dist_doc_DATA) -+ifndef NOPORTDOCS - @$(NORMAL_INSTALL) - test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)" - @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ -@@ -386,6 +386,7 @@ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ - done -+endif - - uninstall-dist_docDATA: - @$(NORMAL_UNINSTALL) -@@ -710,9 +711,6 @@ - all-am: Makefile $(DATA) - installdirs: installdirs-recursive - installdirs-am: -- for dir in "$(DESTDIR)$(docdir)"; do \ -- test -z "$$dir" || $(MKDIR_P) "$$dir"; \ -- done - install: install-recursive - install-exec: install-exec-recursive - install-data: install-data-recursive diff -urN /usr/ports/graphics/sane-backends/files/patch-backend-xerox_mfp.c graphics/sane-backends/files/patch-backend-xerox_mfp.c --- /usr/ports/graphics/sane-backends/files/patch-backend-xerox_mfp.c 2012-02-19 10:36:55.000000000 +0900 +++ graphics/sane-backends/files/patch-backend-xerox_mfp.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,73 +0,0 @@ -From 5ea227caeacd504b64eef301e83fa63e0a25b3f7 Mon Sep 17 00:00:00 2001 -From: Alex Belkin -Date: Tue, 8 Mar 2011 17:57:19 +0300 -Subject: [PATCH] keep usb device by default (correct for bug introduced by tcp sub-backend - ---- - backend/xerox_mfp.c | 27 +++++++++++---------------- - 1 files changed, 11 insertions(+), 16 deletions(-) - -diff --git a/backend/xerox_mfp.c b/backend/xerox_mfp.c -index e08b50f..d4672a7 100644 ---- backend/xerox_mfp.c.orig -+++ backend/xerox_mfp.c -@@ -37,10 +37,10 @@ - static const SANE_Device **devlist = NULL; /* sane_get_devices array */ - static struct device *devices_head = NULL; /* sane_get_devices list */ - --transport available_transports[] = { -+enum { TRANSPORT_USB, TRANSPORT_TCP, TRANSPORTS_MAX }; -+transport available_transports[TRANSPORTS_MAX] = { - { "usb", usb_dev_request, usb_dev_open, usb_dev_close, usb_configure_device }, - { "tcp", tcp_dev_request, tcp_dev_open, tcp_dev_close, tcp_configure_device }, -- { 0 } - }; - - static int resolv_state(int state) -@@ -824,7 +824,13 @@ free_devices (void) - devices_head = NULL; - } - --/* SANE API ignores return code of this callback */ -+static transport *tr_from_devname(SANE_String_Const devname) -+{ -+ if (strncmp("tcp", devname, 3) == 0) -+ return &available_transports[TRANSPORT_TCP]; -+ return &available_transports[TRANSPORT_USB]; -+} -+ - static SANE_Status - list_one_device (SANE_String_Const devname) - { -@@ -839,12 +845,7 @@ list_one_device (SANE_String_Const devname) - return SANE_STATUS_GOOD; - } - -- for (tr = available_transports; tr->ttype; tr++) { -- if (!strncmp (devname, tr->ttype, strlen(tr->ttype))) -- break; -- } -- if (!tr->ttype) -- return SANE_STATUS_INVAL; -+ tr = tr_from_devname(devname); - - dev = calloc (1, sizeof (struct device)); - if (dev == NULL) -@@ -878,13 +879,7 @@ list_one_device (SANE_String_Const devname) - static SANE_Status - list_conf_devices (UNUSED (SANEI_Config * config), const char *devname) - { -- transport *tr; -- -- for (tr = available_transports; tr->ttype; tr++) { -- if (!strncmp (devname, tr->ttype, strlen(tr->ttype))) -- return tr->configure_device(devname, list_one_device); -- } -- return SANE_STATUS_INVAL; -+ return tr_from_devname(devname)->configure_device(devname, list_one_device); - } - - SANE_Status --- -1.7.2.5 - diff -urN /usr/ports/graphics/sane-backends/files/patch-backend__epson2-commands.c graphics/sane-backends/files/patch-backend__epson2-commands.c --- /usr/ports/graphics/sane-backends/files/patch-backend__epson2-commands.c 2010-05-21 20:08:49.000000000 +0900 +++ graphics/sane-backends/files/patch-backend__epson2-commands.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,10 +0,0 @@ ---- backend/epson2-commands.c.orig 2010-04-05 22:18:04.000000000 +0900 -+++ backend/epson2-commands.c 2010-05-10 22:24:33.000000000 +0900 -@@ -21,6 +21,7 @@ - - #include - #include -+#include - - #include "epson2.h" - #include "epson2-io.h" diff -urN /usr/ports/graphics/sane-backends/files/patch-backend__epson2.c graphics/sane-backends/files/patch-backend__epson2.c --- /usr/ports/graphics/sane-backends/files/patch-backend__epson2.c 2010-05-21 20:08:49.000000000 +0900 +++ graphics/sane-backends/files/patch-backend__epson2.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- backend/epson2.c.orig 2010-04-05 22:18:04.000000000 +0900 -+++ backend/epson2.c 2010-05-10 22:18:47.000000000 +0900 -@@ -57,6 +57,8 @@ - #include - #include - #include -+#include -+#include - - #include "sane/saneopts.h" - #include "sane/sanei_scsi.h" diff -urN /usr/ports/graphics/sane-backends/files/patch-backend__kodakaio.c graphics/sane-backends/files/patch-backend__kodakaio.c --- /usr/ports/graphics/sane-backends/files/patch-backend__kodakaio.c 1970-01-01 09:00:00.000000000 +0900 +++ graphics/sane-backends/files/patch-backend__kodakaio.c 2012-08-29 16:36:27.000000000 +0900 @@ -0,0 +1,13 @@ +--- backend/kodakaio.c.orig 2012-08-10 09:33:29.000000000 +0900 ++++ backend/kodakaio.c 2012-08-29 16:35:36.000000000 +0900 +@@ -165,6 +165,10 @@ + #include + #include + #include ++#include ++#ifdef HAVE_SYS_SOCKET_H ++#include ++#endif + + #if HAVE_CUPS + /* used for auto detecting network printers */ diff -urN /usr/ports/graphics/sane-backends/files/patch-backend__kvs40xx.h graphics/sane-backends/files/patch-backend__kvs40xx.h --- /usr/ports/graphics/sane-backends/files/patch-backend__kvs40xx.h 1970-01-01 09:00:00.000000000 +0900 +++ graphics/sane-backends/files/patch-backend__kvs40xx.h 2012-08-29 17:02:44.000000000 +0900 @@ -0,0 +1,19 @@ +--- backend/kvs40xx.h.orig 2012-08-20 05:27:18.000000000 +0900 ++++ backend/kvs40xx.h 2012-08-29 17:01:58.000000000 +0900 +@@ -10,6 +10,7 @@ + + #include "../include/sane/config.h" + #include ++#include + + #undef BACKEND_NAME + #define BACKEND_NAME kvs40xx +@@ -208,7 +209,7 @@ + SANE_Status kvs40xx_document_exist (struct scanner *s); + SANE_Status get_buffer_status (struct scanner *s, unsigned *data_avalible); + SANE_Status kvs40xx_scan (struct scanner *s); +-SANE_Status kvs40xx_sense_handler (int fd, u_char * sense_buffer, void *arg); ++SANE_Status kvs40xx_sense_handler (int fd, unsigned char * sense_buffer, void *arg); + SANE_Status stop_adf (struct scanner *s); + SANE_Status hopper_down (struct scanner *s); + SANE_Status inquiry (struct scanner *s, char *id); diff -urN /usr/ports/graphics/sane-backends/files/patch-backend__kvs40xx_opt.c graphics/sane-backends/files/patch-backend__kvs40xx_opt.c --- /usr/ports/graphics/sane-backends/files/patch-backend__kvs40xx_opt.c 1970-01-01 09:00:00.000000000 +0900 +++ graphics/sane-backends/files/patch-backend__kvs40xx_opt.c 2012-08-29 17:00:10.000000000 +0900 @@ -0,0 +1,10 @@ +--- backend/kvs40xx_opt.c.orig 2012-08-10 09:33:29.000000000 +0900 ++++ backend/kvs40xx_opt.c 2012-08-29 16:57:47.000000000 +0900 +@@ -8,6 +8,7 @@ + + #include "../include/sane/config.h" + ++#include + #include + #define DEBUG_DECLARE_ONLY + #define BACKEND_NAME kvs40xx diff -urN /usr/ports/graphics/sane-backends/files/patch-backend__magicolor.c graphics/sane-backends/files/patch-backend__magicolor.c --- /usr/ports/graphics/sane-backends/files/patch-backend__magicolor.c 2011-08-08 23:41:38.000000000 +0900 +++ graphics/sane-backends/files/patch-backend__magicolor.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- backend/magicolor.c.orig 2011-01-31 03:49:46.000000000 +0900 -+++ backend/magicolor.c 2011-08-02 02:38:15.000000000 +0900 -@@ -50,6 +50,8 @@ - #include - #include - #include -+#include -+#include - #include - #include - diff -urN /usr/ports/graphics/sane-backends/files/patch-backend__niash.c graphics/sane-backends/files/patch-backend__niash.c --- /usr/ports/graphics/sane-backends/files/patch-backend__niash.c 1970-01-01 09:00:00.000000000 +0900 +++ graphics/sane-backends/files/patch-backend__niash.c 2012-08-29 19:20:56.000000000 +0900 @@ -0,0 +1,24 @@ +--- backend/niash.c.orig 2006-02-04 12:34:28.000000000 +0100 ++++ backend/niash.c 2007-02-21 15:38:12.000000000 +0100 +@@ -89,7 +89,9 @@ typedef enum + optLamp, + + optCalibrate, +- optGamma /* analog gamma = single number */ ++ optGamma, /* analog gamma = single number */ ++/* have optEndOfList only to define arrays with sufficient size */ ++ optEndOfList + } EOptionIndex; + + +@@ -105,8 +107,8 @@ typedef union + + typedef struct + { +- SANE_Option_Descriptor aOptions[optLast]; +- TOptionValue aValues[optLast]; ++ SANE_Option_Descriptor aOptions[optEndOfList]; ++ TOptionValue aValues[optEndOfList]; + + TScanParams ScanParams; + THWParams HWParams; diff -urN /usr/ports/graphics/sane-backends/files/patch-backend__xerox_mfp-tcp.c graphics/sane-backends/files/patch-backend__xerox_mfp-tcp.c --- /usr/ports/graphics/sane-backends/files/patch-backend__xerox_mfp-tcp.c 2011-08-08 23:41:38.000000000 +0900 +++ graphics/sane-backends/files/patch-backend__xerox_mfp-tcp.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- backend/xerox_mfp-tcp.c.orig 2010-12-02 08:49:58.000000000 +0900 -+++ backend/xerox_mfp-tcp.c 2011-08-02 02:37:27.000000000 +0900 -@@ -27,6 +27,8 @@ - #include - #include - #include -+#include -+#include - - #include "sane/saneopts.h" - #include "sane/sanei_scsi.h" diff -urN /usr/ports/graphics/sane-backends/files/patch-doc_Makefile.in graphics/sane-backends/files/patch-doc_Makefile.in --- /usr/ports/graphics/sane-backends/files/patch-doc_Makefile.in 2010-05-21 20:08:49.000000000 +0900 +++ graphics/sane-backends/files/patch-doc_Makefile.in 1970-01-01 09:00:00.000000000 +0900 @@ -1,60 +0,0 @@ ---- doc/Makefile.in.orig 2010-04-14 09:52:59.000000000 +0900 -+++ doc/Makefile.in 2010-05-10 22:02:46.000000000 +0900 -@@ -73,8 +73,7 @@ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' - man1dir = $(mandir)/man1 - am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man7dir)" \ -- "$(DESTDIR)$(man8dir)" "$(DESTDIR)$(docdir)" \ -- "$(DESTDIR)$(docdir)" "$(DESTDIR)$(docdir)" -+ "$(DESTDIR)$(man8dir)" - man7dir = $(mandir)/man7 - man8dir = $(mandir)/man8 - NROFF = nroff -@@ -559,6 +558,7 @@ - echo " ( cd '$(DESTDIR)$(man8dir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(man8dir)" && rm -f $$files; } - install-dist_docDATA: $(dist_doc_DATA) -+ifndef NOPORTDOCS - @$(NORMAL_INSTALL) - test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)" - @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ -@@ -570,6 +570,7 @@ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ - done -+endif - - uninstall-dist_docDATA: - @$(NORMAL_UNINSTALL) -@@ -579,6 +580,7 @@ - echo " ( cd '$(DESTDIR)$(docdir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(docdir)" && rm -f $$files - install-docDATA: $(doc_DATA) -+ifndef NOPORTDOCS - @$(NORMAL_INSTALL) - test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)" - @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ -@@ -590,6 +592,7 @@ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ - done -+endif - - uninstall-docDATA: - @$(NORMAL_UNINSTALL) -@@ -599,6 +602,7 @@ - echo " ( cd '$(DESTDIR)$(docdir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(docdir)" && rm -f $$files - install-nobase_dist_docDATA: $(nobase_dist_doc_DATA) -+ifndef NOPORTDOCS - @$(NORMAL_INSTALL) - test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)" - @list='$(nobase_dist_doc_DATA)'; test -n "$(docdir)" || list=; \ -@@ -613,6 +617,7 @@ - echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(docdir)/$$dir'"; \ - $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(docdir)/$$dir" || exit $$?; }; \ - done -+endif - - uninstall-nobase_dist_docDATA: - @$(NORMAL_UNINSTALL) diff -urN /usr/ports/graphics/sane-backends/files/patch-frontend__Makefile.in graphics/sane-backends/files/patch-frontend__Makefile.in --- /usr/ports/graphics/sane-backends/files/patch-frontend__Makefile.in 2009-05-23 23:24:05.000000000 +0900 +++ graphics/sane-backends/files/patch-frontend__Makefile.in 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- frontend/Makefile.in.orig 2009-04-30 22:41:19.000000000 +0900 -+++ frontend/Makefile.in 2009-05-13 15:21:53.000000000 +0900 -@@ -254,7 +254,7 @@ - scanimage_LDADD = ../lib/liblib.la ../lib/libfelib.la ../backend/libsane.la - saned_SOURCES = saned.c - saned_LDADD = ../sanei/libsanei.la ../lib/liblib.la ../lib/libfelib.la \ -- ../backend/libsane.la @SYSLOG_LIBS@ -+ ../backend/libsane.la @SYSLOG_LIBS@ @AVAHI_LIBS@ - - test_SOURCES = test.c - test_LDADD = ../lib/liblib.la ../lib/libfelib.la ../backend/libsane.la diff -urN /usr/ports/graphics/sane-backends/files/patch-include_sane_sanei_tcp.h graphics/sane-backends/files/patch-include_sane_sanei_tcp.h --- /usr/ports/graphics/sane-backends/files/patch-include_sane_sanei_tcp.h 2009-01-21 00:44:28.000000000 +0900 +++ graphics/sane-backends/files/patch-include_sane_sanei_tcp.h 1970-01-01 09:00:00.000000000 +0900 @@ -1,10 +0,0 @@ ---- include/sane/sanei_tcp.h.orig 2006-11-30 14:23:19.000000000 -0900 -+++ include/sane/sanei_tcp.h 2009-01-16 05:02:42.000000000 -0900 -@@ -20,6 +20,7 @@ - - #include - -+#include - #include - #include - diff -urN /usr/ports/graphics/sane-backends/files/patch-sanei_sanei_usb.c graphics/sane-backends/files/patch-sanei_sanei_usb.c --- /usr/ports/graphics/sane-backends/files/patch-sanei_sanei_usb.c 2009-07-27 05:13:38.000000000 +0900 +++ graphics/sane-backends/files/patch-sanei_sanei_usb.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,21 +0,0 @@ ---- sanei/sanei_usb.c.orig 2009-07-26 21:29:33.000000000 +0200 -+++ sanei/sanei_usb.c 2009-07-26 21:31:42.000000000 +0200 -@@ -96,7 +96,8 @@ - } - #endif /* HAVE_USBCALLS */ - --#if defined (__FreeBSD__) -+#if (defined (__FreeBSD__) && (__FreeBSD_version < 800064)) -+#include - #include - #endif /* __FreeBSD__ */ - #if defined (__DragonFly__) -@@ -273,7 +274,7 @@ - *vendorID = vendor; - *productID = product; - } --#elif defined (__FreeBSD__) || defined (__DragonFly__) -+#elif (defined (__FreeBSD__) && __FreeBSD_version < 800064) || defined (__DragonFly__) - { - int controller; - int ctrl_fd; diff -urN /usr/ports/graphics/sane-backends/pkg-plist graphics/sane-backends/pkg-plist --- /usr/ports/graphics/sane-backends/pkg-plist 2011-08-08 23:41:38.000000000 +0900 +++ graphics/sane-backends/pkg-plist 2012-08-29 19:33:26.000000000 +0900 @@ -38,6 +38,7 @@ @unexec if cmp -s %D/etc/sane.d/hs2p.conf %D/etc/sane.d/dist/hs2p.conf; then rm -f %D/etc/sane.d/hs2p.conf; fi @unexec if cmp -s %D/etc/sane.d/ibm.conf %D/etc/sane.d/dist/ibm.conf; then rm -f %D/etc/sane.d/ibm.conf; fi @unexec if cmp -s %D/etc/sane.d/kodak.conf %D/etc/sane.d/dist/kodak.conf; then rm -f %D/etc/sane.d/kodak.conf; fi +@unexec if cmp -s %D/etc/sane.d/kodakaio.conf %D/etc/sane.d/dist/kodakaio.conf; then rm -f %D/etc/sane.d/kodakaio.conf; fi @unexec if cmp -s %D/etc/sane.d/leo.conf %D/etc/sane.d/dist/leo.conf; then rm -f %D/etc/sane.d/leo.conf; fi @unexec if cmp -s %D/etc/sane.d/lexmark.conf %D/etc/sane.d/dist/lexmark.conf; then rm -f %D/etc/sane.d/lexmark.conf; fi @unexec if cmp -s %D/etc/sane.d/ma1509.conf %D/etc/sane.d/dist/ma1509.conf; then rm -f %D/etc/sane.d/ma1509.conf; fi @@ -113,6 +114,7 @@ etc/sane.d/dist/hs2p.conf etc/sane.d/dist/ibm.conf etc/sane.d/dist/kodak.conf +etc/sane.d/dist/kodakaio.conf etc/sane.d/dist/leo.conf etc/sane.d/dist/lexmark.conf etc/sane.d/dist/ma1509.conf @@ -276,12 +278,18 @@ lib/sane/libsane-kodak.la lib/sane/libsane-kodak.so lib/sane/libsane-kodak.so.1 +lib/sane/libsane-kodakaio.la +lib/sane/libsane-kodakaio.so +lib/sane/libsane-kodakaio.so.1 lib/sane/libsane-kvs1025.la lib/sane/libsane-kvs1025.so lib/sane/libsane-kvs1025.so.1 lib/sane/libsane-kvs20xx.la lib/sane/libsane-kvs20xx.so lib/sane/libsane-kvs20xx.so.1 +lib/sane/libsane-kvs40xx.la +lib/sane/libsane-kvs40xx.so +lib/sane/libsane-kvs40xx.so.1 lib/sane/libsane-leo.la lib/sane/libsane-leo.so lib/sane/libsane-leo.so.1 @@ -402,6 +410,7 @@ lib/sane/libsane-xerox_mfp.la lib/sane/libsane-xerox_mfp.so lib/sane/libsane-xerox_mfp.so.1 +libdata/pkgconfig/sane-backends.pc sbin/saned %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/ChangeLog >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:31 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89CD2106568A for ; Tue, 25 Sep 2012 18:10:31 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 65F7D8FC25 for ; Tue, 25 Sep 2012 18:10:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAV1w021805 for ; Tue, 25 Sep 2012 18:10:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAVKv021796; Tue, 25 Sep 2012 18:10:31 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:31 GMT Resent-Message-Id: <201209251810.q8PIAVKv021796@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6ECF61065674 for ; Tue, 25 Sep 2012 18:07:58 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id 405358FC0A for ; Tue, 25 Sep 2012 18:07:58 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 6C0D623C038 for ; Wed, 26 Sep 2012 03:07:56 +0900 (JST) Message-Id: <20120926022430.dee64dc90eba9941002d126e@yahoo.com> Date: Wed, 26 Sep 2012 02:24:30 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172023: graphics/xmedcon: Update to version 0.11.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:31 -0000 >Number: 172023 >Category: ports >Synopsis: graphics/xmedcon: Update to version 0.11.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:31 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.11.1 >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/xmedcon/Makefile graphics/xmedcon/Makefile --- /usr/ports/graphics/xmedcon/Makefile 2012-06-13 06:42:32.000000000 +0900 +++ graphics/xmedcon/Makefile 2012-09-25 03:35:27.000000000 +0900 @@ -1,13 +1,8 @@ -# New ports collection makefile for: xmedcon -# Date created: 26 September 2002 -# Whom: Paul Everlund -# +# Created by: Paul Everlund # $FreeBSD: ports/graphics/xmedcon/Makefile,v 1.50 2012/06/12 21:42:32 bapt Exp $ -# PORTNAME= xmedcon -PORTVERSION= 0.11.0 -PORTREVISION= 1 +PORTVERSION= 0.11.1 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/XMedCon-Source/${PORTVERSION} @@ -20,7 +15,7 @@ LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB OPTIONS_DEFINE= X11 GLIB ACR_NEMA ANALYZE CONCORDE DICOM DICOM_LJPEG ECAT GIF INTERFILE INW PNG -OPTIONS_DEFAULT= X11 GLIB ACR_NEMA ANALYZE CONCORDE DICOM DICOM_LJPEG ECAT GIF INTERFILE INW PNG +OPTIONS_DEFAULT=X11 GLIB ACR_NEMA ANALYZE CONCORDE DICOM DICOM_LJPEG ECAT GIF INTERFILE INW PNG GLIB_DESC= With Glib ACR_NEMA_DESC= With Acr/Nema 2.0 ANALYZE_DESC= With Analyze (SPM) @@ -31,20 +26,20 @@ INTERFILE_DESC= With InterFile 3.3 INW_DESC= With INW (RUG) -WANT_GNOME= yes -USE_SUBMAKE= yes USE_AUTOTOOLS= libtool -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --includedir=${PREFIX}/include/xmedcon \ --enable-llcheck USE_LDCONFIG= yes +MAKE_JOBS_SAFE= yes + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -MAN1= medcon.1 xmedcon-config.1 -MAN3= medcon.3 -MAN4= m-acr.4 m-anlz.4 m-ecat.4 m-gif.4 m-intf.4 m-inw.4 +MAN1= medcon.1 xmedcon-config.1 +MAN3= medcon.3 +MAN4= m-acr.4 m-anlz.4 m-ecat.4 m-gif.4 m-intf.4 m-inw.4 -.include +.include .if ${PORT_OPTIONS:MX11} USE_GNOME+= gtk20 @@ -119,4 +114,4 @@ ${INSTALL_MAN} ${WRKSRC}/man/xmedcon.1 ${MANPREFIX}/man/man1 .endif -.include +.include diff -urN /usr/ports/graphics/xmedcon/distinfo graphics/xmedcon/distinfo --- /usr/ports/graphics/xmedcon/distinfo 2012-02-20 09:06:01.000000000 +0900 +++ graphics/xmedcon/distinfo 2012-08-29 03:58:21.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (xmedcon-0.11.0.tar.gz) = bcbd3c84c0620979a0d252541d5ee9ec8edfc1f2cd36e7dece3e8ef0a88ca277 -SIZE (xmedcon-0.11.0.tar.gz) = 975954 +SHA256 (xmedcon-0.11.1.tar.gz) = de68777b5d58fabb711c594f2e98f1d7f3a6404efbdfb301f2fda25e7ab00ac0 +SIZE (xmedcon-0.11.1.tar.gz) = 977216 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 02AFA10656B8 for ; Tue, 25 Sep 2012 18:10:31 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C6B4A8FC2B for ; Tue, 25 Sep 2012 18:10:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAV29021879 for ; Tue, 25 Sep 2012 18:10:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAV5V021876; Tue, 25 Sep 2012 18:10:31 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:31 GMT Resent-Message-Id: <201209251810.q8PIAV5V021876@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63087106567E for ; Tue, 25 Sep 2012 18:08:03 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id 0D2768FC21 for ; Tue, 25 Sep 2012 18:08:03 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id C628E47C036 for ; Wed, 26 Sep 2012 03:08:00 +0900 (JST) Message-Id: <20120926022434.411dd54b0318b6f6792893c7@yahoo.com> Date: Wed, 26 Sep 2012 02:24:34 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172024: japansese/xjtext: Fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:32 -0000 >Number: 172024 >Category: ports >Synopsis: japansese/xjtext: Fix build >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:31 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Fix build - Add MAKE_JOBS_SAFE >How-To-Repeat: >Fix: diff -urN /usr/ports/japanese/xjtext/Makefile japanese/xjtext/Makefile --- /usr/ports/japanese/xjtext/Makefile 2012-06-14 05:55:51.000000000 +0900 +++ japanese/xjtext/Makefile 2012-09-25 03:35:39.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: xjtext -# Date created: 8 July 2000 -# Whom: sada -# +# Created by: sada # $FreeBSD: ports/japanese/xjtext/Makefile,v 1.22 2012/06/13 20:55:51 pav Exp $ -# PORTNAME= xjtext PORTVERSION= 1.3 @@ -15,26 +11,28 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A text viewer for Japanese vertical writings -BROKEN= does not compile +OPTIONS_DEFINE= DOCS EXAMPLES USE_BISON= build USE_GNOME= imlib +MAKE_JOBS_SAFE= yes SUB_FILES= pkg-message -PLIST_FILES= bin/xjtext + PORTDOCS= README.txt PORTEXAMPLES= FSS README YAMA Ao.png Back2.png Brown.png Royal.png Royal2.png +PLIST_FILES= bin/xjtext + +.include do-install: ${INSTALL_PROGRAM} ${WRKSRC}/xjtext ${PREFIX}/bin - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTEXAMPLES} ${EXAMPLESDIR} .endif @${CAT} ${PKGMESSAGE} diff -urN /usr/ports/japanese/xjtext/files/patch-aa japanese/xjtext/files/patch-aa --- /usr/ports/japanese/xjtext/files/patch-aa 2008-04-20 02:51:14.000000000 +0900 +++ japanese/xjtext/files/patch-aa 2012-09-11 04:28:50.000000000 +0900 @@ -1,10 +1,9 @@ ---- Makefile.orig Sat Sep 4 22:45:16 1999 -+++ Makefile Mon May 16 15:30:41 2005 -@@ -1,9 +1,9 @@ --CC =g++ +--- Makefile.orig 1999-09-04 22:45:16.000000000 +0900 ++++ Makefile 2012-09-11 04:28:11.000000000 +0900 +@@ -1,27 +1,27 @@ + CC =g++ -CFLAGS =-c -g -O -INCDIRS =-I/usr/X11R6/include -I/usr/local/include -+CC =${CXX} +CFLAGS =${CXXFLAGS} -c +INCDIRS =-I${LOCALBASE}/include `imlib-config --cflags` LIBS =-lX11 -lXext -lm -lfl @@ -15,12 +14,43 @@ OBJS =xwindow.o xfont.o xtext.o xjtext.o lex.yy.o parser.tab.o xjtext-main.o all: xjtext -@@ -39,7 +39,7 @@ - ${CC} ${CFLAGS} ${INCDIRS} lex.yy.c + + xwindow.o: xwindow.h xwindow.c +- ${CC} ${CFLAGS} ${INCDIRS} xwindow.c ++ ${CXX} ${CFLAGS} ${INCDIRS} xwindow.c + + xfont.o: xwindow.h xfont.h xfont.c +- ${CC} ${CFLAGS} ${INCDIRS} xfont.c ++ ${CXX} ${CFLAGS} ${INCDIRS} xfont.c + + xtext.o: xwindow.h xfont.h xtext.h xtext.c +- ${CC} ${CFLAGS} ${INCDIRS} xtext.c ++ ${CXX} ${CFLAGS} ${INCDIRS} xtext.c + + xjtext.o: xwindow.h xfont.h xtext.h xjtext.h xjtext.c +- ${CC} ${CFLAGS} ${INCDIRS} xjtext.c ++ ${CXX} ${CFLAGS} ${INCDIRS} xjtext.c + + xjtext-main.o: xwindow.h xfont.h xtext.h xjtext.h xjtext-main.c +- ${CC} ${CFLAGS} ${INCDIRS} xjtext-main.c ++ ${CXX} ${CFLAGS} ${INCDIRS} xjtext-main.c + + parser.tab.c: xwindow.h xfont.h xtext.h xjtext.h parsing.h parser.y + bison -dv parser.y +@@ -33,13 +33,13 @@ + flex lex.l + + parser.tab.o: parser.tab.c +- ${CC} ${CFLAGS} ${INCDIRS} parser.tab.c ++ ${CXX} ${CFLAGS} ${INCDIRS} parser.tab.c + + lex.yy.o: xwindow.h xfont.h xtext.h xjtext.h parsing.h parser.tab.h lex.yy.c +- ${CC} ${CFLAGS} ${INCDIRS} lex.yy.c ++ ${CXX} ${CFLAGS} ${INCDIRS} lex.yy.c xjtext: ${OBJS} - LD_RUN_PATH=/usr/X11R6/lib/ ${CC} ${OBJS} ${LIBDIRS} ${LIBS} ${IMLIBS}\ -+ LD_RUN_PATH=${LOCALBASE}/lib/ ${CC} ${OBJS} ${LIBDIRS} ${LIBS} ${IMLIBS}\ ++ LD_RUN_PATH=${LOCALBASE}/lib/ ${CXX} ${OBJS} ${LIBDIRS} ${LIBS} ${IMLIBS}\ -o xjtext clean: diff -urN /usr/ports/japanese/xjtext/files/patch-xjtext_main.c japanese/xjtext/files/patch-xjtext_main.c --- /usr/ports/japanese/xjtext/files/patch-xjtext_main.c 2005-05-18 09:17:35.000000000 +0900 +++ japanese/xjtext/files/patch-xjtext_main.c 2012-09-11 04:24:19.000000000 +0900 @@ -1,6 +1,13 @@ ---- xjtext-main.c.orig Sat Sep 4 22:45:16 1999 -+++ xjtext-main.c Mon May 16 15:58:11 2005 -@@ -9,7 +9,7 @@ +--- xjtext-main.c.orig 1999-09-04 22:45:16.000000000 +0900 ++++ xjtext-main.c 2012-09-11 04:23:11.000000000 +0900 +@@ -3,13 +3,13 @@ + xJTextWindow* XWin; + + char FileName[256]; +-main (int ArgCnt,char** ArgVal) ++int main (int ArgCnt,char** ArgVal) + { + if(ArgCnt<2){ yyin=stdin;strcpy(FileName,"stdin");} else { if(NULL==(yyin=fopen(ArgVal[1],"r"))) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E3EA1065670 for ; Tue, 25 Sep 2012 18:10:32 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 371608FC1C for ; Tue, 25 Sep 2012 18:10:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAWEN021954 for ; Tue, 25 Sep 2012 18:10:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAWUN021946; Tue, 25 Sep 2012 18:10:32 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:32 GMT Resent-Message-Id: <201209251810.q8PIAWUN021946@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E14A1065675 for ; Tue, 25 Sep 2012 18:08:12 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id DE6148FC1C for ; Tue, 25 Sep 2012 18:08:11 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id AA2274AC036 for ; Wed, 26 Sep 2012 03:08:05 +0900 (JST) Message-Id: <20120926022437.017eedfc60e0e09e970acbca@yahoo.com> Date: Wed, 26 Sep 2012 02:24:37 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172025: lang/cocor: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:32 -0000 >Number: 172025 >Category: ports >Synopsis: lang/cocor: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:31 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Support NO_WRKSUBDIR - Support COPYTREE_SHARE - Support PORTEXAMPLES - Add MAKE_JOBS_SAFE >How-To-Repeat: >Fix: diff -urN /usr/ports/lang/cocor/Makefile lang/cocor/Makefile --- /usr/ports/lang/cocor/Makefile 2009-03-25 21:35:48.000000000 +0900 +++ lang/cocor/Makefile 2012-09-25 03:35:49.000000000 +0900 @@ -1,54 +1,59 @@ -# New ports collection makefile for: cocor -# Date Created: 24 March 2002 -# Whom: Guy Antony Halse -# +# Created by: Guy Antony Halse # $FreeBSD: ports/lang/cocor/Makefile,v 1.5 2009/03/25 12:35:48 arved Exp $ -# PORTNAME= cocor PORTVERSION= 1.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang -MASTER_SITES= http://www.scifac.ru.ac.za/coco/ -DISTNAME= cocorc17 +MASTER_SITES= ftp://ftp.psg.com/pub/modula-2/coco/ \ + ftp://ftp.ssw.uni-linz.ac.at/pub/Coco/C/ \ + http://www.scifac.ru.ac.za/coco/ +DISTNAME= ${PORTNAME}c${PORTVERSION:S/.//} EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= A compiler generator that combines the functionality of lex and yacc -WRKSRC= ${WRKDIR} +OPTIONS_DEFINE= DOCS EXAMPLES + +NO_WRKSUBDIR= yes + +USE_DOS2UNIX= yes +MAKE_ENV= CRFRAMES="${WRKSRC}/frames" +MAKEFILE= unix.mk ALL_TARGET= all1 -MAKE_ENV+= CRFRAMES=${WRKSRC}/frames -CFLAGS+= -I${WRKSRC}/cplus2 -PLIST_SUB+= FRAMES=${CRFRAMES} -CRFRAMES?= ${PREFIX}/lib/cocor - -MAN1= cocor.1 - -post-extract: - ${LN} -s ${WRKSRC}/unix.mk ${WRKSRC}/Makefile - -pre-patch: - uudecode -p ${WRKSRC}/dos2unix.uue > ${WRKSRC}/dos2unix.sh - ${CHMOD} +x ${WRKSRC}/dos2unix.sh - cd ${WRKSRC} && ./dos2unix.sh unix.mk && ${MAKE} -f unix.mk dos2unix +MAKE_JOBS_SAFE= yes + +MAN1= ${PORTNAME}.1 + +.include post-patch: - ${REINPLACE_CMD} -e "s,^MAKE,#MAKE," ${WRKSRC}/Makefile - ${RM} ${WRKSRC}/taste/unix.mk.orig +.for i in sources/unix.mk taste/unix.mk + @${REINPLACE_CMD} -e 's|^CFLAGS|#CFLAGS|' ${WRKSRC}/${i} +.endfor +.for i in cplus2 taste taste_cp + @${RM} -f ${WRKSRC}/${i}/unix.mk.* +.endfor do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/cocor ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/docs/cocor.1 ${PREFIX}/man/man1 - ${MKDIR} -m 755 ${CRFRAMES} - ${CP} -r ${WRKSRC}/frames/* ${CRFRAMES} && \ - ${FIND} ${CRFRAMES} -type f -exec ${CHMOD} 644 {} \; && \ - ${FIND} ${CRFRAMES} -type d -exec ${CHMOD} 755 {} \; - ${MKDIR} -m 755 ${PREFIX}/share/cocor -.for i in samples cplus2 taste taste_cp docs - ${CP} -r ${WRKSRC}/${i} ${PREFIX}/share/cocor + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/docs/${PORTNAME}.1 ${MANPREFIX}/man/man1 + @${MKDIR} ${PREFIX}/lib/${PORTNAME} +.for i in cplus2 taste taste_cp + @(cd ${WRKSRC}; ${COPYTREE_SHARE} ${i} ${PREFIX}/lib/${PORTNAME}) .endfor - ${FIND} ${PREFIX}/share/cocor -type f -exec ${CHMOD} 644 {} \; && \ - ${FIND} ${PREFIX}/share/cocor -type d -exec ${CHMOD} 755 {} \; + @${MKDIR} ${DATADIR} + @(cd ${WRKSRC}/frames; ${COPYTREE_SHARE} . ${DATADIR}) +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/docs/coco.use ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/docs/cocol ${DOCSDIR} +.endif +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/samples/*.atg ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/samples/*.inp ${EXAMPLESDIR} +.endif .include diff -urN /usr/ports/lang/cocor/files/patch-cplus2::unix.mk lang/cocor/files/patch-cplus2::unix.mk --- /usr/ports/lang/cocor/files/patch-cplus2::unix.mk 2003-01-18 19:12:08.000000000 +0900 +++ lang/cocor/files/patch-cplus2::unix.mk 2010-01-26 04:16:06.000000000 +0900 @@ -1,5 +1,5 @@ ---- cplus2/unix.mk.orig Sat Nov 20 22:27:41 1999 -+++ cplus2/unix.mk Sat Jan 18 01:55:19 2003 +--- cplus2/unix.mk.orig 1999-11-21 15:27:41.000000000 +0900 ++++ cplus2/unix.mk 2010-01-26 03:46:07.000000000 +0900 @@ -11,16 +11,16 @@ #CC sets the name of the compiler to use (cc, gcc, etc) @@ -8,23 +8,23 @@ +CC = ${CXX} AR = ar - CFLAGS = -g +-CFLAGS = -g ++CFLAGS = ${CXXFLAGS} DOS2UNIX = ../dos2unix.sh -%.o: %.cpp -+*.o: *.cpp ++.cpp.o: $(CC) -c $(CFLAGS) $< -o $@ -%.o: %.cxx -+*.o: *.cxx ++.cxx.o: $(CC) -c $(CFLAGS) $< -o $@ all: cr_lib.a -@@ -45,4 +45,7 @@ - clean: +@@ -46,3 +46,6 @@ \rm -f *.o \rm -f *.a + + + + - diff -urN /usr/ports/lang/cocor/files/patch-taste_cp::unix.mk lang/cocor/files/patch-taste_cp::unix.mk --- /usr/ports/lang/cocor/files/patch-taste_cp::unix.mk 2009-03-25 21:35:49.000000000 +0900 +++ lang/cocor/files/patch-taste_cp::unix.mk 2010-01-26 04:15:29.000000000 +0900 @@ -1,5 +1,5 @@ ---- taste_cp/unix.mk.orig 2009-03-25 13:31:23.000000000 +0100 -+++ taste_cp/unix.mk 2009-03-25 13:33:00.000000000 +0100 +--- taste_cp/unix.mk.orig 1999-11-21 15:34:48.000000000 +0900 ++++ taste_cp/unix.mk 2010-01-26 03:48:40.000000000 +0900 @@ -8,17 +8,17 @@ #CC sets the name of the compiler to use (cc, gcc, etc) @@ -7,17 +7,18 @@ -#CC = g++ +CC = ${CXX} - CFLAGS = -g -I../cplus2 +-CFLAGS = -g -I../cplus2 ++CFLAGS = -I../cplus2 ${CXXFLAGS} COCOR = ../cocor DOS2UNIX = ../dos2unix.sh LIB = ../cplus2/cr_lib.a -%.o: %.cpp -+*.o: *.cpp ++.cpp.o: $(CC) -c $(CFLAGS) $< -o $@ -%.o: %.cxx -+*.o: *.cxx ++.cxx.o: $(CC) -c $(CFLAGS) $< -o $@ all: taste pretty xref diff -urN /usr/ports/lang/cocor/files/patch-unix.mk lang/cocor/files/patch-unix.mk --- /usr/ports/lang/cocor/files/patch-unix.mk 2003-01-18 19:12:08.000000000 +0900 +++ lang/cocor/files/patch-unix.mk 2012-07-09 16:54:31.000000000 +0900 @@ -1,5 +1,14 @@ ---- unix.mk.orig Sun Mar 24 14:37:17 2002 -+++ unix.mk Sun Mar 24 14:37:47 2002 +--- unix.mk.orig 1998-04-16 00:48:11.000000000 +0900 ++++ unix.mk 2012-07-09 16:52:30.000000000 +0900 +@@ -13,7 +13,7 @@ + # solaris Set environment variables for Sun with Solaris 2.X + # and gnu C/C++ + +-MAKE = make ++#MAKE = make + DOS2UNIX = ./dos2unix.sh + SUBDIRS = sources taste cplus2 taste_cp + SUBDIRS2 = docs frames frames/cplus2 cplus2 samples @@ -47,7 +47,7 @@ all1: set -e; \ diff -urN /usr/ports/lang/cocor/pkg-plist lang/cocor/pkg-plist --- /usr/ports/lang/cocor/pkg-plist 2003-01-18 19:12:08.000000000 +0900 +++ lang/cocor/pkg-plist 2010-01-26 04:43:21.000000000 +0900 @@ -1,167 +1,160 @@ bin/cocor - -lib/cocor/compiler.frm -lib/cocor/cplus2/compiler.frm -lib/cocor/cplus2/parser_c.frm -lib/cocor/cplus2/parser_h.frm -lib/cocor/cplus2/scan_c.frm -lib/cocor/cplus2/scan_h.frm -lib/cocor/parser_c.frm -lib/cocor/parser_h.frm -lib/cocor/scan_c.frm -lib/cocor/scan_h.frm - -share/cocor/cplus2/cr_abs.cpp -share/cocor/cplus2/cr_abs.hpp -share/cocor/cplus2/cr_abs.o -share/cocor/cplus2/cr_error.cpp -share/cocor/cplus2/cr_error.hpp -share/cocor/cplus2/cr_error.o -share/cocor/cplus2/cr_lib.a -share/cocor/cplus2/cr_parse.cpp -share/cocor/cplus2/cr_parse.hpp -share/cocor/cplus2/cr_parse.o -share/cocor/cplus2/cr_scan.cpp -share/cocor/cplus2/cr_scan.hpp -share/cocor/cplus2/cr_scan.o -share/cocor/cplus2/unix.mk -share/cocor/cplus2/unix.mk.orig -share/cocor/docs/coco.use -share/cocor/docs/cocol -share/cocor/docs/cocor.1 -share/cocor/samples/adacs.atg -share/cocor/samples/c.atg -share/cocor/samples/calc.atg -share/cocor/samples/calc.inp -share/cocor/samples/cdecl.inp -share/cocor/samples/cdecl1.atg -share/cocor/samples/cdecl2.atg -share/cocor/samples/cdecl3.atg -share/cocor/samples/clang.inp -share/cocor/samples/clang1.atg -share/cocor/samples/clang2.atg -share/cocor/samples/expr.atg -share/cocor/samples/expr.inp -share/cocor/samples/microada.atg -share/cocor/samples/mod2.atg -share/cocor/samples/oberon.atg -share/cocor/samples/pascal.atg -share/cocor/samples/pimmod2.atg -share/cocor/samples/umbriel1.atg -share/cocor/samples/umbriel2.atg -share/cocor/taste/crossref.c -share/cocor/taste/crossref.h -share/cocor/taste/crossref.o -share/cocor/taste/pretty -share/cocor/taste/pretty.atg -share/cocor/taste/pretty.c -share/cocor/taste/pretty.o -share/cocor/taste/prettyc.h -share/cocor/taste/prettye.h -share/cocor/taste/prettyp.c -share/cocor/taste/prettyp.h -share/cocor/taste/prettyp.o -share/cocor/taste/prettypr.c -share/cocor/taste/prettypr.h -share/cocor/taste/prettypr.o -share/cocor/taste/prettys.c -share/cocor/taste/prettys.h -share/cocor/taste/prettys.o -share/cocor/taste/taste -share/cocor/taste/taste.atg -share/cocor/taste/taste.c -share/cocor/taste/taste.frm -share/cocor/taste/taste.o -share/cocor/taste/tastec.h -share/cocor/taste/tastee.h -share/cocor/taste/tastep.c -share/cocor/taste/tastep.h -share/cocor/taste/tastep.o -share/cocor/taste/tastes.c -share/cocor/taste/tastes.h -share/cocor/taste/tastes.o -share/cocor/taste/tc.c -share/cocor/taste/tc.h -share/cocor/taste/tc.o -share/cocor/taste/test.tas -share/cocor/taste/tl.c -share/cocor/taste/tl.h -share/cocor/taste/tl.o -share/cocor/taste/unix.mk -share/cocor/taste/wrong.tas -share/cocor/taste/xref -share/cocor/taste/xref.atg -share/cocor/taste/xref.c -share/cocor/taste/xref.frm -share/cocor/taste/xref.o -share/cocor/taste/xrefc.h -share/cocor/taste/xrefe.h -share/cocor/taste/xrefp.c -share/cocor/taste/xrefp.h -share/cocor/taste/xrefp.o -share/cocor/taste/xrefs.c -share/cocor/taste/xrefs.h -share/cocor/taste/xrefs.o -share/cocor/taste_cp/crossref.cpp -share/cocor/taste_cp/crossref.hpp -share/cocor/taste_cp/crossref.o -share/cocor/taste_cp/pretty -share/cocor/taste_cp/pretty.atg -share/cocor/taste_cp/pretty.cpp -share/cocor/taste_cp/pretty.o -share/cocor/taste_cp/prettyc.hpp -share/cocor/taste_cp/prettye.hpp -share/cocor/taste_cp/prettyp.cpp -share/cocor/taste_cp/prettyp.hpp -share/cocor/taste_cp/prettyp.o -share/cocor/taste_cp/prettypr.cpp -share/cocor/taste_cp/prettypr.hpp -share/cocor/taste_cp/prettypr.o -share/cocor/taste_cp/prettys.cpp -share/cocor/taste_cp/prettys.hpp -share/cocor/taste_cp/prettys.o -share/cocor/taste_cp/taste -share/cocor/taste_cp/taste.atg -share/cocor/taste_cp/taste.cpp -share/cocor/taste_cp/taste.frm -share/cocor/taste_cp/taste.o -share/cocor/taste_cp/tastec.hpp -share/cocor/taste_cp/tastee.hpp -share/cocor/taste_cp/tastep.cpp -share/cocor/taste_cp/tastep.hpp -share/cocor/taste_cp/tastep.o -share/cocor/taste_cp/tastes.cpp -share/cocor/taste_cp/tastes.hpp -share/cocor/taste_cp/tastes.o -share/cocor/taste_cp/tc.cpp -share/cocor/taste_cp/tc.hpp -share/cocor/taste_cp/tc.o -share/cocor/taste_cp/test.tas -share/cocor/taste_cp/tl.cpp -share/cocor/taste_cp/tl.hpp -share/cocor/taste_cp/tl.o -share/cocor/taste_cp/unix.mk -share/cocor/taste_cp/unix.mk.orig -share/cocor/taste_cp/wrong.tas -share/cocor/taste_cp/xref -share/cocor/taste_cp/xref.atg -share/cocor/taste_cp/xref.cpp -share/cocor/taste_cp/xref.frm -share/cocor/taste_cp/xref.o -share/cocor/taste_cp/xrefc.hpp -share/cocor/taste_cp/xrefe.hpp -share/cocor/taste_cp/xrefp.cpp -share/cocor/taste_cp/xrefp.hpp -share/cocor/taste_cp/xrefp.o -share/cocor/taste_cp/xrefs.cpp -share/cocor/taste_cp/xrefs.hpp -share/cocor/taste_cp/xrefs.o - +lib/cocor/cplus2/cr_abs.cpp +lib/cocor/cplus2/cr_abs.hpp +lib/cocor/cplus2/cr_abs.o +lib/cocor/cplus2/cr_error.cpp +lib/cocor/cplus2/cr_error.hpp +lib/cocor/cplus2/cr_error.o +lib/cocor/cplus2/cr_lib.a +lib/cocor/cplus2/cr_parse.cpp +lib/cocor/cplus2/cr_parse.hpp +lib/cocor/cplus2/cr_parse.o +lib/cocor/cplus2/cr_scan.cpp +lib/cocor/cplus2/cr_scan.hpp +lib/cocor/cplus2/cr_scan.o +lib/cocor/cplus2/unix.mk +lib/cocor/taste/crossref.c +lib/cocor/taste/crossref.h +lib/cocor/taste/crossref.o +lib/cocor/taste/pretty +lib/cocor/taste/pretty.atg +lib/cocor/taste/pretty.c +lib/cocor/taste/pretty.o +lib/cocor/taste/prettyc.h +lib/cocor/taste/prettye.h +lib/cocor/taste/prettyp.c +lib/cocor/taste/prettyp.h +lib/cocor/taste/prettyp.o +lib/cocor/taste/prettypr.c +lib/cocor/taste/prettypr.h +lib/cocor/taste/prettypr.o +lib/cocor/taste/prettys.c +lib/cocor/taste/prettys.h +lib/cocor/taste/prettys.o +lib/cocor/taste/taste +lib/cocor/taste/taste.atg +lib/cocor/taste/taste.c +lib/cocor/taste/taste.frm +lib/cocor/taste/taste.o +lib/cocor/taste/tastec.h +lib/cocor/taste/tastee.h +lib/cocor/taste/tastep.c +lib/cocor/taste/tastep.h +lib/cocor/taste/tastep.o +lib/cocor/taste/tastes.c +lib/cocor/taste/tastes.h +lib/cocor/taste/tastes.o +lib/cocor/taste/tc.c +lib/cocor/taste/tc.h +lib/cocor/taste/tc.o +lib/cocor/taste/test.tas +lib/cocor/taste/tl.c +lib/cocor/taste/tl.h +lib/cocor/taste/tl.o +lib/cocor/taste/unix.mk +lib/cocor/taste/wrong.tas +lib/cocor/taste/xref +lib/cocor/taste/xref.atg +lib/cocor/taste/xref.c +lib/cocor/taste/xref.frm +lib/cocor/taste/xref.o +lib/cocor/taste/xrefc.h +lib/cocor/taste/xrefe.h +lib/cocor/taste/xrefp.c +lib/cocor/taste/xrefp.h +lib/cocor/taste/xrefp.o +lib/cocor/taste/xrefs.c +lib/cocor/taste/xrefs.h +lib/cocor/taste/xrefs.o +lib/cocor/taste_cp/crossref.cpp +lib/cocor/taste_cp/crossref.hpp +lib/cocor/taste_cp/crossref.o +lib/cocor/taste_cp/pretty +lib/cocor/taste_cp/pretty.atg +lib/cocor/taste_cp/pretty.cpp +lib/cocor/taste_cp/pretty.o +lib/cocor/taste_cp/prettyc.hpp +lib/cocor/taste_cp/prettye.hpp +lib/cocor/taste_cp/prettyp.cpp +lib/cocor/taste_cp/prettyp.hpp +lib/cocor/taste_cp/prettyp.o +lib/cocor/taste_cp/prettypr.cpp +lib/cocor/taste_cp/prettypr.hpp +lib/cocor/taste_cp/prettypr.o +lib/cocor/taste_cp/prettys.cpp +lib/cocor/taste_cp/prettys.hpp +lib/cocor/taste_cp/prettys.o +lib/cocor/taste_cp/taste +lib/cocor/taste_cp/taste.atg +lib/cocor/taste_cp/taste.cpp +lib/cocor/taste_cp/taste.frm +lib/cocor/taste_cp/taste.o +lib/cocor/taste_cp/tastec.hpp +lib/cocor/taste_cp/tastee.hpp +lib/cocor/taste_cp/tastep.cpp +lib/cocor/taste_cp/tastep.hpp +lib/cocor/taste_cp/tastep.o +lib/cocor/taste_cp/tastes.cpp +lib/cocor/taste_cp/tastes.hpp +lib/cocor/taste_cp/tastes.o +lib/cocor/taste_cp/tc.cpp +lib/cocor/taste_cp/tc.hpp +lib/cocor/taste_cp/tc.o +lib/cocor/taste_cp/test.tas +lib/cocor/taste_cp/tl.cpp +lib/cocor/taste_cp/tl.hpp +lib/cocor/taste_cp/tl.o +lib/cocor/taste_cp/unix.mk +lib/cocor/taste_cp/wrong.tas +lib/cocor/taste_cp/xref +lib/cocor/taste_cp/xref.atg +lib/cocor/taste_cp/xref.cpp +lib/cocor/taste_cp/xref.frm +lib/cocor/taste_cp/xref.o +lib/cocor/taste_cp/xrefc.hpp +lib/cocor/taste_cp/xrefe.hpp +lib/cocor/taste_cp/xrefp.cpp +lib/cocor/taste_cp/xrefp.hpp +lib/cocor/taste_cp/xrefp.o +lib/cocor/taste_cp/xrefs.cpp +lib/cocor/taste_cp/xrefs.hpp +lib/cocor/taste_cp/xrefs.o +%%DATADIR%%/compiler.frm +%%DATADIR%%/cplus2/compiler.frm +%%DATADIR%%/cplus2/parser_c.frm +%%DATADIR%%/cplus2/parser_h.frm +%%DATADIR%%/cplus2/scan_c.frm +%%DATADIR%%/cplus2/scan_h.frm +%%DATADIR%%/parser_c.frm +%%DATADIR%%/parser_h.frm +%%DATADIR%%/scan_c.frm +%%DATADIR%%/scan_h.frm +%%PORTDOCS%%%%DOCSDIR%%/coco.use +%%PORTDOCS%%%%DOCSDIR%%/cocol +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/adacs.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calc.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calc.inp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cdecl.inp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cdecl1.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cdecl2.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cdecl3.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/clang.inp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/clang1.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/clang2.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/expr.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/expr.inp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/microada.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod2.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/oberon.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pimmod2.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umbriel1.atg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umbriel2.atg +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm %%DATADIR%%/cplus2 +@dirrm lib/cocor/taste_cp +@dirrm lib/cocor/taste @dirrm lib/cocor/cplus2 @dirrm lib/cocor -@dirrm share/cocor/cplus2 -@dirrm share/cocor/samples -@dirrm share/cocor/taste -@dirrm share/cocor/taste_cp -@dirrm share/cocor/docs -@dirrm share/cocor >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF93C10656DF for ; Tue, 25 Sep 2012 18:10:32 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8B2628FC2D for ; Tue, 25 Sep 2012 18:10:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAW7V022005 for ; Tue, 25 Sep 2012 18:10:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAWVE022000; Tue, 25 Sep 2012 18:10:32 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:32 GMT Resent-Message-Id: <201209251810.q8PIAWVE022000@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DCF91106566B for ; Tue, 25 Sep 2012 18:08:16 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 905938FC22 for ; Tue, 25 Sep 2012 18:08:16 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 78E3634034 for ; Wed, 26 Sep 2012 03:08:14 +0900 (JST) Message-Id: <20120926022441.f2f1b1039ba72225bb52dc0d@yahoo.com> Date: Wed, 26 Sep 2012 02:24:41 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172026: lang/diveintopython: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:32 -0000 >Number: 172026 >Category: ports >Synopsis: lang/diveintopython: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:32 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line >How-To-Repeat: >Fix: diff -urN /usr/ports/lang/diveintopython/Makefile lang/diveintopython/Makefile --- /usr/ports/lang/diveintopython/Makefile 2006-05-10 05:52:12.000000000 +0900 +++ lang/diveintopython/Makefile 2012-09-25 03:35:56.000000000 +0900 @@ -1,15 +1,11 @@ -# New ports collection makefile for: py-diveintopython -# Date created: 15 March 2001 -# Whom: Johann Visagie -# +# Created by: Johann Visagie # $FreeBSD: ports/lang/diveintopython/Makefile,v 1.23 2006/05/09 20:52:12 edwin Exp $ -# PORTNAME= diveintopython PORTVERSION= 5.4 #PORTREVISION= 1 CATEGORIES= lang python -MASTER_SITES= http://diveintopython.org/download/ +MASTER_SITES= http://www.diveintopython.net/download/ DISTNAME= ${PORTNAME} DISTFILES= ${DISTNAME}-html-${VERSIONSTR}${EXTRACT_SUFX} \ ${DISTNAME}-html-flat-${VERSIONSTR}${EXTRACT_SUFX} \ @@ -25,25 +21,29 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A free Python tutorial book that is "not For Dummies(tm)" -NO_BUILD= YES -USE_ZIP= YES +LICENSE= GFDL + WRKSRC= ${WRKDIR}/${PORTNAME}-${VERSIONSTR}/html +NO_BUILD= yes + +USE_ZIP= yes + +PLIST_SUB= VERSION="${VERSIONSTR}" + DIPDLDIR= ${DOCSDIR}/download -CPIO= cpio --quiet -pdum -R VERSIONSTR= ${PORTVERSION:C|(\.[^.]*)\.([^.]*)$|\1-\2|} -PLIST_SUB+= VERSION=${VERSIONSTR} post-patch: - @ ${FIND} ${WRKSRC} -name \*.html | xargs ${REINPLACE_CMD} \ + @ ${FIND} ${WRKSRC} -name \*.html | ${XARGS} ${REINPLACE_CMD} \ "s#http[^>]*\(download/${PORTNAME}-examples-${VERSIONSTR}.zip\)#\.\./\1#" do-install: @ ${MKDIR} ${DIPDLDIR} @ cd ${WRKSRC} && \ ${FIND} . -name \*.html -o -name \*.css -o -name \*.png \ - | ${CPIO} ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} + | ${CPIO} --quiet -pdum -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} @ cd ${WRKSRC}/../py && ${FIND} * \ - | ${CPIO} ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR} + | ${CPIO} --quiet -pdum -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR} .for format in html html-flat pdf text word xml common examples @ ${INSTALL_DATA} \ ${DISTDIR}/${DIST_SUBDIR}/${PORTNAME}-${format}-${VERSIONSTR}.zip \ diff -urN /usr/ports/lang/diveintopython/pkg-descr lang/diveintopython/pkg-descr --- /usr/ports/lang/diveintopython/pkg-descr 2009-12-21 11:17:22.000000000 +0900 +++ lang/diveintopython/pkg-descr 2012-07-09 17:23:02.000000000 +0900 @@ -4,4 +4,4 @@ available in a variety of formats. It is currently being translated into a number of languages. -WWW: http://diveintopython.org/ +WWW: http://www.diveintopython.net/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:33 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A31B10656E3 for ; Tue, 25 Sep 2012 18:10:33 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DA0198FC32 for ; Tue, 25 Sep 2012 18:10:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAWGS022097 for ; Tue, 25 Sep 2012 18:10:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAWqj022078; Tue, 25 Sep 2012 18:10:32 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:32 GMT Resent-Message-Id: <201209251810.q8PIAWqj022078@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A1A41065670 for ; Tue, 25 Sep 2012 18:08:21 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id DF6508FC17 for ; Tue, 25 Sep 2012 18:08:20 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id 22C3C47C036 for ; Wed, 26 Sep 2012 03:08:18 +0900 (JST) Message-Id: <20120926022444.978dfc18744c14905889b98f@yahoo.com> Date: Wed, 26 Sep 2012 02:24:44 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172027: lang/gcl: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:33 -0000 >Number: 172027 >Category: ports >Synopsis: lang/gcl: Support USE_READLINE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:32 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Support USE_READLINE - Add MAKE_JOBS_UNSAFE >How-To-Repeat: >Fix: diff -urN /usr/ports/lang/gcl/Makefile lang/gcl/Makefile --- /usr/ports/lang/gcl/Makefile 2011-09-24 07:23:42.000000000 +0900 +++ lang/gcl/Makefile 2012-09-25 03:36:12.000000000 +0900 @@ -1,16 +1,11 @@ -# New ports collection makefile for: gcl -# Date created: Feb 8 1995 -# Whom: hsu -# +# Created by: hsu # $FreeBSD: ports/lang/gcl/Makefile,v 1.53 2011/09/23 22:23:42 amdmi3 Exp $ -# PORTNAME= gcl PORTVERSION= 2.6.7 PORTREVISION= 7 CATEGORIES= lang tcl tk -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= gcl +MASTER_SITES= GNU MAINTAINER= ports@FreeBSD.org COMMENT= GNU Common Lisp @@ -19,10 +14,14 @@ ONLY_FOR_ARCHS= i386 -USE_TK= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes USE_XORG= x11 +USE_TCL_BUILD= yes +USE_TCL= yes +USE_TK_BUILD= yes +USE_TK= yes +USE_READLINE= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes CONFIGURE_ARGS=--prefix=${PREFIX} \ --enable-ansi \ --enable-machine=FreeBSD \ @@ -35,20 +34,20 @@ --disable-statsysbfd \ --disable-locbfd \ --enable-custreloc -CONFIGURE_ENV= C_INCLUDE_PATH=${PREFIX}/include LIBRARY_PATH=${PREFIX}/lib -CFLAGS+= -I${LOCALBASE}/include +CONFIGURE_ENV= C_INCLUDE_PATH="${PREFIX}/include" LIBRARY_PATH="${PREFIX}/lib" MAKEFILE= makefile +MAKE_JOBS_UNSAFE=yes -INFO= gcl-si gcl-tk +CFLAGS+= -I${LOCALBASE}/include -PLIST_SUB= GCL_VER=${PORTVERSION} +PLIST_SUB= GCL_VER="${PORTVERSION}" -.include +INFO= gcl-si gcl-tk -pre-configure: - ${SED} -i '' \ - -e 's|@@CFLAGS@@|${CFLAGS} -I${LOCALBASE}/include|' \ - -e 's|@@LOCALLIBS@@|-lreadline -lm -L${LOCALBASE}/lib -lgmp|' \ - ${WRKSRC}/h/FreeBSD.defs +post-patch:: + @${REINPLACE_CMD} -e \ + 's|@@CFLAGS@@|${CFLAGS} -I${LOCALBASE}/include| ; \ + s|@@LOCALLIBS@@|-lreadline -lm -L${LOCALBASE}/lib -lgmp|' \ + ${WRKSRC}/h/FreeBSD.defs -.include +.include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:33 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A7081065672; Tue, 25 Sep 2012 18:10:33 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4E7D88FC18; Tue, 25 Sep 2012 18:10:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAX80022215; Tue, 25 Sep 2012 18:10:33 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAXnc022205; Tue, 25 Sep 2012 18:10:33 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:10:33 GMT Message-Id: <201209251810.q8PIAXnc022205@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171956: astro/sunclock: Update to version 3.57 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:33 -0000 Synopsis: astro/sunclock: Update to version 3.57 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:10:32 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171956 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:33 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85ED01065679 for ; Tue, 25 Sep 2012 18:10:33 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 474AE8FC17 for ; Tue, 25 Sep 2012 18:10:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAXnx022211 for ; Tue, 25 Sep 2012 18:10:33 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAXMN022196; Tue, 25 Sep 2012 18:10:33 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:33 GMT Resent-Message-Id: <201209251810.q8PIAXMN022196@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 43AC31065675 for ; Tue, 25 Sep 2012 18:08:25 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 011EF8FC1B for ; Tue, 25 Sep 2012 18:08:25 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 5384B4AC037 for ; Wed, 26 Sep 2012 03:08:23 +0900 (JST) Message-Id: <20120926022448.d5152c17e31f2b8a373a361f@yahoo.com> Date: Wed, 26 Sep 2012 02:24:48 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172028: lang/mdk: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:33 -0000 >Number: 172028 >Category: ports >Synopsis: lang/mdk: Support USE_READLINE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:32 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Support USE_READLINE >How-To-Repeat: >Fix: diff -urN /usr/ports/lang/mdk/Makefile lang/mdk/Makefile --- /usr/ports/lang/mdk/Makefile 2012-08-05 14:04:29.000000000 +0900 +++ lang/mdk/Makefile 2012-09-25 03:36:03.000000000 +0900 @@ -1,10 +1,5 @@ -# ex:ts=8 -# New ports collection makefile for: mdk -# Date created: Apr 1, 2001 -# Whom: Ying-Chieh Liao -# +# Created by: Ying-Chieh Liao # $FreeBSD: ports/lang/mdk/Makefile,v 1.45 2012/08/05 05:04:29 miwi Exp $ -# PORTNAME= mdk PORTVERSION= 1.2.6 @@ -21,6 +16,7 @@ USE_GNOME= glib20 intltool USE_NCURSES= yes +USE_READLINE= yes USE_GETTEXT= yes USE_GMAKE= yes GNU_CONFIGURE= yes @@ -57,10 +53,6 @@ CONFIGURE_ARGS+=--without-guile .endif -.if exists(${LOCALBASE}/lib/libreadline.so) -LIB_DEPENDS+= readline:${PORTSDIR}/devel/readline -.endif - post-patch: @${REINPLACE_CMD} -e 's|-D.*_DISABLE_DEPRECATED||g' \ ${WRKSRC}/configure >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:33 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4DB8106567E for ; Tue, 25 Sep 2012 18:10:33 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A08318FC30 for ; Tue, 25 Sep 2012 18:10:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAXRV022297 for ; Tue, 25 Sep 2012 18:10:33 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAXVL022285; Tue, 25 Sep 2012 18:10:33 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:33 GMT Resent-Message-Id: <201209251810.q8PIAXVL022285@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0F4A106566B for ; Tue, 25 Sep 2012 18:08:29 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id 821098FC1C for ; Tue, 25 Sep 2012 18:08:29 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id EE9E823C031 for ; Wed, 26 Sep 2012 03:08:27 +0900 (JST) Message-Id: <20120926022451.946c099f2c892fc6fc193bee@yahoo.com> Date: Wed, 26 Sep 2012 02:24:51 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172029: mail/abook: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:34 -0000 >Number: 172029 >Category: ports >Synopsis: mail/abook: Support USE_READLINE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:33 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Support USE_READLINE - Support USE_NCURSES - Add LICENSE - Add MAKE_JOBS_SAFE >How-To-Repeat: >Fix: diff -urN /usr/ports/mail/abook/Makefile mail/abook/Makefile --- /usr/ports/mail/abook/Makefile 2011-10-24 12:33:12.000000000 +0900 +++ mail/abook/Makefile 2012-09-25 03:36:35.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: abook -# Date created: June 6th 2000 -# Whom: Yen-Ming Lee -# +# Created by: Yen-Ming Lee # $FreeBSD: ports/mail/abook/Makefile,v 1.31 2011/10/24 03:33:12 stas Exp $ -# PORTNAME= abook PORTVERSION= 0.5.6 @@ -14,33 +10,38 @@ MAINTAINER= ports@FreeBSD.org COMMENT= An addressbook program with mutt mail client support +LICENSE= GPLv2 + +OPTIONS_DEFINE= NLS DOCS +OPTIONS_DEFAULT=NLS + +USE_NCURSES= yes +USE_READLINE= yes GNU_CONFIGURE= yes -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +MAKE_JOBS_SAFE= yes -.if defined(WITHOUT_NLS) -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " -.else -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.endif +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib MAN1= abook.1 MAN5= abookrc.5 PORTDOCS= ANNOUNCE AUTHORS BUGS ChangeLog FAQ INSTALL NEWS README \ THANKS TODO -.include +.include -.if exists(${LOCALBASE}/lib/libreadline.so.6) -LIB_DEPENDS+= readline.6:${PORTSDIR}/devel/readline +.if ${PORT_OPTIONS:MNLS} +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+=--disable-nls +PLIST_SUB+= NLS="@comment " .endif post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} .endif -.include +.include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3D42B1065686 for ; Tue, 25 Sep 2012 18:10:34 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 00BD78FC08 for ; Tue, 25 Sep 2012 18:10:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAX63022377 for ; Tue, 25 Sep 2012 18:10:33 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAXGn022371; Tue, 25 Sep 2012 18:10:33 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:33 GMT Resent-Message-Id: <201209251810.q8PIAXGn022371@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0263B106564A for ; Tue, 25 Sep 2012 18:08:34 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id C81F28FC14 for ; Tue, 25 Sep 2012 18:08:33 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id 21BE547C037 for ; Wed, 26 Sep 2012 03:08:31 +0900 (JST) Message-Id: <20120926022455.4df3887f4a75f70f71dcb0c2@yahoo.com> Date: Wed, 26 Sep 2012 02:24:55 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172030: mail/cucipop: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:34 -0000 >Number: 172030 >Category: ports >Synopsis: mail/cucipop: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:33 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Add MAKE_JOBS_SAFE >How-To-Repeat: >Fix: diff -urN /usr/ports/mail/cucipop/Makefile mail/cucipop/Makefile --- /usr/ports/mail/cucipop/Makefile 2012-09-21 19:07:33.000000000 +0900 +++ mail/cucipop/Makefile 2012-09-25 03:37:16.000000000 +0900 @@ -1,7 +1,4 @@ -# New ports collection makefile for: cucipop -# Date created: 7 Jun 1997 -# Whom: igor@zynaps.ru -# +# Created by: igor@zynaps.ru # $FreeBSD: ports/mail/cucipop/Makefile,v 1.20 2012/09/21 10:07:33 bapt Exp $ # # NOTE: APOP works only for virtual hosts as designed! @@ -12,13 +9,12 @@ PORTVERSION= 1.31 PORTREVISION= 2 CATEGORIES= mail ipv6 -MASTER_SITES= ftp://ftp.informatik.rwth-aachen.de/pub/packages/cucipop/ - -DEPRECATED= Patches no more availables -EXPIRATION_DATE= 2012-10-20 +MASTER_SITES= ftp://ftp.informatik.rwth-aachen.de/pub/packages/cucipop/ \ + http://ftp.riken.go.jp/archives/net/mail/pop/ \ + http://horms.net/projects/cucipop/download/ -PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/ \ - ftp://ftp.pasta.cs.uit.no/pub/IPv6/misc/ +PATCH_SITES= ${MASTER_SITE_RINGSERVER} +PATCH_SITE_SUBDIR= net/kame/misc PATCHFILES= cucipop-1.31-v6-20010223.diff.gz PATCH_DIST_STRIP= -p1 @@ -27,6 +23,8 @@ #BUILD_DEPENDS= ${PREFIX}/include/db2/db.h:${PORTSDIR}/databases/db2 +MAKE_JOBS_SAFE= yes + MAN8= cucipop.8 #makevpopdb.8 PLIST_FILES= libexec/cucipop >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B2AC1065688 for ; Tue, 25 Sep 2012 18:10:34 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5DC198FC1F for ; Tue, 25 Sep 2012 18:10:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAYVv022455 for ; Tue, 25 Sep 2012 18:10:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAYw6022451; Tue, 25 Sep 2012 18:10:34 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:34 GMT Resent-Message-Id: <201209251810.q8PIAYw6022451@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A3C51065673 for ; Tue, 25 Sep 2012 18:08:38 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 1C2EE8FC12 for ; Tue, 25 Sep 2012 18:08:38 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 6C69F4AC036 for ; Wed, 26 Sep 2012 03:08:36 +0900 (JST) Message-Id: <20120926022458.1493a82fd2df7a4db2337a4d@yahoo.com> Date: Wed, 26 Sep 2012 02:24:58 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172031: mail/emh: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:34 -0000 >Number: 172031 >Category: ports >Synopsis: mail/emh: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:34 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES >How-To-Repeat: >Fix: diff -urN /usr/ports/mail/emh/Makefile mail/emh/Makefile --- /usr/ports/mail/emh/Makefile 2012-09-21 19:07:33.000000000 +0900 +++ mail/emh/Makefile 2012-09-25 03:37:25.000000000 +0900 @@ -1,24 +1,16 @@ -# New ports collection makefile for: emh (for emacs21) -# Date Created: 12 Mar 2001 -# Whom: Yoichi NAKAYAMA -# +# Created by: Yoichi NAKAYAMA # $FreeBSD: ports/mail/emh/Makefile,v 1.25 2012/09/21 10:07:33 bapt Exp $ -# PORTNAME= emh PORTVERSION= 1.14.1 PORTREVISION= 13 CATEGORIES= mail elisp -MASTER_SITES= ftp://ring.aist.go.jp/pub/elisp/semi/semi-1.14-for-flim-1.14/ \ - http://www.kanji.zinbun.kyoto-u.ac.jp/~tomo/lemi/dist/semi/semi-1.14-for-flim-1.14/ +MASTER_SITES= RINGSERVER/elisp/semi/semi-1.14-for-flim-1.14 PKGNAMESUFFIX= -${EMACS_PORT_NAME} MAINTAINER= ports@FreeBSD.org COMMENT= MIME extension of mh-e.el -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 - BUILD_DEPENDS+= ${LOCALBASE}/share/semi/${SEMI_COOKIE}:${PORTSDIR}/editors/semi${DEPPORT_SUFFIX} RUN_DEPENDS+= ${LOCALBASE}/share/semi/${SEMI_COOKIE}:${PORTSDIR}/editors/semi${DEPPORT_SUFFIX} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CBC28106568B for ; Tue, 25 Sep 2012 18:10:34 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A87118FC24 for ; Tue, 25 Sep 2012 18:10:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAYbx022539 for ; Tue, 25 Sep 2012 18:10:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAY0L022530; Tue, 25 Sep 2012 18:10:34 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:34 GMT Resent-Message-Id: <201209251810.q8PIAY0L022530@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6BA371065670 for ; Tue, 25 Sep 2012 18:08:44 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 3CDBB8FC08 for ; Tue, 25 Sep 2012 18:08:44 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 7FA7650037 for ; Wed, 26 Sep 2012 03:08:41 +0900 (JST) Message-Id: <20120926022502.4d1502c5b2eeb29c183946b1@yahoo.com> Date: Wed, 26 Sep 2012 02:25:02 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172032: math/convertall: Update to version 0.5.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:35 -0000 >Number: 172032 >Category: ports >Synopsis: math/convertall: Update to version 0.5.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:34 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.5.2 >How-To-Repeat: >Fix: diff -urN /usr/ports/math/convertall/Makefile math/convertall/Makefile --- /usr/ports/math/convertall/Makefile 2012-06-01 14:21:33.000000000 +0900 +++ math/convertall/Makefile 2012-09-25 03:37:36.000000000 +0900 @@ -1,30 +1,28 @@ -# New ports collection makefile for: convertall -# Date created: 2004-08-12 -# Whom: Michael Johnson -# +# Created by: Michael Johnson # $FreeBSD: ports/math/convertall/Makefile,v 1.24 2012/06/01 05:21:33 dinoex Exp $ -# PORTNAME= convertall -PORTVERSION= 0.5.1b -PORTREVISION= 2 +PORTVERSION= 0.5.2 CATEGORIES= math -MASTER_SITES= BERLIOS -DISTFILES= ${PORTNAME}-${PORTVERSION:S/b//}${EXTRACT_SUFX} \ - ${PORTNAME}-i18n-${PORTVERSION}${EXTRACT_SUFX} +MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} +DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \ + ${PORTNAME}-i18n-${PORTVERSION}a${EXTRACT_SUFX} MAINTAINER= ports@FreeBSD.org COMMENT= Another unit converter +LICENSE= GPLv2 # (or later) + RUN_DEPENDS= ${PYTHON_SITELIBDIR}/PyQt4/QtGui.so:${PORTSDIR}/x11-toolkits/py-qt4-gui -LICENSE= GPLv2 GPLv3 -LICENSE_COMB= dual +OPTIONS_DEFINE= DOCS WRKSRC= ${WRKDIR}/ConvertAll USE_PYTHON= 2.4+ +.include + post-patch: @cd ${WRKSRC}/source && ${REINPLACE_CMD} -e \ "/^dataFilePath/s|None|\'${DATADIR}\'|g ; \ @@ -51,7 +49,7 @@ ${INSTALL_DATA} ${WRKSRC}/icons/*.svg ${DATADIR}/icons @${MKDIR} ${DATADIR}/translations ${INSTALL_DATA} ${WRKSRC}/translations/*.qm ${DATADIR}/translations -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR} .endif diff -urN /usr/ports/math/convertall/distinfo math/convertall/distinfo --- /usr/ports/math/convertall/distinfo 2011-07-02 16:37:14.000000000 +0900 +++ math/convertall/distinfo 2012-08-09 04:51:09.000000000 +0900 @@ -1,4 +1,4 @@ -SHA256 (convertall-0.5.1.tar.gz) = 3e474257dfa0fb451ffff5dd70d5f4274984937d6ff090d09326ab5c404f4a2e -SIZE (convertall-0.5.1.tar.gz) = 60067 -SHA256 (convertall-i18n-0.5.1b.tar.gz) = 16ba35fc35c8acfd1187c85f65330b8e8cee0841cd98ec911c0dd9444dfcf640 -SIZE (convertall-i18n-0.5.1b.tar.gz) = 140977 +SHA256 (convertall-0.5.2.tar.gz) = 668738a06b20c8367f605a94ade400e0ca1d0fc213f34b1df3b634dc13ea824e +SIZE (convertall-0.5.2.tar.gz) = 60547 +SHA256 (convertall-i18n-0.5.2a.tar.gz) = 71af7167fd4a6ecdaf74a2ff83ceea7d452f6b20000ba3babf665b65c6810c8c +SIZE (convertall-i18n-0.5.2a.tar.gz) = 141084 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E797106568F for ; Tue, 25 Sep 2012 18:10:35 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0A93B8FC0C for ; Tue, 25 Sep 2012 18:10:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAY5U022618 for ; Tue, 25 Sep 2012 18:10:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAYLn022613; Tue, 25 Sep 2012 18:10:34 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:34 GMT Resent-Message-Id: <201209251810.q8PIAYLn022613@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F67C106566C for ; Tue, 25 Sep 2012 18:08:50 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id DDD1F8FC0A for ; Tue, 25 Sep 2012 18:08:49 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id AE04A47C037 for ; Wed, 26 Sep 2012 03:08:46 +0900 (JST) Message-Id: <20120926022506.a1f81bc74556676f0f7b8156@yahoo.com> Date: Wed, 26 Sep 2012 02:25:06 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172033: math/xspread: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:35 -0000 >Number: 172033 >Category: ports >Synopsis: math/xspread: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:34 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Add LICENSE - Add MAKE_JOBS_SAFE - Support PLIST_FILES Remove file: pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/math/xspread/Makefile math/xspread/Makefile --- /usr/ports/math/xspread/Makefile 2011-09-24 07:24:07.000000000 +0900 +++ math/xspread/Makefile 2012-09-25 03:37:44.000000000 +0900 @@ -1,34 +1,53 @@ -# New ports collection makefile for: xspread -# Date created: 28 June 1995 -# Whom: janek@gaja.ipan.lublin.pl -# +# Created by: janek@gaja.ipan.lublin.pl # $FreeBSD: ports/math/xspread/Makefile,v 1.19 2011/09/23 22:24:07 amdmi3 Exp $ -# PORTNAME= xspread PORTVERSION= 3.1.1c PORTREVISION= 2 CATEGORIES= math -MASTER_SITES= # disappeared +MASTER_SITES= http://archive.debian.org/%SUBDIR%/ \ + http://mirror.safehostnet.com/debian-archive/%SUBDIR%/ \ + http://mirrors.xmission.com/debian-archive/%SUBDIR%/ \ + http://vos-systems.net/ftp/%SUBDIR%/ +MASTER_SITE_SUBDIR= debian/dists/potato/main/source/math DISTNAME= ${PORTNAME}_${PORTVERSION}.orig MAINTAINER= ports@FreeBSD.org COMMENT= A spreadsheet program for X and terminals +LICENSE= GPLv2 # (or later) + +OPTIONS_DEFINE= X11 DOCS + WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}.orig GNU_CONFIGURE= yes -CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib" -CPPFLAGS+= -I${LOCALBASE}/include +MAKE_JOBS_SAFE= yes MAN1= xspread.1 pxspread.1 +PORTDOCS= * +PLIST_FILES= bin/pxspread bin/xspread + +.include + +.if ${PORT_OPTIONS:MX11} +USE_XORG= x11 +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +.else +CONFIGURE_ENV+= ac_cv_header_X11_X_h=no +.endif + +post-patch: + @${REINPLACE_CMD} -e \ + 's|^void main|int main|' ${WRKSRC}/psc.c do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pxspread ${PREFIX}/bin/pxspread ${INSTALL_PROGRAM} ${WRKSRC}/xspread ${PREFIX}/bin/xspread ${INSTALL_MAN} ${WRKSRC}/pxspread.man ${MANPREFIX}/man/man1/pxspread.1 ${INSTALL_MAN} ${WRKSRC}/xspread.man ${MANPREFIX}/man/man1/xspread.1 -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/x/notes ${DOCSDIR} diff -urN /usr/ports/math/xspread/pkg-plist math/xspread/pkg-plist --- /usr/ports/math/xspread/pkg-plist 2001-11-05 20:08:02.000000000 +0900 +++ math/xspread/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,65 +0,0 @@ -bin/pxspread -bin/xspread -%%PORTDOCS%%share/doc/xspread/README -%%PORTDOCS%%share/doc/xspread/doc/Sample_Run -%%PORTDOCS%%share/doc/xspread/doc/final_rpt -%%PORTDOCS%%share/doc/xspread/doc/last_xspread -%%PORTDOCS%%share/doc/xspread/doc/prog_rpt -%%PORTDOCS%%share/doc/xspread/doc/sc.changes -%%PORTDOCS%%share/doc/xspread/doc/sc.readme -%%PORTDOCS%%share/doc/xspread/doc/sc.vms_notes -%%PORTDOCS%%share/doc/xspread/doc/xspread.aux -%%PORTDOCS%%share/doc/xspread/doc/xspread.dvi -%%PORTDOCS%%share/doc/xspread/doc/xspread.log -%%PORTDOCS%%share/doc/xspread/doc/xspread.ps -%%PORTDOCS%%share/doc/xspread/doc/xspread.tex -%%PORTDOCS%%share/doc/xspread/doc/xspread.toc -%%PORTDOCS%%share/doc/xspread/doc/xspread_prog.asc -%%PORTDOCS%%share/doc/xspread/documents/progress.aux -%%PORTDOCS%%share/doc/xspread/documents/progress.dvi -%%PORTDOCS%%share/doc/xspread/documents/progress.log -%%PORTDOCS%%share/doc/xspread/documents/progress.ps -%%PORTDOCS%%share/doc/xspread/documents/progress.tex -%%PORTDOCS%%share/doc/xspread/documents/report.aux -%%PORTDOCS%%share/doc/xspread/documents/report.dvi -%%PORTDOCS%%share/doc/xspread/documents/report.log -%%PORTDOCS%%share/doc/xspread/documents/report.ps -%%PORTDOCS%%share/doc/xspread/documents/report.tex -%%PORTDOCS%%share/doc/xspread/notes -%%PORTDOCS%%share/doc/xspread/sample_files/demo_dates -%%PORTDOCS%%share/doc/xspread/sample_files/demo_func -%%PORTDOCS%%share/doc/xspread/sample_files/demo_math -%%PORTDOCS%%share/doc/xspread/sample_files/demo_matrix -%%PORTDOCS%%share/doc/xspread/sample_files/demo_strval -%%PORTDOCS%%share/doc/xspread/sample_files/ex1 -%%PORTDOCS%%share/doc/xspread/sample_files/ex1o -%%PORTDOCS%%share/doc/xspread/sample_files/ex2 -%%PORTDOCS%%share/doc/xspread/sample_files/ex2o -%%PORTDOCS%%share/doc/xspread/sample_files/ex3 -%%PORTDOCS%%share/doc/xspread/sample_files/tutorial -%%PORTDOCS%%share/doc/xspread/tests/Makefile -%%PORTDOCS%%share/doc/xspread/tests/READ_ME -%%PORTDOCS%%share/doc/xspread/tests/copy.cmp -%%PORTDOCS%%share/doc/xspread/tests/copy.input -%%PORTDOCS%%share/doc/xspread/tests/copy.output -%%PORTDOCS%%share/doc/xspread/tests/copy.sc -%%PORTDOCS%%share/doc/xspread/tests/intfunc.cmp -%%PORTDOCS%%share/doc/xspread/tests/intfunc.input -%%PORTDOCS%%share/doc/xspread/tests/intfunc.output -%%PORTDOCS%%share/doc/xspread/tests/intfunc.sc -%%PORTDOCS%%share/doc/xspread/tests/irr.cmp -%%PORTDOCS%%share/doc/xspread/tests/irr.input -%%PORTDOCS%%share/doc/xspread/tests/irr.output -%%PORTDOCS%%share/doc/xspread/tests/irr.sc -%%PORTDOCS%%share/doc/xspread/tests/read.cmp -%%PORTDOCS%%share/doc/xspread/tests/read.data -%%PORTDOCS%%share/doc/xspread/tests/read.input -%%PORTDOCS%%share/doc/xspread/tests/read.output -%%PORTDOCS%%share/doc/xspread/tests/read.sc -%%PORTDOCS%%share/doc/xspread/tests/tester.sh -%%PORTDOCS%%share/doc/xspread/tests/txt.sc -%%PORTDOCS%%@dirrm share/doc/xspread/tests -%%PORTDOCS%%@dirrm share/doc/xspread/sample_files -%%PORTDOCS%%@dirrm share/doc/xspread/documents -%%PORTDOCS%%@dirrm share/doc/xspread/doc -%%PORTDOCS%%@dirrm share/doc/xspread >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 80F781065675 for ; Tue, 25 Sep 2012 18:10:35 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5DAAA8FC21 for ; Tue, 25 Sep 2012 18:10:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAZxL022702 for ; Tue, 25 Sep 2012 18:10:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAZue022693; Tue, 25 Sep 2012 18:10:35 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:35 GMT Resent-Message-Id: <201209251810.q8PIAZue022693@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B11071065674 for ; Tue, 25 Sep 2012 18:08:54 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 7E61F8FC0C for ; Tue, 25 Sep 2012 18:08:54 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 7E49D34034 for ; Wed, 26 Sep 2012 03:08:52 +0900 (JST) Message-Id: <20120926022509.0ed984879cf32c10a0f6a172@yahoo.com> Date: Wed, 26 Sep 2012 02:25:09 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172034: math/yacas: Update to version 1.3.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:35 -0000 >Number: 172034 >Category: ports >Synopsis: math/yacas: Update to version 1.3.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:35 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.3.3 >How-To-Repeat: >Fix: diff -urN /usr/ports/math/yacas/Makefile math/yacas/Makefile --- /usr/ports/math/yacas/Makefile 2012-06-29 21:42:03.000000000 +0900 +++ math/yacas/Makefile 2012-09-25 03:37:50.000000000 +0900 @@ -1,13 +1,8 @@ -# ex:ts=8 -# New ports collection makefile for: yacas -# Date created: Jun 21, 2001 -# Whom: ijliao -# +# Created by: ijliao # $FreeBSD: ports/math/yacas/Makefile,v 1.51 2012/06/29 12:42:03 bapt Exp $ -# PORTNAME= yacas -PORTVERSION= 1.3.2 +PORTVERSION= 1.3.3 CATEGORIES= math MASTER_SITES= http://yacas.sourceforge.net/backups/ @@ -15,10 +10,9 @@ COMMENT= Yet Another Computer Algebra System LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING OPTIONS_DEFINE= TESTS DOCS -OPTIONS_DEFAULT= TESTS +OPTIONS_DEFAULT=TESTS TESTS_DESC= Run bundled self-tests after build USE_PERL5_BUILD=yes @@ -28,10 +22,6 @@ .include -.if ${ARCH} == "sparc64" -BROKEN= Does not compile with GCC 4.2 -.endif - .if ${PORT_OPTIONS:MDOCS} CONFIGURE_ARGS+= --enable-html-doc --with-html-dir=${DOCSDIR} .else @@ -42,8 +32,16 @@ BUILD_DEPENDS+= bash:${PORTSDIR}/shells/bash .endif +.include + +.if ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif + post-patch: @${REINPLACE_CMD} -e \ + 's|^SPECIAL_|#SPECIAL_|' ${WRKSRC}/tests/Makefile.in + @${REINPLACE_CMD} -e \ 's| /bin/bash| ${LOCALBASE}/bin/bash|' ${WRKSRC}/tests/test-yacas post-build: @@ -52,4 +50,4 @@ ${MAKEFILE} check ${MAKE_ARGS}) .endif -.include +.include diff -urN /usr/ports/math/yacas/distinfo math/yacas/distinfo --- /usr/ports/math/yacas/distinfo 2012-02-20 09:06:30.000000000 +0900 +++ math/yacas/distinfo 2012-08-25 04:48:06.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (yacas-1.3.2.tar.gz) = 82c7dc0de492b4290633e6abf18d35a2ec03117e6ea3e0f9418e6e85372c030e -SIZE (yacas-1.3.2.tar.gz) = 1292706 +SHA256 (yacas-1.3.3.tar.gz) = 6c73c653c5e13567510888800a68c14d231b1ef4f2b33193a158b8caec142141 +SIZE (yacas-1.3.3.tar.gz) = 1296777 diff -urN /usr/ports/math/yacas/pkg-plist math/yacas/pkg-plist --- /usr/ports/math/yacas/pkg-plist 2011-11-26 01:45:13.000000000 +0900 +++ math/yacas/pkg-plist 2012-09-13 22:11:32.000000000 +0900 @@ -97,6 +97,8 @@ %%DATADIR%%/base.rep/math.ys.def %%DATADIR%%/c_form.rep/code.ys %%DATADIR%%/c_form.rep/code.ys.def +%%DATADIR%%/calendar.rep/code.ys +%%DATADIR%%/calendar.rep/code.ys.def %%DATADIR%%/complex.rep/code.ys %%DATADIR%%/complex.rep/code.ys.def %%DATADIR%%/complex.rep/om.ys @@ -412,6 +414,7 @@ @dirrm %%DATADIR%%/controlflow.rep @dirrm %%DATADIR%%/constants.rep @dirrm %%DATADIR%%/complex.rep +@dirrm %%DATADIR%%/calendar.rep @dirrm %%DATADIR%%/c_form.rep @dirrm %%DATADIR%%/base.rep @dirrm %%DATADIR%%/assoc.rep >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D84F81065677 for ; Tue, 25 Sep 2012 18:10:35 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B44D38FC2F for ; Tue, 25 Sep 2012 18:10:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAZgr022786 for ; Tue, 25 Sep 2012 18:10:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAZU2022779; Tue, 25 Sep 2012 18:10:35 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:35 GMT Resent-Message-Id: <201209251810.q8PIAZU2022779@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C41871065673 for ; Tue, 25 Sep 2012 18:08:59 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 6B6788FC15 for ; Tue, 25 Sep 2012 18:08:59 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 15C3F34034 for ; Wed, 26 Sep 2012 03:08:56 +0900 (JST) Message-Id: <20120926022513.25a5d54ea9d67fd98fb50abf@yahoo.com> Date: Wed, 26 Sep 2012 02:25:13 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172035: misc/cstream: Update to version 3.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:35 -0000 >Number: 172035 >Category: ports >Synopsis: misc/cstream: Update to version 3.0.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:35 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 3.0.0 >How-To-Repeat: >Fix: diff -urN /usr/ports/misc/cstream/Makefile misc/cstream/Makefile --- /usr/ports/misc/cstream/Makefile 2012-08-16 04:07:31.000000000 +0900 +++ misc/cstream/Makefile 2012-09-25 03:37:59.000000000 +0900 @@ -1,23 +1,25 @@ -# New ports collection makefile for: cstream -# Date created: 19990304 -# Whom: cracauer@cons.org "Martin Cracauer" -# +# Created by: cracauer@cons.org "Martin Cracauer" # $FreeBSD: ports/misc/cstream/Makefile,v 1.28 2012/08/15 19:07:31 tabthorpe Exp $ -# PORTNAME= cstream -PORTVERSION= 2.7.6 +PORTVERSION= 3.0.0 CATEGORIES= misc -MASTER_SITES= http://www.cons.org/cracauer/download/ \ - http://www2.cons.org/freebsd-distfiles/ \ - http://www3.cons.org/freebsd-distfiles/ +MASTER_SITES= http://www.cons.org/cracauer/download/ MAINTAINER= ports@FreeBSD.org COMMENT= Like dd(1) tool, precise bandwidth limiting/reporting, fifo, TCP +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYRIGHT + +GNU_CONFIGURE= yes +MAKE_JOBS_SAFE= yes + MAN1= cstream.1 PLIST_FILES= bin/cstream -GNU_CONFIGURE= yes +post-patch: + @${REINPLACE_CMD} -e \ + '/^if \[/s| $$CFLAGS | "$$CFLAGS" |' ${WRKSRC}/configure .include diff -urN /usr/ports/misc/cstream/distinfo misc/cstream/distinfo --- /usr/ports/misc/cstream/distinfo 2011-06-05 14:01:41.000000000 +0900 +++ misc/cstream/distinfo 2012-09-10 17:54:51.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (cstream-2.7.6.tar.gz) = f8c33be315e29e4fb20918ad379c5924f5d6f8e665204c49a2c06fa46cd4674a -SIZE (cstream-2.7.6.tar.gz) = 92056 +SHA256 (cstream-3.0.0.tar.gz) = 3261202434d22256bb55fbcbafdfda5fac84c9c1e5589ba2c4ded45d3dad9bfc +SIZE (cstream-3.0.0.tar.gz) = 98286 diff -urN /usr/ports/misc/cstream/pkg-descr misc/cstream/pkg-descr --- /usr/ports/misc/cstream/pkg-descr 2001-07-26 22:57:18.000000000 +0900 +++ misc/cstream/pkg-descr 2012-09-10 17:52:42.000000000 +0900 @@ -1,27 +1,9 @@ -cstream is a general-purpose stream-handling tool like UNIX' dd, -usually used in commandline-constructed pipes. +Cstream filters data streams, much like the UNIX tool dd(1). It has a more +traditional commandline syntax, support for precise bandwidth limiting and +reporting and support for FIFOs. Data limits and throughput rate +calculation will work for files > 4 GB. -- Sane commandline switch syntax. -- Exact throughput limiting, on the incoming side. -- Precise throughput reporting. Either at the end of the - transmission or everytime SIGUSR1 is received. Quite useful to ask - lengthy operations how much data has been transferred yet, i.e. when - writing tapes. Reports are done in bytes/sec and if appropriate in - KB/sec or MB/sec, where 1K = 1024. -- SIGHUP causes a clean shutdown before EOF on input. -- Build-in support to write its PID to a file. -- Build-in support for fifos. Example usage is a 'pseudo-device', - something that sinks or delivers data at an appropriate rate, but - looks like a file, i.e. if you test soundcard software. -- Built-in data creation and sink, no more redirection of - /dev/null and /dev/zero. These special devices speed varies greatly - among operating systems, redirecting from it isn't appropriate - benchmarking and a waste of resources anyway. -- "gcc -Wall" clean source code, serious effort taken to avoid - undefined behavior in ANSI C or POSIX, except long long - is required. Limiting and reporting works on data amounts > 4 GB. -- Audio support: input/output-files can be switched to Audi CD quality mode -- TCP support: input-output streams can be TCP connections, either - connecting to other hosts or waiting for a host to connect +Cstream reads from the standard input and writes to the standard output, if +no filenames are given. It will also 'generate' or 'sink' data if desired. WWW: http://www.cons.org/cracauer/cstream.html >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:36 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3660F106567A for ; Tue, 25 Sep 2012 18:10:36 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 13C618FC1A for ; Tue, 25 Sep 2012 18:10:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAZZq022864 for ; Tue, 25 Sep 2012 18:10:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAZUX022860; Tue, 25 Sep 2012 18:10:35 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:35 GMT Resent-Message-Id: <201209251810.q8PIAZUX022860@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C034F1065677 for ; Tue, 25 Sep 2012 18:09:03 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 9131A8FC12 for ; Tue, 25 Sep 2012 18:09:03 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 0BADE4AC037 for ; Wed, 26 Sep 2012 03:09:01 +0900 (JST) Message-Id: <20120926022517.433a88add49131965a42db82@yahoo.com> Date: Wed, 26 Sep 2012 02:25:17 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172036: multimedia/avidemux2: Fix CMAKE_ARGS usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:36 -0000 >Number: 172036 >Category: ports >Synopsis: multimedia/avidemux2: Fix CMAKE_ARGS usage >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:35 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Fix CMAKE_ARGS usage >How-To-Repeat: >Fix: diff -urN /usr/ports/multimedia/avidemux2/Makefile.common multimedia/avidemux2/Makefile.common --- /usr/ports/multimedia/avidemux2/Makefile.common 2012-07-26 19:06:24.000000000 +0900 +++ multimedia/avidemux2/Makefile.common 2012-08-05 18:05:48.000000000 +0900 @@ -186,7 +186,7 @@ LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis PLIST_SUB+= VORBIS="" .else -CMAKE_ARGS+= -DVORBIS:BOOL=OFF +CMAKE_ARGS+= -DLIBVORBIS:BOOL=OFF -DVORBIS:BOOL=OFF PLIST_SUB+= VORBIS="@comment " .endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:36 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 897651065670 for ; Tue, 25 Sep 2012 18:10:36 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 65B378FC1C for ; Tue, 25 Sep 2012 18:10:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAaxg022950 for ; Tue, 25 Sep 2012 18:10:36 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAahC022941; Tue, 25 Sep 2012 18:10:36 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:36 GMT Resent-Message-Id: <201209251810.q8PIAahC022941@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5222106564A for ; Tue, 25 Sep 2012 18:09:09 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 4EBE68FC08 for ; Tue, 25 Sep 2012 18:09:09 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 44E8150038 for ; Wed, 26 Sep 2012 03:09:06 +0900 (JST) Message-Id: <20120926022520.adee3e25a75556d1be7a5104@yahoo.com> Date: Wed, 26 Sep 2012 02:25:20 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172037: multimedia/dvdauthor: Update to version 0.7.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:36 -0000 >Number: 172037 >Category: ports >Synopsis: multimedia/dvdauthor: Update to version 0.7.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:36 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.7.1 Remove file: files/patch-spuunmux.c pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/multimedia/dvdauthor/Makefile multimedia/dvdauthor/Makefile --- /usr/ports/multimedia/dvdauthor/Makefile 2012-06-01 14:22:27.000000000 +0900 +++ multimedia/dvdauthor/Makefile 2012-09-25 03:38:18.000000000 +0900 @@ -1,69 +1,76 @@ -# New ports collection makefile for: dvdauthor -# Date created: 20 April 2003 -# Whom: pb@FreeBSD.org -# +# Created by: pb@FreeBSD.org # $FreeBSD: ports/multimedia/dvdauthor/Makefile,v 1.51 2012/06/01 05:22:27 dinoex Exp $ -# PORTNAME= dvdauthor -PORTVERSION= 0.7.0 -PORTREVISION= 3 +PORTVERSION= 0.7.1 CATEGORIES= multimedia MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Makes a DVD file structure from one or more MPEG2 streams -LIB_DEPENDS= dvdread.4:${PORTSDIR}/multimedia/libdvdread \ - fribidi.3:${PORTSDIR}/converters/fribidi \ - xml2.5:${PORTSDIR}/textproc/libxml2 \ - freetype.9:${PORTSDIR}/print/freetype2 +LICENSE= GPLv2 + +LIB_DEPENDS= fribidi:${PORTSDIR}/converters/fribidi \ + png15:${PORTSDIR}/graphics/png \ + freetype:${PORTSDIR}/print/freetype2 \ + fontconfig:${PORTSDIR}/x11-fonts/fontconfig + +OPTIONS_DEFINE= DVDREAD IMAGEMAGICK DOCS +OPTIONS_DEFAULT=DVDREAD +DVDREAD_DESC= Enable libdvdread support + +WRKSRC= ${WRKDIR}/${PORTNAME} USE_BISON= build +USE_GNOME= libxml2 +USE_ICONV= yes USE_GMAKE= yes GNU_CONFIGURE= yes -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -WRKSRC= ${WRKDIR}/dvdauthor -MAN1= dvdauthor.1 dvddirdel.1 dvdunauthor.1 mpeg2desc.1 spumux.1 spuunmux.1 +CONFIGURE_ENV= ac_cv_prog_GMAGICKCONFIG=no +MAKE_JOBS_SAFE= yes -.include - -.if exists(${LOCALBASE}/lib/libfreetype.so.9) -WITH_FREETYPE= yes -.endif -.if exists(${LOCALBASE}/lib/libiconv.so) -WITH_ICONV= yes -.endif -.if exists(${LOCALBASE}/lib/libMagickWand.so.5) -WITH_IMAGEMAGICK= yes -.endif +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -.if defined(WITH_ICONV) -USE_ICONV= yes -CFLAGS+= -DICONV_CONV=yes -.endif -.if defined(WITH_IMAGEMAGICK) -LIB_DEPENDS+= MagickWand.5:${PORTSDIR}/graphics/ImageMagick +MAN1= dvdauthor.1 \ + dvddirdel.1 \ + mpeg2desc.1 \ + spumux.1 \ + spuunmux.1 +PORTDOCS= README \ + README.FreeBSD +PLIST_FILES= bin/dvdauthor \ + bin/dvddirdel \ + bin/mpeg2desc \ + bin/spumux \ + bin/spuunmux \ + %%DATADIR%%/common.xsd \ + %%DATADIR%%/dvdauthor.xsd \ + %%DATADIR%%/spumux.xsd +PLIST_DIRS= %%DATADIR%% + +.include + +.if ${PORT_OPTIONS:MDVDREAD} +LIB_DEPENDS+= dvdread:${PORTSDIR}/multimedia/libdvdread +MAN1+= dvdunauthor.1 +PLIST_FILES+= bin/dvdunauthor .else -LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png +CONFIGURE_ARGS+=--disable-dvdunauthor .endif -pre-everything:: -.if !defined(WITH_ICONV) - @${ECHO_MSG} "You can enable Iconv support by defining WITH_ICONV." - @${ECHO_MSG} -.endif -.if !defined(WITH_IMAGEMAGICK) - @${ECHO_MSG} "You can enable ImageMagick support by defining WITH_IMAGEMAGICK." - @${ECHO_MSG} +.if ${PORT_OPTIONS:MIMAGEMAGICK} +LIB_DEPENDS+= MagickCore:${PORTSDIR}/graphics/ImageMagick +.else +CONFIGURE_ENV+= ac_cv_prog_MAGICKCONFIG=no .endif post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/dvdauthor - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/dvdauthor - ${INSTALL_DATA} ${FILESDIR}/README.FreeBSD ${PREFIX}/share/doc/dvdauthor +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + ${INSTALL_DATA} ${FILESDIR}/README.FreeBSD ${DOCSDIR} .endif -.include +.include diff -urN /usr/ports/multimedia/dvdauthor/distinfo multimedia/dvdauthor/distinfo --- /usr/ports/multimedia/dvdauthor/distinfo 2011-09-17 03:40:27.000000000 +0900 +++ multimedia/dvdauthor/distinfo 2012-09-13 18:43:40.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (dvdauthor-0.7.0.tar.gz) = aea6af7b99eba38ffa9dc5ad1521c2cc652e043cea0e7482e239d2a3fc2f34d0 -SIZE (dvdauthor-0.7.0.tar.gz) = 414191 +SHA256 (dvdauthor-0.7.1.tar.gz) = 501fb11b09c6eb9c5a229dcb400bd81e408cc78d34eab6749970685023c51fe9 +SIZE (dvdauthor-0.7.1.tar.gz) = 421324 diff -urN /usr/ports/multimedia/dvdauthor/files/patch-spuunmux.c multimedia/dvdauthor/files/patch-spuunmux.c --- /usr/ports/multimedia/dvdauthor/files/patch-spuunmux.c 2012-06-01 14:22:27.000000000 +0900 +++ multimedia/dvdauthor/files/patch-spuunmux.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,19 +0,0 @@ ---- src/spuunmux.c.orig 2010-05-10 09:27:55.000000000 +0200 -+++ src/spuunmux.c 2012-04-27 10:44:31.000000000 +0200 -@@ -39,6 +39,7 @@ - #include - - #include -+#include - - #include "rgb.h" - #include "common.h" -@@ -610,7 +611,7 @@ - png_destroy_write_struct(&png_ptr, (png_infopp)NULL); - return -1; - } /*if*/ -- if (setjmp(png_ptr->jmpbuf)) -+ if (setjmp(png_jmpbuf(png_ptr))) - { - png_destroy_write_struct(&png_ptr, &info_ptr); - fclose(fp); diff -urN /usr/ports/multimedia/dvdauthor/pkg-plist multimedia/dvdauthor/pkg-plist --- /usr/ports/multimedia/dvdauthor/pkg-plist 2005-12-27 11:14:54.000000000 +0900 +++ multimedia/dvdauthor/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,12 +0,0 @@ -bin/dvdauthor -bin/dvddirdel -bin/dvdunauthor -bin/mpeg2desc -bin/spumux -bin/spuunmux -share/dvdauthor/dvdauthor.xsd -share/dvdauthor/spumux.xsd -@dirrm share/dvdauthor -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/README.FreeBSD -%%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:36 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E417410656A6 for ; Tue, 25 Sep 2012 18:10:36 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BF7A98FC30 for ; Tue, 25 Sep 2012 18:10:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAa3i023031 for ; Tue, 25 Sep 2012 18:10:36 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAaea023024; Tue, 25 Sep 2012 18:10:36 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:36 GMT Resent-Message-Id: <201209251810.q8PIAaea023024@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9E1F8106566B for ; Tue, 25 Sep 2012 18:09:14 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 611838FC0A for ; Tue, 25 Sep 2012 18:09:14 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id E66D74AC038 for ; Wed, 26 Sep 2012 03:09:11 +0900 (JST) Message-Id: <20120926022524.1bba80959fa5752591a4dca6@yahoo.com> Date: Wed, 26 Sep 2012 02:25:24 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172038: multimedia/dvdid: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:37 -0000 >Number: 172038 >Category: ports >Synopsis: multimedia/dvdid: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:36 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Support PORTDOCS >How-To-Repeat: >Fix: diff -urN /usr/ports/multimedia/dvdid/Makefile multimedia/dvdid/Makefile --- /usr/ports/multimedia/dvdid/Makefile 2012-08-23 06:42:37.000000000 +0900 +++ multimedia/dvdid/Makefile 2012-09-25 03:38:25.000000000 +0900 @@ -1,21 +1,35 @@ -# New ports collection makefile for: dvdid -# Date created: 2009-09-14 -# Whom: Christopher Key -# +# Created by: Christopher Key # $FreeBSD: ports/multimedia/dvdid/Makefile,v 1.2 2012/08/22 21:42:37 linimon Exp $ -# PORTNAME= dvdid PORTVERSION= 0.1.1 +PORTREVISION= 1 CATEGORIES= multimedia -MASTER_SITES= http://www.srcf.ucam.org/~cjk32/dvdid/ +MASTER_SITES= http://dvdid.cjkey.org.uk/ MAINTAINER= ports@FreeBSD.org COMMENT= Tool for calculating dvdids +OPTIONS_DEFINE= DOCS + GNU_CONFIGURE= yes USE_LDCONFIG= yes +MAKE_JOBS_SAFE= yes + +PORTSCOUT= limit:^0\.1\. + +.include + +post-patch: + @${REINPLACE_CMD} -e \ + '/^SUBDIRS/s|doc||' ${WRKSRC}/Makefile.in -DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC}/doc && ${INSTALL_DATA} dvdid.tag ${DOCSDIR} + @${MKDIR} ${DOCSDIR}/html/api + cd ${WRKSRC}/doc/html/api && ${INSTALL_DATA} * ${DOCSDIR}/html/api +.endif .include diff -urN /usr/ports/multimedia/dvdid/pkg-descr multimedia/dvdid/pkg-descr --- /usr/ports/multimedia/dvdid/pkg-descr 2009-10-06 21:46:20.000000000 +0900 +++ multimedia/dvdid/pkg-descr 2012-08-25 05:30:19.000000000 +0900 @@ -1,4 +1,4 @@ Library and executable for calculating dvdids as returned by Windows' IDvdInfo2::GetDiscID. -WWW: http://www.srcf.ucam.org/~cjk32/dvdid/ +WWW: http://dvdid.cjkey.org.uk/ diff -urN /usr/ports/multimedia/dvdid/pkg-plist multimedia/dvdid/pkg-plist --- /usr/ports/multimedia/dvdid/pkg-plist 2009-10-07 00:13:28.000000000 +0900 +++ multimedia/dvdid/pkg-plist 2012-08-25 05:54:09.000000000 +0900 @@ -2,37 +2,37 @@ include/dvdid/dvdid.h include/dvdid/dvdid2.h include/dvdid/export.h -@dirrm include/dvdid lib/libdvdid.a lib/libdvdid.la lib/libdvdid.so lib/libdvdid.so.0 -%%DOCSDIR%%/dvdid.tag -%%DOCSDIR%%/html/api/annotated.html -%%DOCSDIR%%/html/api/classes.html -%%DOCSDIR%%/html/api/doxygen.css -%%DOCSDIR%%/html/api/doxygen.png -%%DOCSDIR%%/html/api/dvdid2_8h.html -%%DOCSDIR%%/html/api/dvdid2_8h_source.html -%%DOCSDIR%%/html/api/dvdid_8h.html -%%DOCSDIR%%/html/api/dvdid_8h_source.html -%%DOCSDIR%%/html/api/export_8h.html -%%DOCSDIR%%/html/api/export_8h_source.html -%%DOCSDIR%%/html/api/files.html -%%DOCSDIR%%/html/api/functions.html -%%DOCSDIR%%/html/api/functions_vars.html -%%DOCSDIR%%/html/api/globals.html -%%DOCSDIR%%/html/api/globals_defs.html -%%DOCSDIR%%/html/api/globals_enum.html -%%DOCSDIR%%/html/api/globals_eval.html -%%DOCSDIR%%/html/api/globals_func.html -%%DOCSDIR%%/html/api/globals_type.html -%%DOCSDIR%%/html/api/index.html -%%DOCSDIR%%/html/api/structdvdid__fileinfo__s.html -%%DOCSDIR%%/html/api/tab_b.gif -%%DOCSDIR%%/html/api/tab_l.gif -%%DOCSDIR%%/html/api/tab_r.gif -%%DOCSDIR%%/html/api/tabs.css -@dirrm %%DOCSDIR%%/html/api -@dirrm %%DOCSDIR%%/html -@dirrm %%DOCSDIR%% +%%PORTDOCS%%%%DOCSDIR%%/dvdid.tag +%%PORTDOCS%%%%DOCSDIR%%/html/api/annotated.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/classes.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/doxygen.css +%%PORTDOCS%%%%DOCSDIR%%/html/api/doxygen.png +%%PORTDOCS%%%%DOCSDIR%%/html/api/dvdid2_8h.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/dvdid2_8h_source.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/dvdid_8h.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/dvdid_8h_source.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/export_8h.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/export_8h_source.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/files.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/functions.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/functions_vars.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/globals.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/globals_defs.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/globals_enum.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/globals_eval.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/globals_func.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/globals_type.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/index.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/structdvdid__fileinfo__s.html +%%PORTDOCS%%%%DOCSDIR%%/html/api/tab_b.gif +%%PORTDOCS%%%%DOCSDIR%%/html/api/tab_l.gif +%%PORTDOCS%%%%DOCSDIR%%/html/api/tab_r.gif +%%PORTDOCS%%%%DOCSDIR%%/html/api/tabs.css +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/api +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm include/dvdid >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:37 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C4F91065672 for ; Tue, 25 Sep 2012 18:10:37 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 19FDA8FC08 for ; Tue, 25 Sep 2012 18:10:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAauS023114 for ; Tue, 25 Sep 2012 18:10:36 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAaBH023108; Tue, 25 Sep 2012 18:10:36 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:36 GMT Resent-Message-Id: <201209251810.q8PIAaBH023108@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BFE5B1065676 for ; Tue, 25 Sep 2012 18:09:18 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 913668FC14 for ; Tue, 25 Sep 2012 18:09:18 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id E412F50037 for ; Wed, 26 Sep 2012 03:09:16 +0900 (JST) Message-Id: <20120926022527.9c5b71130e056410240f812e@yahoo.com> Date: Wed, 26 Sep 2012 02:25:27 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172039: net/enet: Update to version 1.3.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:37 -0000 >Number: 172039 >Category: ports >Synopsis: net/enet: Update to version 1.3.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:36 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.3.5 >How-To-Repeat: >Fix: diff -urN /usr/ports/net/enet/Makefile net/enet/Makefile --- /usr/ports/net/enet/Makefile 2012-06-06 06:00:22.000000000 +0900 +++ net/enet/Makefile 2012-09-25 03:38:33.000000000 +0900 @@ -1,12 +1,8 @@ -# New ports collection makefile for: enet -# Date created: 2006-09-23 -# Whom: Stanislav Sedov -# +# Created by: Stanislav Sedov # $FreeBSD: ports/net/enet/Makefile,v 1.9 2012/06/05 21:00:22 sylvio Exp $ -# PORTNAME= enet -PORTVERSION= 1.3.4 +PORTVERSION= 1.3.5 PORTEPOCH= 1 CATEGORIES= net MASTER_SITES= http://enet.bespin.org/download/ diff -urN /usr/ports/net/enet/distinfo net/enet/distinfo --- /usr/ports/net/enet/distinfo 2012-06-06 06:00:22.000000000 +0900 +++ net/enet/distinfo 2012-08-01 21:35:43.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (enet-1.3.4.tar.gz) = 34538e09a6cf50ae5346d4d800e2df4d4d7ac6f857cf580bc6b3c638ac5f462d -SIZE (enet-1.3.4.tar.gz) = 498546 +SHA256 (enet-1.3.5.tar.gz) = 5a8a2049d5f0a2803be83d1afc0e68f5d892711d7866eb3e66bf9908164324c5 +SIZE (enet-1.3.5.tar.gz) = 516693 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:37 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 92717106568A for ; Tue, 25 Sep 2012 18:10:37 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6E0048FC15 for ; Tue, 25 Sep 2012 18:10:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAbAO023195 for ; Tue, 25 Sep 2012 18:10:37 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAbKd023185; Tue, 25 Sep 2012 18:10:37 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:37 GMT Resent-Message-Id: <201209251810.q8PIAbKd023185@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D77651065672 for ; Tue, 25 Sep 2012 18:09:24 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 7EE478FC0A for ; Tue, 25 Sep 2012 18:09:24 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 57DA250038 for ; Wed, 26 Sep 2012 03:09:21 +0900 (JST) Message-Id: <20120926022531.caded37a7f9321b8c8782dc8@yahoo.com> Date: Wed, 26 Sep 2012 02:25:31 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172040: net/ldap2dns: Update to version 0.4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:37 -0000 >Number: 172040 >Category: ports >Synopsis: net/ldap2dns: Update to version 0.4.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:37 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.4.2 Remove file: files/patch-Makefile files/patch-ldap2dns.c pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/net/ldap2dns/Makefile net/ldap2dns/Makefile --- /usr/ports/net/ldap2dns/Makefile 2012-09-21 19:07:33.000000000 +0900 +++ net/ldap2dns/Makefile 2012-09-25 03:38:44.000000000 +0900 @@ -1,44 +1,64 @@ -# New ports collection makefile for: ldap2dns -# Date created: 29 September 2003 -# Whom: Bruce M Simpson -# +# Created by: Bruce M Simpson # $FreeBSD: ports/net/ldap2dns/Makefile,v 1.15 2012/09/21 10:07:33 bapt Exp $ -# PORTNAME= ldap2dns -PORTVERSION= 0.4.1 -PORTREVISION= 2 +PORTVERSION= 0.4.2 CATEGORIES= net -MASTER_SITES= http://projects.alkaloid.net/e107_files/downloads/ +MASTER_SITES= http://cloud.github.com/downloads/bklang/ldap2dns/ MAINTAINER= ports@FreeBSD.org COMMENT= Maintain DNS zones using an LDAP directory -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 +LICENSE= GPLv2 RUN_DEPENDS= p5-Net-DNS>=0:${PORTSDIR}/dns/p5-Net-DNS \ p5-perl-ldap>=0:${PORTSDIR}/net/p5-perl-ldap -USE_GMAKE= yes +OPTIONS_DEFINE= DOCS + +USE_PERL5_RUN= yes USE_OPENLDAP= yes -USE_PERL5= yes +USE_GMAKE= yes + +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +MAN1= ldap2dns.1 +PORTDOCS= * +PLIST_FILES= bin/ldap2dns \ + bin/ldap2dnsd \ + %%DATADIR%%/axfr2ldap.pl \ + %%DATADIR%%/data2ldif.pl \ + %%DATADIR%%/ldap2dns.schema \ + %%DATADIR%%/ldap2tinydns-conf +PLIST_DIRS= %%DATADIR%% -MAKE_ENV= INC=-I${PREFIX}/include LIB=-L${PREFIX}/lib +.include post-patch: - @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX}," ${WRKSRC}/ldap2dns.c - @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX}," ${WRKSRC}/ldap2tinydns-conf + @${REINPLACE_CMD} -e \ + 's|^CC=|CC?=| ; \ + s|^LD=.*|LD=$$(CC)|' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e \ + 's|"/etc|"${PREFIX}/etc|' ${WRKSRC}/ldap2dns.c + @${REINPLACE_CMD} -e \ + 's|^/etc|${PREFIX}/etc|' ${WRKSRC}/ldap2dns.1 + @${REINPLACE_CMD} -e \ + 's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/ldap2tinydns-conf do-install: - ${MKDIR} ${DATADIR} - ${INSTALL_SCRIPT} ${WRKSRC}/ldap2dns ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/ldap2dnsd ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/ldap2dns ${PREFIX}/bin + ${LN} -sf ldap2dns ${PREFIX}/bin/ldap2dnsd + ${INSTALL_MAN} ${WRKSRC}/ldap2dns.1 ${MANPREFIX}/man/man1 + @${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/ldap2dns.schema ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/doc/example.ldif ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/doc/README.html ${DATADIR} - ${INSTALL_SCRIPT} ${WRKSRC}/ldap2tinydns-conf ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/ldap2tinydns-conf ${DATADIR} ${INSTALL_SCRIPT} ${WRKSRC}/scripts/axfr2ldap.pl ${DATADIR} ${INSTALL_SCRIPT} ${WRKSRC}/scripts/data2ldif.pl ${DATADIR} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/README.html ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/example.ldif ${DOCSDIR} +.endif .include diff -urN /usr/ports/net/ldap2dns/distinfo net/ldap2dns/distinfo --- /usr/ports/net/ldap2dns/distinfo 2011-03-20 21:51:37.000000000 +0900 +++ net/ldap2dns/distinfo 2012-08-09 05:24:50.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (ldap2dns-0.4.1.tar.gz) = 870614b685a54dedc17c108c201b8aa30146865c03887358c06fad58cb6e2f60 -SIZE (ldap2dns-0.4.1.tar.gz) = 54857 +SHA256 (ldap2dns-0.4.2.tar.gz) = 23a24bd2233dafeb40cc2d755fa24cc4bd1207e92fdee614e642ea1064711b98 +SIZE (ldap2dns-0.4.2.tar.gz) = 61325 diff -urN /usr/ports/net/ldap2dns/files/patch-Makefile net/ldap2dns/files/patch-Makefile --- /usr/ports/net/ldap2dns/files/patch-Makefile 2006-11-05 09:19:13.000000000 +0900 +++ net/ldap2dns/files/patch-Makefile 1970-01-01 09:00:00.000000000 +0900 @@ -1,27 +0,0 @@ ---- Makefile.orig Thu Oct 19 20:54:23 2006 -+++ Makefile Sun Oct 29 16:56:03 2006 -@@ -3,12 +3,12 @@ - RELEASE=0 - CC=gcc - DEBUG_CFLAGS=-g -ggdb --CFLAGS=-O2 -+CFLAGS=-O2 -I$(PREFIX)/include - LIBS=-lldap -llber - LD=gcc --LDFLAGS= --INSTALL_PREFIX= --PREFIXDIR=$(INSTALL_PREFIX)/usr -+LDFLAGS= $(LIB) -+INSTALL_PREFIX=$(PREFIX) -+PREFIXDIR=$(INSTALL_PREFIX) - LDAPCONFDIR=$(INSTALL_PREFIX)/etc/openldap - SPECFILE=ldap2dns.spec - DISTRIBUTION=redhat -@@ -40,6 +40,7 @@ - $(LD) $(LDFLAGS) $(LIBS) -o $@ $+ - - ldap2dns.o: ldap2dns.c -+ echo $(CFLAGS) - $(CC) $(CFLAGS) -DVERSION='"$(VERSION)"' -c $< -o $@ - - ldap2dns.o-dbg: ldap2dns.c diff -urN /usr/ports/net/ldap2dns/files/patch-ldap2dns.c net/ldap2dns/files/patch-ldap2dns.c --- /usr/ports/net/ldap2dns/files/patch-ldap2dns.c 2006-11-05 09:19:13.000000000 +0900 +++ net/ldap2dns/files/patch-ldap2dns.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- ldap2dns.c.orig Thu Oct 19 20:54:23 2006 -+++ ldap2dns.c Sun Oct 29 16:41:24 2006 -@@ -18,7 +18,7 @@ - #include - - #define UPDATE_INTERVAL 59 --#define LDAP_CONF "/etc/ldap.conf" -+#define LDAP_CONF "%%PREFIX%%/etc/openldap/ldap.conf" - #define OUTPUT_DATA 1 - #define OUTPUT_DB 2 - #define MAXHOSTS 10 diff -urN /usr/ports/net/ldap2dns/pkg-descr net/ldap2dns/pkg-descr --- /usr/ports/net/ldap2dns/pkg-descr 2006-01-15 02:17:57.000000000 +0900 +++ net/ldap2dns/pkg-descr 2012-08-09 05:22:11.000000000 +0900 @@ -5,7 +5,4 @@ by tinydns from the djbdns package, but also may be used to write .db-files used by named as found in the BIND package. -WWW: http://projects.alkaloid.net/ - -Bruce -bms@spc.org +WWW: https://github.com/bklang/ldap2dns diff -urN /usr/ports/net/ldap2dns/pkg-plist net/ldap2dns/pkg-plist --- /usr/ports/net/ldap2dns/pkg-plist 2006-11-05 09:19:13.000000000 +0900 +++ net/ldap2dns/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,9 +0,0 @@ -bin/ldap2dns -bin/ldap2dnsd -%%DATADIR%%/README.html -%%DATADIR%%/ldap2dns.schema -%%DATADIR%%/example.ldif -%%DATADIR%%/axfr2ldap.pl -%%DATADIR%%/data2ldif.pl -%%DATADIR%%/ldap2tinydns-conf -@dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:38 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8ECE10656D5 for ; Tue, 25 Sep 2012 18:10:37 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C14E98FC1D for ; Tue, 25 Sep 2012 18:10:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAbl0023276 for ; Tue, 25 Sep 2012 18:10:37 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAbfU023271; Tue, 25 Sep 2012 18:10:37 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:37 GMT Resent-Message-Id: <201209251810.q8PIAbfU023271@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F22291065675 for ; Tue, 25 Sep 2012 18:09:28 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id C19A28FC15 for ; Tue, 25 Sep 2012 18:09:28 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 1AD7E34034 for ; Wed, 26 Sep 2012 03:09:26 +0900 (JST) Message-Id: <20120926022534.f0af380e844633d0829b2acf@yahoo.com> Date: Wed, 26 Sep 2012 02:25:34 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172041: net/netselect: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:38 -0000 >Number: 172041 >Category: ports >Synopsis: net/netselect: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:37 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line >How-To-Repeat: >Fix: diff -urN /usr/ports/net/netselect/Makefile net/netselect/Makefile --- /usr/ports/net/netselect/Makefile 2012-07-21 06:06:08.000000000 +0900 +++ net/netselect/Makefile 2012-09-25 04:08:16.000000000 +0900 @@ -1,27 +1,24 @@ -# New ports collection makefile for: netselect -# Date created: 15 July 2006 -# Whom: Timothy Redaelli -# +# Created by: Timothy Redaelli # $FreeBSD: ports/net/netselect/Makefile,v 1.3 2012/07/20 21:06:08 bapt Exp $ -# PORTNAME= netselect PORTVERSION= 0.3 CATEGORIES= net -MASTER_SITES= ${MASTER_SITE_GENTOO} \ - http://www.worldvisions.ca/~apenwarr/netselect/ -MASTER_SITE_SUBDIR= distfiles +MASTER_SITES= http://apenwarr.ca/netselect/ \ + GENTOO/distfiles MAINTAINER= ports@FreeBSD.org COMMENT= Ultrafast implementation of ping -PLIST_FILES= bin/${PORTNAME} - -WRKSRC= ${WRKDIR}/${PORTNAME} +LICENSE= BSD OPTIONS_DEFINE= SUID SUID_DESC= Install with the sticky bit (mode 4110) +WRKSRC= ${WRKDIR}/${PORTNAME} + +PLIST_FILES= bin/${PORTNAME} + .include .if ${PORT_OPTIONS:MSUID} diff -urN /usr/ports/net/netselect/pkg-descr net/netselect/pkg-descr --- /usr/ports/net/netselect/pkg-descr 2006-07-16 02:14:45.000000000 +0900 +++ net/netselect/pkg-descr 2012-07-10 18:28:42.000000000 +0900 @@ -12,3 +12,5 @@ It tells me statistics about each of the hostnames I provided, in much less time than doing a whole bunch of traceroutes. + +WWW: http://apenwarr.ca/netselect/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:38 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 43DF710656D8 for ; Tue, 25 Sep 2012 18:10:38 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1FDAA8FC0A for ; Tue, 25 Sep 2012 18:10:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAcWq023357 for ; Tue, 25 Sep 2012 18:10:38 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAb2Q023348; Tue, 25 Sep 2012 18:10:37 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:37 GMT Resent-Message-Id: <201209251810.q8PIAb2Q023348@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03555106564A for ; Tue, 25 Sep 2012 18:09:33 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id C67388FC16 for ; Tue, 25 Sep 2012 18:09:32 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 2F2F150036 for ; Wed, 26 Sep 2012 03:09:30 +0900 (JST) Message-Id: <20120926022538.f93dd96391e2503bb18bb1df@yahoo.com> Date: Wed, 26 Sep 2012 02:25:38 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172042: net/onioncat: Update to version 0.2.2.r553 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:38 -0000 >Number: 172042 >Category: ports >Synopsis: net/onioncat: Update to version 0.2.2.r553 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:37 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.2.2.r553 >How-To-Repeat: >Fix: diff -urN /usr/ports/net/onioncat/Makefile net/onioncat/Makefile --- /usr/ports/net/onioncat/Makefile 2012-08-15 03:19:34.000000000 +0900 +++ net/onioncat/Makefile 2012-09-25 03:38:57.000000000 +0900 @@ -1,21 +1,22 @@ -# New ports collection makefile for: onioncat -# Date created: 2010-05-09 -# Whom: -# +# Created by: # $FreeBSD: ports/net/onioncat/Makefile,v 1.3 2012/08/14 18:19:34 tabthorpe Exp $ -# PORTNAME= onioncat -PORTVERSION= 0.2.2.r552 +PORTVERSION= 0.2.2.r553 CATEGORIES= net security MASTER_SITES= http://www.cypherpunk.at/ocat/download/Source/stable/ MAINTAINER= ports@FreeBSD.org COMMENT= An IP-Transparent Tor Hidden Service Connector +LICENSE= GPLv3 + RUN_DEPENDS= tor:${PORTSDIR}/security/tor GNU_CONFIGURE= yes +CONFIGURE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ + PTHREAD_LIBS="${PTHREAD_LIBS}" +MAKE_JOBS_SAFE= yes USE_RC_SUBR= ${PORTNAME} MAN1= ocat.1 @@ -23,8 +24,13 @@ .include +post-patch: + @${REINPLACE_CMD} -e \ + '/CFLAGS=/s|-O2|$$CFLAGS|' ${WRKSRC}/configure + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/ocat ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/man/ocat.1 ${PREFIX}/man/man1/ocat.1 + ${INSTALL_MAN} ${WRKSRC}/man/ocat.1 ${MANPREFIX}/man/man1 + @${CAT} ${PKGMESSAGE} .include diff -urN /usr/ports/net/onioncat/distinfo net/onioncat/distinfo --- /usr/ports/net/onioncat/distinfo 2011-06-10 20:46:51.000000000 +0900 +++ net/onioncat/distinfo 2012-08-25 05:00:56.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (onioncat-0.2.2.r552.tar.gz) = 90ac731696336c4caf59d7aeb8a7d300e38cf85907b07de5384b3e802f80ee1f -SIZE (onioncat-0.2.2.r552.tar.gz) = 192189 +SHA256 (onioncat-0.2.2.r553.tar.gz) = fe33e95f29e1a88349d89f7f2ff18d546571ada6278962980acb4d6ee6424b7d +SIZE (onioncat-0.2.2.r553.tar.gz) = 192210 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:38 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 967DA1065670 for ; Tue, 25 Sep 2012 18:10:38 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 72B268FC1E for ; Tue, 25 Sep 2012 18:10:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAc6q023436 for ; Tue, 25 Sep 2012 18:10:38 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAcMi023429; Tue, 25 Sep 2012 18:10:38 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:38 GMT Resent-Message-Id: <201209251810.q8PIAcMi023429@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 956D4106566B for ; Tue, 25 Sep 2012 18:09:37 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 64A708FC15 for ; Tue, 25 Sep 2012 18:09:37 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 57D6534034 for ; Wed, 26 Sep 2012 03:09:35 +0900 (JST) Message-Id: <20120926022542.b465b7fe5c123a262066c097@yahoo.com> Date: Wed, 26 Sep 2012 02:25:42 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172043: net/tdetect: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:38 -0000 >Number: 172043 >Category: ports >Synopsis: net/tdetect: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:38 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Support ECHO_MSG - Support SUB_FILES New file: files/pkg-message.in Remove file: pkg-message >How-To-Repeat: >Fix: diff -urN /usr/ports/net/tdetect/Makefile net/tdetect/Makefile --- /usr/ports/net/tdetect/Makefile 2008-09-03 12:42:43.000000000 +0900 +++ net/tdetect/Makefile 2012-09-25 04:12:54.000000000 +0900 @@ -1,18 +1,16 @@ -# New ports collection makefile for: tdetect -# Date created: Sun Jan 31, 1997 -# Whom: shipley@dis.org -# +# Created by: shipley@dis.org # $FreeBSD: ports/net/tdetect/Makefile,v 1.17 2008/09/03 03:42:43 linimon Exp $ -# PORTNAME= tdetect PORTVERSION= 0.2 CATEGORIES= net -MASTER_SITES= # disappeared +MASTER_SITES= PACKETSTORM/UNIX/loggers MAINTAINER= ports@FreeBSD.org COMMENT= Utility for detecting traceroutes and reporting them via syslog +SUB_FILES= pkg-message + pre-configure: ${REINPLACE_CMD} -e 's/trdetect/tdetect/g' ${WRKSRC}/config.h ${REINPLACE_CMD} -e 's/LOG_AUTHPRIV/LOG_SECURITY/g' ${WRKSRC}/config.h @@ -22,9 +20,9 @@ post-install: @if [ ! -f ${PREFIX}/etc/rc.d/tdetect.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/tdetect.sh startup file."; \ + ${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/tdetect.sh startup file."; \ ${INSTALL_SCRIPT} -m 750 ${FILESDIR}/tdetect.sh ${PREFIX}/etc/rc.d/tdetect.sh; \ - ${SED} -e 's,/usr/local,${PREFIX},g' ${PKGMESSAGE}; \ + ${CAT} ${PKGMESSAGE}; \ fi .include diff -urN /usr/ports/net/tdetect/files/patch-Makefile net/tdetect/files/patch-Makefile --- /usr/ports/net/tdetect/files/patch-Makefile 2003-10-23 08:59:00.000000000 +0900 +++ net/tdetect/files/patch-Makefile 2012-09-08 03:33:30.000000000 +0900 @@ -1,5 +1,5 @@ ---- Makefile.orig Wed Oct 22 16:58:23 2003 -+++ Makefile Wed Oct 22 16:58:37 2003 +--- Makefile.orig 1998-08-13 17:17:57.000000000 +0900 ++++ Makefile 2012-09-08 03:33:04.000000000 +0900 @@ -1,11 +1,11 @@ # Makefile @@ -14,3 +14,12 @@ OBJS=main.o null.o ether.o ip.o LIBS= -lpcap SRC=$(OBJS:%.o=%.c) +@@ -13,7 +13,7 @@ + all: tdetect + + tdetect: $(OBJS) +- $(CC) $(OBJS) $(LIBS) $(DEBUG) -s -o tdetect ++ $(CC) $(OBJS) $(LIBS) $(DEBUG) -o tdetect + + clean: + rm -f *.o tdetect *.b diff -urN /usr/ports/net/tdetect/files/pkg-message.in net/tdetect/files/pkg-message.in --- /usr/ports/net/tdetect/files/pkg-message.in 1970-01-01 09:00:00.000000000 +0900 +++ net/tdetect/files/pkg-message.in 2012-09-25 04:12:12.000000000 +0900 @@ -0,0 +1,6 @@ + +IMPORTANT! + +Dont forget to edit %%PREFIX%%/etc/rc.d/tdetect.sh +and set ETHERNETDEV to the name of the ethernet device you wish to monitor + diff -urN /usr/ports/net/tdetect/pkg-message net/tdetect/pkg-message --- /usr/ports/net/tdetect/pkg-message 1999-11-01 10:07:57.000000000 +0900 +++ net/tdetect/pkg-message 1970-01-01 09:00:00.000000000 +0900 @@ -1,6 +0,0 @@ - -IMPORTANT! - -Dont forget to edit /usr/local/etc/rc.d/tdetect.sh -and set ETHERNETDEV to the name of the ethernet device you wish to monitor - >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:38 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EC72F106567E for ; Tue, 25 Sep 2012 18:10:38 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C7BAE8FC25 for ; Tue, 25 Sep 2012 18:10:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAcGV023515 for ; Tue, 25 Sep 2012 18:10:38 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAcM9023506; Tue, 25 Sep 2012 18:10:38 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:10:38 GMT Resent-Message-Id: <201209251810.q8PIAcM9023506@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 700E71065670 for ; Tue, 25 Sep 2012 18:09:44 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 190948FC0C for ; Tue, 25 Sep 2012 18:09:44 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id E655150037 for ; Wed, 26 Sep 2012 03:09:39 +0900 (JST) Message-Id: <20120926022545.c0d23ed10c5269bb194d3d20@yahoo.com> Date: Wed, 26 Sep 2012 02:25:45 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172044: net/x2goclient: Update to version 3.99.2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:39 -0000 >Number: 172044 >Category: ports >Synopsis: net/x2goclient: Update to version 3.99.2.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:10:38 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 3.99.2.2 New file: files/patch-sshmasterconnection.cpp files/patch-sshprocess.cpp files/patch-sshprocess.h pkg-plist Remove file: files/patch-cupsprint.h >How-To-Repeat: >Fix: diff -urN /usr/ports/net/x2goclient/Makefile net/x2goclient/Makefile --- /usr/ports/net/x2goclient/Makefile 2012-06-06 15:44:13.000000000 +0900 +++ net/x2goclient/Makefile 2012-09-25 03:39:14.000000000 +0900 @@ -1,46 +1,85 @@ -# New ports collection makefile for: x2goclient -# Date created: 2010-08-16 -# Whom: arved -# +# Created by: arved # $FreeBSD: ports/net/x2goclient/Makefile,v 1.9 2012/06/06 06:44:13 miwi Exp $ PORTNAME= x2goclient -DISTVERSION= 3.01-5 -PORTREVISION= 2 +PORTVERSION= 3.99.2.2 CATEGORIES= net -MASTER_SITES= http://code.x2go.org/releases/source/x2goclient/pre-git/ -DISTNAME= ${PORTNAME}_${DISTVERSION} +MASTER_SITES= http://code.x2go.org/releases/source/x2goclient/ MAINTAINER= ports@FreeBSD.org -COMMENT= The x2go perl client +COMMENT= The x2go Qt client LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= cups.2:${PORTSDIR}/print/cups-client +LIB_DEPENDS= cups:${PORTSDIR}/print/cups-client \ + ssh:${PORTSDIR}/security/libssh RUN_DEPENDS= nxproxy:${PORTSDIR}/net/nxproxy \ x2goclient-cli:${PORTSDIR}/net/x2goclient-cli -WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION:S,-5,,} - -USE_QT4= gui network svg qmake_build moc_build uic_build rcc_build -USE_OPENLDAP= yes +OPTIONS_DEFINE= OPENLDAP DOCS +OPTIONS_DEFAULT=OPENLDAP +OPENLDAP_DESC= Enable OpenLDAP support + +USE_XORG= xpm +USE_QT4= gui network svg \ + linguist_build moc_build qmake_build rcc_build uic_build +QMAKEFLAGS= QMAKE_LRELEASE="${QT_PREFIX}/bin/lrelease-qt4" +INSTALLS_ICONS= yes MAKE_JOBS_SAFE= yes -PLIST_FILES= bin/x2goclient +MAN1= x2goclient.1 + +PORTSCOUT= limit:\^3\.0 + +.include + +.if ${PORT_OPTIONS:MOPENLDAP} +USE_OPENLDAP= yes +CFLAGS+= -DUSELDAP +QMAKEFLAGS+= LIBS+="-lX11 -lXpm -lcups -lldap" +.else +QMAKEFLAGS+= LIBS+="-lX11 -lXpm -lcups" +.endif post-patch: - cd ${WRKSRC}; ${REINPLACE_CMD} -e "s,Q_OS_LINUX,Q_OS_FREEBSD," \ - embedwidget.cpp onmainwindow.cpp ongetpass.cpp \ - clicklineedit.cpp embedwidget.h clicklineedit.h - ${REINPLACE_CMD} -e "s,#include ,," \ - ${WRKSRC}/onmainwindow.cpp - ${REINPLACE_CMD} -e "s,linux,freebsd," ${WRKSRC}/x2goclient.pro + @${FIND} ${WRKSRC} -name "*.cpp" -or -name "*.h" | ${XARGS} \ + ${REINPLACE_CMD} -e \ + 's|Q_OS_LINUX|Q_OS_${OPSYS:U}| ; \ + //s|^|//| ; \ + /#define USELDAP/s|^|//|' + @${FIND} ${WRKSRC} -name "*.cpp" -or -name "*.ts" | ${XARGS} \ + ${REINPLACE_CMD} -e \ + 's|authentification|authentication|g' + @${REINPLACE_CMD} -e \ + '/MACOSX/s|^|#|' ${WRKSRC}/x2goclient.pro + @${REINPLACE_CMD} -e \ + 's|/usr/bin/||' ${WRKSRC}/desktop/x2goclient.desktop do-configure: - cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${QMAKE} ${QMAKEFLAGS} + @cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${QMAKE} ${QMAKEFLAGS} + +pre-build: + @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \ + ${MAKEFILE} compiler_TSQM_make_all do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/x2goclient ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/x2goclient ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/man1/x2goclient.1 ${MANPREFIX}/man/man1 + @${MKDIR} ${PREFIX}/share/applications + ${INSTALL_DATA} ${WRKSRC}/desktop/x2goclient.desktop \ + ${PREFIX}/share/applications +.for dir in 16x16 32x32 64x64 128x128 + @${MKDIR} ${PREFIX}/share/icons/hicolor/${dir}/apps + ${INSTALL_DATA} ${WRKSRC}/icons/${dir}/x2goclient.png \ + ${PREFIX}/share/icons/hicolor/${dir}/apps +.endfor + @${MKDIR} ${DATADIR}/icons + ${INSTALL_DATA} ${WRKSRC}/icons/x2goclient.xpm ${DATADIR}/icons + ${INSTALL_DATA} ${WRKSRC}/icons/128x128/x2goclient.png ${DATADIR}/icons + ${INSTALL_DATA} ${WRKSRC}/icons/128x128/x2gosession.png ${DATADIR}/icons +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/HOWTO.GPGCARD ${DOCSDIR} +.endif .include diff -urN /usr/ports/net/x2goclient/distinfo net/x2goclient/distinfo --- /usr/ports/net/x2goclient/distinfo 2011-03-20 21:53:17.000000000 +0900 +++ net/x2goclient/distinfo 2012-08-10 17:29:17.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (x2goclient_3.01-5.tar.gz) = ce671a628b17614bdcf443bd5ff22f644ceca1dad634c8823fcad8438a3751e3 -SIZE (x2goclient_3.01-5.tar.gz) = 10274153 +SHA256 (x2goclient-3.99.2.2.tar.gz) = ef3653cb7643ea17a2e5a3beb2d3072e4c6ddff6fcee2021e5d7251a07f6ca6a +SIZE (x2goclient-3.99.2.2.tar.gz) = 1120830 diff -urN /usr/ports/net/x2goclient/files/patch-cupsprint.h net/x2goclient/files/patch-cupsprint.h --- /usr/ports/net/x2goclient/files/patch-cupsprint.h 2011-11-27 18:54:31.000000000 +0900 +++ net/x2goclient/files/patch-cupsprint.h 1970-01-01 09:00:00.000000000 +0900 @@ -1,10 +0,0 @@ ---- cupsprint.h.orig 2009-11-12 06:47:37.000000000 +0900 -+++ cupsprint.h 2011-11-23 03:23:33.000000000 +0900 -@@ -15,6 +15,7 @@ - #ifndef Q_OS_WIN - #include - #include -+#include - /** - @author Oleksandr Shneyder - */ diff -urN /usr/ports/net/x2goclient/files/patch-sshmasterconnection.cpp net/x2goclient/files/patch-sshmasterconnection.cpp --- /usr/ports/net/x2goclient/files/patch-sshmasterconnection.cpp 1970-01-01 09:00:00.000000000 +0900 +++ net/x2goclient/files/patch-sshmasterconnection.cpp 2012-07-08 05:48:20.000000000 +0900 @@ -0,0 +1,12 @@ +--- sshmasterconnection.cpp.orig 2011-11-25 21:08:10.000000000 +0900 ++++ sshmasterconnection.cpp 2011-12-20 01:50:14.000000000 +0900 +@@ -25,6 +25,9 @@ + #include + #include + #ifndef Q_OS_WIN ++#include ++#include ++#include + #include + #endif + diff -urN /usr/ports/net/x2goclient/files/patch-sshprocess.cpp net/x2goclient/files/patch-sshprocess.cpp --- /usr/ports/net/x2goclient/files/patch-sshprocess.cpp 1970-01-01 09:00:00.000000000 +0900 +++ net/x2goclient/files/patch-sshprocess.cpp 2012-07-08 05:48:20.000000000 +0900 @@ -0,0 +1,12 @@ +--- sshprocess.cpp.orig 2011-11-25 21:08:10.000000000 +0900 ++++ sshprocess.cpp 2011-12-20 01:53:47.000000000 +0900 +@@ -21,6 +21,9 @@ + #include + + #ifndef Q_OS_WIN ++#include ++#include ++#include + #include + #include + #endif diff -urN /usr/ports/net/x2goclient/files/patch-sshprocess.h net/x2goclient/files/patch-sshprocess.h --- /usr/ports/net/x2goclient/files/patch-sshprocess.h 1970-01-01 09:00:00.000000000 +0900 +++ net/x2goclient/files/patch-sshprocess.h 2012-07-08 05:48:20.000000000 +0900 @@ -0,0 +1,15 @@ +--- sshprocess.h.orig 2011-11-25 21:08:10.000000000 +0900 ++++ sshprocess.h 2011-12-20 01:56:29.000000000 +0900 +@@ -17,6 +17,12 @@ + #ifndef SSHPROCESS_H + #define SSHPROCESS_H + ++#ifndef Q_OS_WIN ++#include ++#include ++#include ++#include ++#endif + #include + #include + diff -urN /usr/ports/net/x2goclient/pkg-plist net/x2goclient/pkg-plist --- /usr/ports/net/x2goclient/pkg-plist 1970-01-01 09:00:00.000000000 +0900 +++ net/x2goclient/pkg-plist 2012-07-08 06:33:04.000000000 +0900 @@ -0,0 +1,24 @@ +bin/x2goclient +share/applications/x2goclient.desktop +%%PORTDOCS%%%%DOCSDIR%%/HOWTO.GPGCARD +share/icons/hicolor/128x128/apps/x2goclient.png +share/icons/hicolor/16x16/apps/x2goclient.png +share/icons/hicolor/32x32/apps/x2goclient.png +share/icons/hicolor/64x64/apps/x2goclient.png +%%DATADIR%%/icons/x2goclient.xpm +%%DATADIR%%/icons/x2goclient.png +%%DATADIR%%/icons/x2gosession.png +@dirrm %%DATADIR%%/icons +@dirrm %%DATADIR%% +@dirrmtry share/icons/hicolor/64x64/apps +@dirrmtry share/icons/hicolor/64x64 +@dirrmtry share/icons/hicolor/32x32/apps +@dirrmtry share/icons/hicolor/32x32 +@dirrmtry share/icons/hicolor/16x16/apps +@dirrmtry share/icons/hicolor/16x16 +@dirrmtry share/icons/hicolor/128x128/apps +@dirrmtry share/icons/hicolor/128x128 +@dirrmtry share/icons/hicolor +@dirrmtry share/icons +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrmtry share/applications >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:44 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D9AF51065676; Tue, 25 Sep 2012 18:10:44 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ADDB98FC12; Tue, 25 Sep 2012 18:10:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAiYN024779; Tue, 25 Sep 2012 18:10:44 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAijN024764; Tue, 25 Sep 2012 18:10:44 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:10:44 GMT Message-Id: <201209251810.q8PIAijN024764@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171957: astro/viking: Update to version 1.3.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:45 -0000 Synopsis: astro/viking: Update to version 1.3.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:10:44 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171957 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:49 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 608E4106566B; Tue, 25 Sep 2012 18:10:49 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 34B668FC16; Tue, 25 Sep 2012 18:10:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAnJt025638; Tue, 25 Sep 2012 18:10:49 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAnk5025634; Tue, 25 Sep 2012 18:10:49 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:10:49 GMT Message-Id: <201209251810.q8PIAnk5025634@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171958: audio/fluidsynth: Update to version 1.1.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:49 -0000 Synopsis: audio/fluidsynth: Update to version 1.1.6 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:10:48 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171958 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:53 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 837861065678; Tue, 25 Sep 2012 18:10:53 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 56E568FC0A; Tue, 25 Sep 2012 18:10:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIArMY025723; Tue, 25 Sep 2012 18:10:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAr83025718; Tue, 25 Sep 2012 18:10:53 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:10:53 GMT Message-Id: <201209251810.q8PIAr83025718@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171959: audio/ecasound: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:53 -0000 Synopsis: audio/ecasound: Support USE_READLINE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:10:52 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171959 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:11:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9931210656E6; Tue, 25 Sep 2012 18:11:01 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 675CD8FC25; Tue, 25 Sep 2012 18:11:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIB1pq025897; Tue, 25 Sep 2012 18:11:01 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIB1r0025893; Tue, 25 Sep 2012 18:11:01 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:11:01 GMT Message-Id: <201209251811.q8PIB1r0025893@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171961: audio/icecast: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:11:01 -0000 Synopsis: audio/icecast: Support USE_READLINE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:11:01 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171961 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:10:57 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 88CBB106566B; Tue, 25 Sep 2012 18:10:57 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5D4A38FC0A; Tue, 25 Sep 2012 18:10:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIAv5S025804; Tue, 25 Sep 2012 18:10:57 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIAvW8025800; Tue, 25 Sep 2012 18:10:57 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:10:57 GMT Message-Id: <201209251810.q8PIAvW8025800@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171960: audio/ices: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:10:57 -0000 Synopsis: audio/ices: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:10:56 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171960 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:11:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F02210656F2; Tue, 25 Sep 2012 18:11:06 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2371F8FC16; Tue, 25 Sep 2012 18:11:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIB6Jl025978; Tue, 25 Sep 2012 18:11:06 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIB61E025974; Tue, 25 Sep 2012 18:11:06 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:11:06 GMT Message-Id: <201209251811.q8PIB61E025974@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171962: audio/lash: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:11:06 -0000 Synopsis: audio/lash: Support USE_READLINE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:11:05 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171962 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:11:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E5891065674; Tue, 25 Sep 2012 18:11:10 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 323F28FC20; Tue, 25 Sep 2012 18:11:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIBAhR026059; Tue, 25 Sep 2012 18:11:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIBAUX026055; Tue, 25 Sep 2012 18:11:10 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:11:10 GMT Message-Id: <201209251811.q8PIBAUX026055@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171963: audio/libmtp: Update to version 1.1.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:11:10 -0000 Synopsis: audio/libmtp: Update to version 1.1.5 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:11:09 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171963 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:11:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 45B3E1065677; Tue, 25 Sep 2012 18:11:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 19ADA8FC08; Tue, 25 Sep 2012 18:11:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIBDTb026140; Tue, 25 Sep 2012 18:11:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIBDqc026136; Tue, 25 Sep 2012 18:11:13 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:11:13 GMT Message-Id: <201209251811.q8PIBDqc026136@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171964: audio/libnjb: Fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:11:14 -0000 Synopsis: audio/libnjb: Fix build Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:11:13 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171964 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:11:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E84310656AE; Tue, 25 Sep 2012 18:11:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 32A968FC18; Tue, 25 Sep 2012 18:11:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIBIB9026223; Tue, 25 Sep 2012 18:11:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIBIHZ026219; Tue, 25 Sep 2012 18:11:18 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:11:18 GMT Message-Id: <201209251811.q8PIBIHZ026219@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171965: audio/mixxx: Update to version 1.10.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:11:18 -0000 Synopsis: audio/mixxx: Update to version 1.10.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:11:17 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171965 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:11:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C9EE10656AD; Tue, 25 Sep 2012 18:11:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F9548FC1C; Tue, 25 Sep 2012 18:11:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIBMsT026304; Tue, 25 Sep 2012 18:11:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIBMGd026300; Tue, 25 Sep 2012 18:11:22 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:11:22 GMT Message-Id: <201209251811.q8PIBMGd026300@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171966: audio/pd: Update to version 0.43.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:11:22 -0000 Synopsis: audio/pd: Update to version 0.43.4 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:11:21 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171966 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:11:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57CE11065675; Tue, 25 Sep 2012 18:11:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2C4668FC1E; Tue, 25 Sep 2012 18:11:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIBQSx026385; Tue, 25 Sep 2012 18:11:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIBQMS026381; Tue, 25 Sep 2012 18:11:26 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:11:26 GMT Message-Id: <201209251811.q8PIBQMS026381@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171967: audio/qsynth: Update to version 0.3.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:11:26 -0000 Synopsis: audio/qsynth: Update to version 0.3.6 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:11:25 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171967 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:11:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB4A81065675; Tue, 25 Sep 2012 18:11:30 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 800298FC25; Tue, 25 Sep 2012 18:11:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIBUEk026466; Tue, 25 Sep 2012 18:11:30 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIBUUO026462; Tue, 25 Sep 2012 18:11:30 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:11:30 GMT Message-Id: <201209251811.q8PIBUUO026462@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171968: audio/soundtouch: Update to version 1.7.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:11:30 -0000 Synopsis: audio/soundtouch: Update to version 1.7.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:11:30 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171968 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:11:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C27481065673; Tue, 25 Sep 2012 18:11:35 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 966578FC14; Tue, 25 Sep 2012 18:11:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIBZbN026547; Tue, 25 Sep 2012 18:11:35 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIBZOv026543; Tue, 25 Sep 2012 18:11:35 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:11:35 GMT Message-Id: <201209251811.q8PIBZOv026543@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171969: benchmarks/postmark: Update to version 1.53 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:11:35 -0000 Synopsis: benchmarks/postmark: Update to version 1.53 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:11:35 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171969 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:11:42 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 55327106567B; Tue, 25 Sep 2012 18:11:42 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 29BDA8FC25; Tue, 25 Sep 2012 18:11:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIBgWn026628; Tue, 25 Sep 2012 18:11:42 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIBgQR026624; Tue, 25 Sep 2012 18:11:42 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:11:42 GMT Message-Id: <201209251811.q8PIBgQR026624@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171970: biology/molden: Update to version 6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:11:42 -0000 Synopsis: biology/molden: Update to version 6.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:11:41 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171970 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:11:48 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C44D31065670; Tue, 25 Sep 2012 18:11:48 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 983108FC14; Tue, 25 Sep 2012 18:11:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIBmoc026709; Tue, 25 Sep 2012 18:11:48 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIBm41026705; Tue, 25 Sep 2012 18:11:48 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:11:48 GMT Message-Id: <201209251811.q8PIBm41026705@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171971: biology/tinker: Update to version 6.0.01 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:11:48 -0000 Synopsis: biology/tinker: Update to version 6.0.01 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:11:48 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171971 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:11:54 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4633C1065675; Tue, 25 Sep 2012 18:11:54 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1A55F8FC1A; Tue, 25 Sep 2012 18:11:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIBrd9026794; Tue, 25 Sep 2012 18:11:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIBruV026790; Tue, 25 Sep 2012 18:11:53 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:11:53 GMT Message-Id: <201209251811.q8PIBruV026790@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171972: cad/magic: Update to version 7.5.221 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:11:54 -0000 Synopsis: cad/magic: Update to version 7.5.221 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:11:53 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171972 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:11:58 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C532D1065670; Tue, 25 Sep 2012 18:11:58 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 99E3B8FC15; Tue, 25 Sep 2012 18:11:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIBwWW026875; Tue, 25 Sep 2012 18:11:58 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIBwhf026871; Tue, 25 Sep 2012 18:11:58 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:11:58 GMT Message-Id: <201209251811.q8PIBwhf026871@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171973: cad/xcircuit: Update to version 3.7.43 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:11:58 -0000 Synopsis: cad/xcircuit: Update to version 3.7.43 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:11:58 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171973 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:12:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 04B2B106567D; Tue, 25 Sep 2012 18:12:05 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CDE778FC22; Tue, 25 Sep 2012 18:12:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIC4iu026956; Tue, 25 Sep 2012 18:12:04 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIC47h026952; Tue, 25 Sep 2012 18:12:04 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:12:04 GMT Message-Id: <201209251812.q8PIC47h026952@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171974: databases/grass: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:12:05 -0000 Synopsis: databases/grass: Support USE_READLINE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:12:04 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171974 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:12:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B680F106566C; Tue, 25 Sep 2012 18:12:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8B5438FC1D; Tue, 25 Sep 2012 18:12:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIC9gr027037; Tue, 25 Sep 2012 18:12:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIC9jI027033; Tue, 25 Sep 2012 18:12:09 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:12:09 GMT Message-Id: <201209251812.q8PIC9jI027033@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171975: databases/sqsh: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:12:09 -0000 Synopsis: databases/sqsh: Support USE_READLINE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:12:09 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171975 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:12:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33CFD106564A; Tue, 25 Sep 2012 18:12:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 079BC8FC1C; Tue, 25 Sep 2012 18:12:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PICEEP027119; Tue, 25 Sep 2012 18:12:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PICE6m027115; Tue, 25 Sep 2012 18:12:14 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:12:14 GMT Message-Id: <201209251812.q8PICE6m027115@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171976: deskutils/cdcat: Update to version 2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:12:15 -0000 Synopsis: deskutils/cdcat: Update to version 2.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:12:14 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171976 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:12:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E1EE106564A; Tue, 25 Sep 2012 18:12:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1236F8FC12; Tue, 25 Sep 2012 18:12:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PICKfO027202; Tue, 25 Sep 2012 18:12:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PICKZu027198; Tue, 25 Sep 2012 18:12:20 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:12:20 GMT Message-Id: <201209251812.q8PICKZu027198@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171977: deskutils/xwrits: Update to version 2.26 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:12:21 -0000 Synopsis: deskutils/xwrits: Update to version 2.26 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:12:20 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171977 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:12:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 511091065673; Tue, 25 Sep 2012 18:12:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 25C398FC12; Tue, 25 Sep 2012 18:12:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PICQMM027285; Tue, 25 Sep 2012 18:12:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PICQw3027281; Tue, 25 Sep 2012 18:12:26 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:12:26 GMT Message-Id: <201209251812.q8PICQw3027281@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171978: devel/ace: Update to version 6.1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:12:26 -0000 Synopsis: devel/ace: Update to version 6.1.4 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:12:25 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171978 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:12:31 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A0A5D1065673; Tue, 25 Sep 2012 18:12:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 74B0E8FC1C; Tue, 25 Sep 2012 18:12:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PICVOn027366; Tue, 25 Sep 2012 18:12:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PICV72027362; Tue, 25 Sep 2012 18:12:31 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:12:31 GMT Message-Id: <201209251812.q8PICV72027362@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171979: devel/bcpp: Update to version 20120318 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:12:31 -0000 Synopsis: devel/bcpp: Update to version 20120318 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:12:31 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171979 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:12:37 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9CD95106564A; Tue, 25 Sep 2012 18:12:37 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 717F88FC1B; Tue, 25 Sep 2012 18:12:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PICbBu027447; Tue, 25 Sep 2012 18:12:37 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PICbrg027443; Tue, 25 Sep 2012 18:12:37 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:12:37 GMT Message-Id: <201209251812.q8PICbrg027443@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171980: devel/bin86: Update to version 0.16.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:12:37 -0000 Synopsis: devel/bin86: Update to version 0.16.19 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:12:37 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171980 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:12:43 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 756CF106564A; Tue, 25 Sep 2012 18:12:43 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4999E8FC0C; Tue, 25 Sep 2012 18:12:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIChtF027532; Tue, 25 Sep 2012 18:12:43 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIChcN027528; Tue, 25 Sep 2012 18:12:43 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:12:43 GMT Message-Id: <201209251812.q8PIChcN027528@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171981: devel/cc65: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:12:43 -0000 Synopsis: devel/cc65: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:12:42 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171981 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:12:49 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C7DE106566C; Tue, 25 Sep 2012 18:12:49 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D54C68FC21; Tue, 25 Sep 2012 18:12:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PICmfg027613; Tue, 25 Sep 2012 18:12:48 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PICm0x027609; Tue, 25 Sep 2012 18:12:48 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:12:48 GMT Message-Id: <201209251812.q8PICm0x027609@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171982: devel/ditrack: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:12:49 -0000 Synopsis: devel/ditrack: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:12:48 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171982 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:12:55 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 28C9E10656B7; Tue, 25 Sep 2012 18:12:55 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ECFE78FC23; Tue, 25 Sep 2012 18:12:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PICsUf027699; Tue, 25 Sep 2012 18:12:54 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PICsLo027695; Tue, 25 Sep 2012 18:12:54 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:12:54 GMT Message-Id: <201209251812.q8PICsLo027695@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171983: devel/fc++: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:12:55 -0000 Synopsis: devel/fc++: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:12:54 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171983 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:13:00 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4E96A1065672; Tue, 25 Sep 2012 18:13:00 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 235B98FC18; Tue, 25 Sep 2012 18:13:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PID0x2027780; Tue, 25 Sep 2012 18:13:00 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PID0F1027776; Tue, 25 Sep 2012 18:13:00 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:13:00 GMT Message-Id: <201209251813.q8PID0F1027776@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171984: devel/jrtplib: Update to version 3.9.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:13:00 -0000 Synopsis: devel/jrtplib: Update to version 3.9.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:12:59 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171984 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:13:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67F15106566C; Tue, 25 Sep 2012 18:13:06 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3CACD8FC15; Tue, 25 Sep 2012 18:13:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PID6YQ027868; Tue, 25 Sep 2012 18:13:06 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PID6wP027864; Tue, 25 Sep 2012 18:13:06 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:13:06 GMT Message-Id: <201209251813.q8PID6wP027864@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171985: devel/jtag: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:13:06 -0000 Synopsis: devel/jtag: Support USE_READLINE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:13:05 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171985 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:13:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5922E1065673; Tue, 25 Sep 2012 18:13:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2CFC58FC0C; Tue, 25 Sep 2012 18:13:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIDBBY027949; Tue, 25 Sep 2012 18:13:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIDBgh027945; Tue, 25 Sep 2012 18:13:11 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:13:11 GMT Message-Id: <201209251813.q8PIDBgh027945@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171986: devel/jwasm: Update to version 2.0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:13:11 -0000 Synopsis: devel/jwasm: Update to version 2.0.8 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:13:10 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171986 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:13:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13311106566C; Tue, 25 Sep 2012 18:13:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DBC558FC12; Tue, 25 Sep 2012 18:13:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIDG1Q028030; Tue, 25 Sep 2012 18:13:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIDGnY028026; Tue, 25 Sep 2012 18:13:16 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:13:16 GMT Message-Id: <201209251813.q8PIDGnY028026@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171987: devel/libepp-nicbr: Update to vesion 1.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:13:17 -0000 Synopsis: devel/libepp-nicbr: Update to vesion 1.12 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:13:16 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171987 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:13:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C4961065670; Tue, 25 Sep 2012 18:13:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 606A08FC12; Tue, 25 Sep 2012 18:13:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIDQ8n028114; Tue, 25 Sep 2012 18:13:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIDQI8028110; Tue, 25 Sep 2012 18:13:26 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:13:26 GMT Message-Id: <201209251813.q8PIDQI8028110@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171988: devel/omake: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:13:26 -0000 Synopsis: devel/omake: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:13:26 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171988 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:13:33 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26CC01065679; Tue, 25 Sep 2012 18:13:33 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EEBA98FC26; Tue, 25 Sep 2012 18:13:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIDWVT028503; Tue, 25 Sep 2012 18:13:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIDWZ4028497; Tue, 25 Sep 2012 18:13:32 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:13:32 GMT Message-Id: <201209251813.q8PIDWZ4028497@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171989: devel/rudiments: Update to version 0.37 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:13:33 -0000 Synopsis: devel/rudiments: Update to version 0.37 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:13:32 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171989 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:13:39 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4AEDB10656D0; Tue, 25 Sep 2012 18:13:39 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1F6A48FC1B; Tue, 25 Sep 2012 18:13:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIDd9q028898; Tue, 25 Sep 2012 18:13:39 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIDc88028892; Tue, 25 Sep 2012 18:13:38 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:13:38 GMT Message-Id: <201209251813.q8PIDc88028892@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171990: devel/sdts++: Fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:13:39 -0000 X-List-Received-Date: Tue, 25 Sep 2012 18:13:39 -0000 Synopsis: devel/sdts++: Fix build Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:13:38 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171990 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:13:45 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 25C0E1065670; Tue, 25 Sep 2012 18:13:45 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EF7318FC1D; Tue, 25 Sep 2012 18:13:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIDiEI029211; Tue, 25 Sep 2012 18:13:44 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIDigU029207; Tue, 25 Sep 2012 18:13:44 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:13:44 GMT Message-Id: <201209251813.q8PIDigU029207@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171991: editors/uemacs: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:13:45 -0000 Synopsis: editors/uemacs: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:13:44 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171991 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:13:50 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 26BB7106564A; Tue, 25 Sep 2012 18:13:50 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EEF8A8FC18; Tue, 25 Sep 2012 18:13:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIDnNL029292; Tue, 25 Sep 2012 18:13:49 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIDnMn029288; Tue, 25 Sep 2012 18:13:49 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:13:49 GMT Message-Id: <201209251813.q8PIDnMn029288@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171992: emulators/bochs: Update to version 2.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:13:50 -0000 Synopsis: emulators/bochs: Update to version 2.6 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:13:49 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171992 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:13:56 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 510D21065670; Tue, 25 Sep 2012 18:13:56 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 24F4C8FC19; Tue, 25 Sep 2012 18:13:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIDuFV029377; Tue, 25 Sep 2012 18:13:56 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIDu2P029373; Tue, 25 Sep 2012 18:13:56 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:13:56 GMT Message-Id: <201209251813.q8PIDu2P029373@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171993: emulators/catapult: Update to version 0.9.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:13:56 -0000 Synopsis: emulators/catapult: Update to version 0.9.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:13:55 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171993 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:14:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 686B0106566B; Tue, 25 Sep 2012 18:14:02 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3D4F28FC0C; Tue, 25 Sep 2012 18:14:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIE2hb029465; Tue, 25 Sep 2012 18:14:02 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIE2lh029461; Tue, 25 Sep 2012 18:14:02 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:14:02 GMT Message-Id: <201209251814.q8PIE2lh029461@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171994: emulators/mame: Update to version 0.147 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:14:02 -0000 Synopsis: emulators/mame: Update to version 0.147 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:14:01 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171994 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:14:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98B481065672; Tue, 25 Sep 2012 18:14:07 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6CE4D8FC0C; Tue, 25 Sep 2012 18:14:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIE7cp029627; Tue, 25 Sep 2012 18:14:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIE75M029623; Tue, 25 Sep 2012 18:14:07 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:14:07 GMT Message-Id: <201209251814.q8PIE75M029623@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171995: emulators/mess: Update to version 0.147 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:14:07 -0000 Synopsis: emulators/mess: Update to version 0.147 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:14:07 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171995 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:14:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 42A881065670; Tue, 25 Sep 2012 18:14:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1735A8FC1B; Tue, 25 Sep 2012 18:14:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIEDQe029884; Tue, 25 Sep 2012 18:14:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIED7e029880; Tue, 25 Sep 2012 18:14:13 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:14:13 GMT Message-Id: <201209251814.q8PIED7e029880@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171996: emulators/qmc2: Update to version 0.37 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:14:14 -0000 Synopsis: emulators/qmc2: Update to version 0.37 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:14:13 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171996 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:14:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10E27106566C; Tue, 25 Sep 2012 18:14:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D9FDA8FC1E; Tue, 25 Sep 2012 18:14:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIEIc7030039; Tue, 25 Sep 2012 18:14:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIEIYj030035; Tue, 25 Sep 2012 18:14:18 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:14:18 GMT Message-Id: <201209251814.q8PIEIYj030035@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171997: emulators/tme: Update to version 0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:14:19 -0000 Synopsis: emulators/tme: Update to version 0.8 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:14:18 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171997 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:14:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 36E9A106564A; Tue, 25 Sep 2012 18:14:24 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0B2BB8FC1D; Tue, 25 Sep 2012 18:14:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIENrg030120; Tue, 25 Sep 2012 18:14:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIENpd030116; Tue, 25 Sep 2012 18:14:23 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:14:23 GMT Message-Id: <201209251814.q8PIENpd030116@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171998: ftp/hsftp: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:14:24 -0000 Synopsis: ftp/hsftp: Support USE_READLINE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:14:23 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171998 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:14:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 526861065673; Tue, 25 Sep 2012 18:14:30 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1F4CB8FC1A; Tue, 25 Sep 2012 18:14:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIEUfQ030201; Tue, 25 Sep 2012 18:14:30 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIETbD030197; Tue, 25 Sep 2012 18:14:29 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:14:29 GMT Message-Id: <201209251814.q8PIETbD030197@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/171999: ftp/ncftp2: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:14:30 -0000 Synopsis: ftp/ncftp2: Support USE_READLINE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:14:29 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=171999 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:14:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4D89D1065670; Tue, 25 Sep 2012 18:14:35 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 219AF8FC12; Tue, 25 Sep 2012 18:14:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIEZ1M030282; Tue, 25 Sep 2012 18:14:35 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIEZ03030278; Tue, 25 Sep 2012 18:14:35 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:14:35 GMT Message-Id: <201209251814.q8PIEZ03030278@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172000: ftp/quftp: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:14:35 -0000 Synopsis: ftp/quftp: Support USE_READLINE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:14:34 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172000 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:14:40 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 805B9106564A; Tue, 25 Sep 2012 18:14:40 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 54CE78FC16; Tue, 25 Sep 2012 18:14:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIEeQV030363; Tue, 25 Sep 2012 18:14:40 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIEebm030359; Tue, 25 Sep 2012 18:14:40 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:14:40 GMT Message-Id: <201209251814.q8PIEebm030359@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172001: ftp/yafc: Update to version 1.2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:14:40 -0000 Synopsis: ftp/yafc: Update to version 1.2.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:14:39 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172001 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:14:46 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A531A1065677; Tue, 25 Sep 2012 18:14:46 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 796A98FC15; Tue, 25 Sep 2012 18:14:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIEkHu030444; Tue, 25 Sep 2012 18:14:46 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIEkw7030440; Tue, 25 Sep 2012 18:14:46 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:14:46 GMT Message-Id: <201209251814.q8PIEkw7030440@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172002: games/gretools: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:14:46 -0000 Synopsis: games/gretools: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:14:46 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172002 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:14:52 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EA0D1065672; Tue, 25 Sep 2012 18:14:52 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 739B08FC0C; Tue, 25 Sep 2012 18:14:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIEqeV030525; Tue, 25 Sep 2012 18:14:52 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIEqxE030521; Tue, 25 Sep 2012 18:14:52 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:14:52 GMT Message-Id: <201209251814.q8PIEqxE030521@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172003: games/kbilliards: Fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:14:52 -0000 Synopsis: games/kbilliards: Fix build Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:14:52 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172003 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:14:57 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E3B11065672; Tue, 25 Sep 2012 18:14:57 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 72EF08FC1E; Tue, 25 Sep 2012 18:14:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIEvit030610; Tue, 25 Sep 2012 18:14:57 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIEv3n030606; Tue, 25 Sep 2012 18:14:57 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:14:57 GMT Message-Id: <201209251814.q8PIEv3n030606@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172004: games/rocksndiamonds: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:14:57 -0000 Synopsis: games/rocksndiamonds: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:14:57 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172004 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:15:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 815A21065673; Tue, 25 Sep 2012 18:15:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5319F8FC1B; Tue, 25 Sep 2012 18:15:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIFH2r030721; Tue, 25 Sep 2012 18:15:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIFHr9030717; Tue, 25 Sep 2012 18:15:17 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:15:17 GMT Message-Id: <201209251815.q8PIFHr9030717@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172005: games/spellathon: Update to version 6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:15:17 -0000 Synopsis: games/spellathon: Update to version 6.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:15:16 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172005 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:15:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 22BFE106564A; Tue, 25 Sep 2012 18:15:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EAFC68FC18; Tue, 25 Sep 2012 18:15:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIFM9G030811; Tue, 25 Sep 2012 18:15:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIFMOa030807; Tue, 25 Sep 2012 18:15:22 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:15:22 GMT Message-Id: <201209251815.q8PIFMOa030807@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172006: games/stepmania-devel: Update to version 5.0.a3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:15:23 -0000 Synopsis: games/stepmania-devel: Update to version 5.0.a3 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:15:22 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172006 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:15:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFC57106564A; Tue, 25 Sep 2012 18:15:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B3A058FC18; Tue, 25 Sep 2012 18:15:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIFSxK030900; Tue, 25 Sep 2012 18:15:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIFSMD030896; Tue, 25 Sep 2012 18:15:28 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:15:28 GMT Message-Id: <201209251815.q8PIFSMD030896@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172007: games/taipan: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:15:29 -0000 Synopsis: games/taipan: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:15:28 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172007 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:15:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 709AC10656D6; Tue, 25 Sep 2012 18:15:35 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 449D78FC18; Tue, 25 Sep 2012 18:15:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIFZiH030987; Tue, 25 Sep 2012 18:15:35 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIFZnU030983; Tue, 25 Sep 2012 18:15:35 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:15:35 GMT Message-Id: <201209251815.q8PIFZnU030983@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172008: games/ultimatestunts: Update to version 0.7.7.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:15:35 -0000 Synopsis: games/ultimatestunts: Update to version 0.7.7.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:15:34 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172008 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:15:42 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CE13106566B; Tue, 25 Sep 2012 18:15:42 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 10C698FC08; Tue, 25 Sep 2012 18:15:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIFfHU031076; Tue, 25 Sep 2012 18:15:41 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIFfD5031072; Tue, 25 Sep 2012 18:15:41 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:15:41 GMT Message-Id: <201209251815.q8PIFfD5031072@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172010: games/xevil: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:15:42 -0000 Synopsis: games/xevil: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:15:41 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172010 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:15:47 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C986C1065673; Tue, 25 Sep 2012 18:15:47 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9D69C8FC1A; Tue, 25 Sep 2012 18:15:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIFlA1031164; Tue, 25 Sep 2012 18:15:47 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIFllE031160; Tue, 25 Sep 2012 18:15:47 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:15:47 GMT Message-Id: <201209251815.q8PIFllE031160@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172011: graphics/OpenEXR: Update to version 1.7.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:15:47 -0000 Synopsis: graphics/OpenEXR: Update to version 1.7.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:15:47 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172011 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:15:53 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13485106564A; Tue, 25 Sep 2012 18:15:53 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DBC4C8FC0C; Tue, 25 Sep 2012 18:15:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIFqg6031253; Tue, 25 Sep 2012 18:15:52 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIFqVU031249; Tue, 25 Sep 2012 18:15:52 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:15:52 GMT Message-Id: <201209251815.q8PIFqVU031249@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172012: graphics/apngasm: Update to version 2.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:15:53 -0000 Synopsis: graphics/apngasm: Update to version 2.7 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:15:52 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172012 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:15:58 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A3CD106566B; Tue, 25 Sep 2012 18:15:58 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2ED818FC17; Tue, 25 Sep 2012 18:15:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIFwwb031348; Tue, 25 Sep 2012 18:15:58 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIFwj5031343; Tue, 25 Sep 2012 18:15:58 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:15:58 GMT Message-Id: <201209251815.q8PIFwj5031343@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172013: graphics/autotrace: Fix OPTIONS_DEFINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:15:58 -0000 Synopsis: graphics/autotrace: Fix OPTIONS_DEFINE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:15:57 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172013 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:16:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E0B0106564A; Tue, 25 Sep 2012 18:16:03 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 424978FC16; Tue, 25 Sep 2012 18:16:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIG3bZ031443; Tue, 25 Sep 2012 18:16:03 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIG3pj031439; Tue, 25 Sep 2012 18:16:03 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:16:03 GMT Message-Id: <201209251816.q8PIG3pj031439@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172014: graphics/backfract: Remove USE_PERL5_BUILD X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:16:03 -0000 Synopsis: graphics/backfract: Remove USE_PERL5_BUILD Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:16:02 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172014 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:16:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 88C5610656B7; Tue, 25 Sep 2012 18:16:08 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5CC718FC15; Tue, 25 Sep 2012 18:16:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIG8Cl031532; Tue, 25 Sep 2012 18:16:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIG82P031528; Tue, 25 Sep 2012 18:16:08 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:16:08 GMT Message-Id: <201209251816.q8PIG82P031528@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172015: graphics/icoutils: Update to version 0.30.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:16:08 -0000 Synopsis: graphics/icoutils: Update to version 0.30.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:16:07 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172015 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:16:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B33A210656F2; Tue, 25 Sep 2012 18:16:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 850D58FC08; Tue, 25 Sep 2012 18:16:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIGDhW031620; Tue, 25 Sep 2012 18:16:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIGDv6031616; Tue, 25 Sep 2012 18:16:13 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:16:13 GMT Message-Id: <201209251816.q8PIGDv6031616@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172016: graphics/ida: Fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:16:13 -0000 Synopsis: graphics/ida: Fix build Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:16:12 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172016 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:16:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E54DC1065677; Tue, 25 Sep 2012 18:16:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B9DE68FC16; Tue, 25 Sep 2012 18:16:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIGIC1031711; Tue, 25 Sep 2012 18:16:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIGIEm031707; Tue, 25 Sep 2012 18:16:18 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:16:18 GMT Message-Id: <201209251816.q8PIGIEm031707@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172017: graphics/imagesort: Fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:16:19 -0000 Synopsis: graphics/imagesort: Fix build Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:16:18 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172017 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:16:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 59D7010656FD; Tue, 25 Sep 2012 18:16:24 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2DDF38FC12; Tue, 25 Sep 2012 18:16:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIGOAD031800; Tue, 25 Sep 2012 18:16:24 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIGOcX031796; Tue, 25 Sep 2012 18:16:24 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:16:24 GMT Message-Id: <201209251816.q8PIGOcX031796@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172018: graphics/lcms-python: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:16:24 -0000 Synopsis: graphics/lcms-python: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:16:23 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172018 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:16:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 69A0910656F7; Tue, 25 Sep 2012 18:16:29 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3DAC78FC1B; Tue, 25 Sep 2012 18:16:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIGTiw031888; Tue, 25 Sep 2012 18:16:29 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIGT88031884; Tue, 25 Sep 2012 18:16:29 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:16:29 GMT Message-Id: <201209251816.q8PIGT88031884@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172019: graphics/metapixel: Support PORTEXAMPLES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:16:29 -0000 Synopsis: graphics/metapixel: Support PORTEXAMPLES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:16:28 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172019 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:16:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 954751065670; Tue, 25 Sep 2012 18:16:34 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 699078FC19; Tue, 25 Sep 2012 18:16:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIGY6h031977; Tue, 25 Sep 2012 18:16:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIGYxi031973; Tue, 25 Sep 2012 18:16:34 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:16:34 GMT Message-Id: <201209251816.q8PIGYxi031973@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172020: graphics/pho: Update to version 0.9.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:16:34 -0000 Synopsis: graphics/pho: Update to version 0.9.8 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:16:33 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172020 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:16:39 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7DC11065673; Tue, 25 Sep 2012 18:16:39 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7BFEC8FC08; Tue, 25 Sep 2012 18:16:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIGdfg032065; Tue, 25 Sep 2012 18:16:39 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIGdfc032061; Tue, 25 Sep 2012 18:16:39 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:16:39 GMT Message-Id: <201209251816.q8PIGdfc032061@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172021: graphics/pstoedit: Update to version 3.61 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:16:39 -0000 Synopsis: graphics/pstoedit: Update to version 3.61 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:16:39 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172021 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:16:44 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9D55106566B; Tue, 25 Sep 2012 18:16:44 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9E3718FC08; Tue, 25 Sep 2012 18:16:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIGieg032154; Tue, 25 Sep 2012 18:16:44 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIGiZi032150; Tue, 25 Sep 2012 18:16:44 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:16:44 GMT Message-Id: <201209251816.q8PIGiZi032150@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172022: graphics/sane-backends: Update to version 1.0.23 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:16:44 -0000 Synopsis: graphics/sane-backends: Update to version 1.0.23 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:16:44 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172022 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:16:49 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B1D091065672; Tue, 25 Sep 2012 18:16:49 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 85DC98FC12; Tue, 25 Sep 2012 18:16:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIGn6r032242; Tue, 25 Sep 2012 18:16:49 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIGnGw032238; Tue, 25 Sep 2012 18:16:49 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:16:49 GMT Message-Id: <201209251816.q8PIGnGw032238@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172023: graphics/xmedcon: Update to version 0.11.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:16:49 -0000 Synopsis: graphics/xmedcon: Update to version 0.11.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:16:49 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172023 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:17:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03A1F106564A; Tue, 25 Sep 2012 18:17:01 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CC7E78FC19; Tue, 25 Sep 2012 18:17:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIH0ot032346; Tue, 25 Sep 2012 18:17:00 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIH0k8032342; Tue, 25 Sep 2012 18:17:00 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:17:00 GMT Message-Id: <201209251817.q8PIH0k8032342@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172025: lang/cocor: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:17:01 -0000 Synopsis: lang/cocor: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:17:00 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172025 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:17:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA876106564A; Tue, 25 Sep 2012 18:17:06 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BF0A28FC17; Tue, 25 Sep 2012 18:17:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIH6uE032436; Tue, 25 Sep 2012 18:17:06 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIH6tm032432; Tue, 25 Sep 2012 18:17:06 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:17:06 GMT Message-Id: <201209251817.q8PIH6tm032432@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172026: lang/diveintopython: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:17:07 -0000 Synopsis: lang/diveintopython: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:17:06 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172026 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:17:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 094DF106564A; Tue, 25 Sep 2012 18:17:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CFA318FC1D; Tue, 25 Sep 2012 18:17:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIHBoU032525; Tue, 25 Sep 2012 18:17:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIHB0o032521; Tue, 25 Sep 2012 18:17:11 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:17:11 GMT Message-Id: <201209251817.q8PIHB0o032521@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172027: lang/gcl: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:17:12 -0000 Synopsis: lang/gcl: Support USE_READLINE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:17:11 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172027 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:17:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 18CDC1065673; Tue, 25 Sep 2012 18:17:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E14AE8FC15; Tue, 25 Sep 2012 18:17:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIHLTk032625; Tue, 25 Sep 2012 18:17:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIHLH4032621; Tue, 25 Sep 2012 18:17:21 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:17:21 GMT Message-Id: <201209251817.q8PIHLH4032621@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172028: lang/mdk: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:17:22 -0000 Synopsis: lang/mdk: Support USE_READLINE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:17:21 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172028 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:17:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 31F03106566B; Tue, 25 Sep 2012 18:17:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 066908FC08; Tue, 25 Sep 2012 18:17:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIHQMs032714; Tue, 25 Sep 2012 18:17:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIHQOK032710; Tue, 25 Sep 2012 18:17:26 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:17:26 GMT Message-Id: <201209251817.q8PIHQOK032710@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172029: mail/abook: Support USE_READLINE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:17:27 -0000 Synopsis: mail/abook: Support USE_READLINE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:17:26 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172029 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:17:33 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37AA2106564A; Tue, 25 Sep 2012 18:17:33 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0C4968FC1E; Tue, 25 Sep 2012 18:17:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIHWSb032806; Tue, 25 Sep 2012 18:17:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIHWmC032802; Tue, 25 Sep 2012 18:17:32 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:17:32 GMT Message-Id: <201209251817.q8PIHWmC032802@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172030: mail/cucipop: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:17:33 -0000 Synopsis: mail/cucipop: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:17:32 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172030 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:17:39 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 761C5106566B; Tue, 25 Sep 2012 18:17:39 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4A8298FC15; Tue, 25 Sep 2012 18:17:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIHdNS032897; Tue, 25 Sep 2012 18:17:39 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIHdOh032893; Tue, 25 Sep 2012 18:17:39 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:17:39 GMT Message-Id: <201209251817.q8PIHdOh032893@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172031: mail/emh: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:17:39 -0000 Synopsis: mail/emh: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:17:38 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172031 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:17:44 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A51F71065673; Tue, 25 Sep 2012 18:17:44 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 78DC98FC18; Tue, 25 Sep 2012 18:17:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIHi4L032986; Tue, 25 Sep 2012 18:17:44 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIHiJI032982; Tue, 25 Sep 2012 18:17:44 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:17:44 GMT Message-Id: <201209251817.q8PIHiJI032982@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172032: math/convertall: Update to version 0.5.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:17:44 -0000 Synopsis: math/convertall: Update to version 0.5.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:17:44 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172032 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:17:49 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE7DE1065672; Tue, 25 Sep 2012 18:17:49 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9308B8FC08; Tue, 25 Sep 2012 18:17:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIHnTx033074; Tue, 25 Sep 2012 18:17:49 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIHne1033070; Tue, 25 Sep 2012 18:17:49 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:17:49 GMT Message-Id: <201209251817.q8PIHne1033070@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172033: math/xspread: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:17:49 -0000 Synopsis: math/xspread: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:17:49 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172033 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:17:55 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EE243106566C; Tue, 25 Sep 2012 18:17:54 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C29078FC17; Tue, 25 Sep 2012 18:17:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIHsZq033167; Tue, 25 Sep 2012 18:17:54 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIHslm033163; Tue, 25 Sep 2012 18:17:54 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:17:54 GMT Message-Id: <201209251817.q8PIHslm033163@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172034: math/yacas: Update to version 1.3.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:17:55 -0000 Synopsis: math/yacas: Update to version 1.3.3 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:17:54 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172034 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:18:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B1B21065677; Tue, 25 Sep 2012 18:18:01 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1EAFE8FC1E; Tue, 25 Sep 2012 18:18:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PII0MH033276; Tue, 25 Sep 2012 18:18:00 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PII0PT033272; Tue, 25 Sep 2012 18:18:00 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:18:00 GMT Message-Id: <201209251818.q8PII0PT033272@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172035: misc/cstream: Update to version 3.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:18:01 -0000 Synopsis: misc/cstream: Update to version 3.0.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:18:00 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172035 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:18:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 08935106566C; Tue, 25 Sep 2012 18:18:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CFC398FC12; Tue, 25 Sep 2012 18:18:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PII8uM033364; Tue, 25 Sep 2012 18:18:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PII8O5033360; Tue, 25 Sep 2012 18:18:08 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:18:08 GMT Message-Id: <201209251818.q8PII8O5033360@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172036: multimedia/avidemux2: Fix CMAKE_ARGS usage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:18:09 -0000 Synopsis: multimedia/avidemux2: Fix CMAKE_ARGS usage Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:18:07 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172036 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:18:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3862A1065670; Tue, 25 Sep 2012 18:18:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0C5078FC0A; Tue, 25 Sep 2012 18:18:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIIGKl033454; Tue, 25 Sep 2012 18:18:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIIGqW033450; Tue, 25 Sep 2012 18:18:16 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:18:16 GMT Message-Id: <201209251818.q8PIIGqW033450@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172037: multimedia/dvdauthor: Update to version 0.7.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:18:17 -0000 Synopsis: multimedia/dvdauthor: Update to version 0.7.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:18:16 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172037 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:18:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 07C0A1065678; Tue, 25 Sep 2012 18:18:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D0D5D8FC2C; Tue, 25 Sep 2012 18:18:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIIOB2033544; Tue, 25 Sep 2012 18:18:24 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIIONk033540; Tue, 25 Sep 2012 18:18:24 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:18:24 GMT Message-Id: <201209251818.q8PIIONk033540@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172038: multimedia/dvdid: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:18:26 -0000 Synopsis: multimedia/dvdid: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:18:24 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172038 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:18:33 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 34BDA1065672; Tue, 25 Sep 2012 18:18:33 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 08CB88FC19; Tue, 25 Sep 2012 18:18:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIIWpU033631; Tue, 25 Sep 2012 18:18:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIIWGQ033627; Tue, 25 Sep 2012 18:18:32 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:18:32 GMT Message-Id: <201209251818.q8PIIWGQ033627@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172039: net/enet: Update to version 1.3.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:18:33 -0000 Synopsis: net/enet: Update to version 1.3.5 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:18:32 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172039 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:18:40 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C595A1065677; Tue, 25 Sep 2012 18:18:40 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 99E708FC22; Tue, 25 Sep 2012 18:18:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIIe60033720; Tue, 25 Sep 2012 18:18:40 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIIeuH033716; Tue, 25 Sep 2012 18:18:40 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:18:40 GMT Message-Id: <201209251818.q8PIIeuH033716@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172040: net/ldap2dns: Update to version 0.4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:18:40 -0000 Synopsis: net/ldap2dns: Update to version 0.4.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:18:39 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172040 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:18:47 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5696F1065678; Tue, 25 Sep 2012 18:18:47 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2839F8FC17; Tue, 25 Sep 2012 18:18:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIIlfC033808; Tue, 25 Sep 2012 18:18:47 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIIlVe033804; Tue, 25 Sep 2012 18:18:47 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:18:47 GMT Message-Id: <201209251818.q8PIIlVe033804@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172041: net/netselect: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:18:47 -0000 Synopsis: net/netselect: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:18:46 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172041 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:18:53 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A17751065691; Tue, 25 Sep 2012 18:18:53 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 74E808FC19; Tue, 25 Sep 2012 18:18:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIIr91033900; Tue, 25 Sep 2012 18:18:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIIrYV033896; Tue, 25 Sep 2012 18:18:53 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:18:53 GMT Message-Id: <201209251818.q8PIIrYV033896@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172042: net/onioncat: Update to version 0.2.2.r553 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:18:53 -0000 Synopsis: net/onioncat: Update to version 0.2.2.r553 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:18:52 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172042 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:18:59 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68CD810656B2; Tue, 25 Sep 2012 18:18:59 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3CE378FC15; Tue, 25 Sep 2012 18:18:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIIx1r033988; Tue, 25 Sep 2012 18:18:59 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIIx3v033984; Tue, 25 Sep 2012 18:18:59 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:18:59 GMT Message-Id: <201209251818.q8PIIx3v033984@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172043: net/tdetect: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:18:59 -0000 Synopsis: net/tdetect: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:18:58 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172043 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:19:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 409B1106566C; Tue, 25 Sep 2012 18:19:05 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 14D4E8FC0A; Tue, 25 Sep 2012 18:19:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIJ4NI034078; Tue, 25 Sep 2012 18:19:04 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIJ4vN034074; Tue, 25 Sep 2012 18:19:04 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:19:04 GMT Message-Id: <201209251819.q8PIJ4vN034074@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172044: net/x2goclient: Update to version 3.99.2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:19:05 -0000 Synopsis: net/x2goclient: Update to version 3.99.2.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:19:04 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172044 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0CA2106564A for ; Tue, 25 Sep 2012 18:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 75FB98FC1F for ; Tue, 25 Sep 2012 18:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKBdT034241 for ; Tue, 25 Sep 2012 18:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKB8d034240; Tue, 25 Sep 2012 18:20:11 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:11 GMT Resent-Message-Id: <201209251820.q8PIKB8d034240@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 92D521065678 for ; Tue, 25 Sep 2012 18:09:48 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id 648BF8FC12 for ; Tue, 25 Sep 2012 18:09:48 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id 84AF347C036 for ; Wed, 26 Sep 2012 03:09:46 +0900 (JST) Message-Id: <20120926022549.4f303f4a22c0ccfa7692962c@yahoo.com> Date: Wed, 26 Sep 2012 02:25:49 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172045: net-mgmt/echolot: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:11 -0000 X-List-Received-Date: Tue, 25 Sep 2012 18:20:11 -0000 >Number: 172045 >Category: ports >Synopsis: net-mgmt/echolot: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Add LICENSE - Add MAKE_JOBS_SAFE - Support PLIST_FILES Remove file: pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/net-mgmt/echolot/Makefile net-mgmt/echolot/Makefile --- /usr/ports/net-mgmt/echolot/Makefile 2009-08-28 03:31:07.000000000 +0900 +++ net-mgmt/echolot/Makefile 2012-09-25 03:39:24.000000000 +0900 @@ -1,28 +1,33 @@ -# ex:ts=8 -# Ports collection makefile for: echolot -# Date created: Jun 23, 2002 -# Whom: ijliao -# +# Created by: ijliao # $FreeBSD: ports/net-mgmt/echolot/Makefile,v 1.10 2009/08/27 18:31:07 amdmi3 Exp $ -# PORTNAME= echolot PORTVERSION= 0.1.0 PORTREVISION= 1 CATEGORIES= net-mgmt -MASTER_SITES= http://echolot.sourceforge.net/download/ \ +MASTER_SITES= http://benjamin-schweizer.de/files/echolot/ \ SF MAINTAINER= ports@FreeBSD.org COMMENT= A packet sniffer that grabs ARP packets on any ethernet devices -GNU_CONFIGURE= yes +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/COPYING + +OPTIONS_DEFINE= DOCS + USE_GMAKE= yes +GNU_CONFIGURE= yes +MAKE_JOBS_SAFE= yes + +MAN1= echolot.1 +PORTDOCS= * +PLIST_FILES= bin/echolot -MAN1= echolot.1 +.include post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR} .endif diff -urN /usr/ports/net-mgmt/echolot/pkg-descr net-mgmt/echolot/pkg-descr --- /usr/ports/net-mgmt/echolot/pkg-descr 2002-06-23 04:02:09.000000000 +0900 +++ net-mgmt/echolot/pkg-descr 2012-07-10 23:01:30.000000000 +0900 @@ -3,4 +3,4 @@ * to detect intruders (new mac in lan) * to find your boxes on foreign lans (known mac in lan) -WWW: http://sourceforge.net/projects/echolot +WWW: http://benjamin-schweizer.de/echolot.html diff -urN /usr/ports/net-mgmt/echolot/pkg-plist net-mgmt/echolot/pkg-plist --- /usr/ports/net-mgmt/echolot/pkg-plist 2003-01-07 16:04:51.000000000 +0900 +++ net-mgmt/echolot/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,10 +0,0 @@ -bin/echolot -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/BUGS -%%PORTDOCS%%%%DOCSDIR%%/HISTORY -%%PORTDOCS%%%%DOCSDIR%%/HOWTO -%%PORTDOCS%%%%DOCSDIR%%/INSTALL -%%PORTDOCS%%%%DOCSDIR%%/LICENSE -%%PORTDOCS%%%%DOCSDIR%%/PLATFORMS -%%PORTDOCS%%%%DOCSDIR%%/rfc826.txt -%%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1FA86106567C for ; Tue, 25 Sep 2012 18:20:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E8DFA8FC21 for ; Tue, 25 Sep 2012 18:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKBb2034258 for ; Tue, 25 Sep 2012 18:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKBGI034257; Tue, 25 Sep 2012 18:20:11 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:11 GMT Resent-Message-Id: <201209251820.q8PIKBGI034257@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98975106566C for ; Tue, 25 Sep 2012 18:09:52 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 69CA68FC0C for ; Tue, 25 Sep 2012 18:09:52 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id B812150036 for ; Wed, 26 Sep 2012 03:09:50 +0900 (JST) Message-Id: <20120926022552.676ca2fe43991df2fa7081a2@yahoo.com> Date: Wed, 26 Sep 2012 02:25:52 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172046: net-mgmt/nat: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:12 -0000 >Number: 172046 >Category: ports >Synopsis: net-mgmt/nat: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Add LICENSE_FILE - Add IA32_BINARY_PORT - Support PLIST_FILES Remove file: pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/net-mgmt/nat/Makefile net-mgmt/nat/Makefile --- /usr/ports/net-mgmt/nat/Makefile 2008-01-04 03:21:57.000000000 +0900 +++ net-mgmt/nat/Makefile 2012-09-25 03:39:29.000000000 +0900 @@ -1,32 +1,34 @@ -# Ports collection makefile for: nat -# Date created: May 24 2001 -# Whom: Roman Shterenzon -# +# Created by: Roman Shterenzon # $FreeBSD: ports/net-mgmt/nat/Makefile,v 1.8 2008/01/03 18:21:57 erwin Exp $ -# PORTNAME= nat PORTVERSION= 20 CATEGORIES= net-mgmt security MASTER_SITES= http://www.tux.org/pub/security/secnet/tools/nat20beta/ \ - ftp://ftp.cert.dfn.de/pub/tools/net-mgmt/nat/nat20beta/ \ - ftp://ftp.spin.ad.jp/pub/Security/nat/nat20beta/ + http://apache.uasw.edu/pub/security/dfn-cert/tools/net/nat/ DISTNAME= ${PORTNAME}${PORTVERSION}.freebsd MAINTAINER= ports@FreeBSD.org COMMENT= NetBIOS auditing tool +LICENSE_FILE= ${WRKSRC}/LICENSE + RESTRICTED= Redistribution prohibited by the license +IA32_BINARY_PORT=yes + NO_BUILD= yes -WRKSRC= ${WRKDIR} +NO_WRKSUBDIR= yes + MAN1= nat.1 +PLIST_FILES= bin/nat %%DATADIR%%/passlist.txt %%DATADIR%%/userlist.txt +PLIST_DIRS= %%DATADIR%% do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/nat ${LOCALBASE}/bin - ${INSTALL_MAN} ${WRKSRC}/nat.1 ${LOCALBASE}/man/man1 - ${MKDIR} ${LOCALBASE}/share/nat - ${INSTALL_DATA} ${WRKSRC}/passlist.txt ${LOCALBASE}/share/nat - ${INSTALL_DATA} ${WRKSRC}/userlist.txt ${LOCALBASE}/share/nat + ${INSTALL_SCRIPT} ${WRKSRC}/nat ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/nat.1 ${MANPREFIX}/man/man1 + @${MKDIR} ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/passlist.txt ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/userlist.txt ${DATADIR} .include diff -urN /usr/ports/net-mgmt/nat/pkg-plist net-mgmt/nat/pkg-plist --- /usr/ports/net-mgmt/nat/pkg-plist 2001-05-30 11:26:39.000000000 +0900 +++ net-mgmt/nat/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,4 +0,0 @@ -bin/nat -share/nat/passlist.txt -share/nat/userlist.txt -@dirrm share/nat >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9632A106566B for ; Tue, 25 Sep 2012 18:20:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6C0248FC24 for ; Tue, 25 Sep 2012 18:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKCWA034304 for ; Tue, 25 Sep 2012 18:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKCdR034298; Tue, 25 Sep 2012 18:20:12 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:12 GMT Resent-Message-Id: <201209251820.q8PIKCdR034298@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D791A1065674 for ; Tue, 25 Sep 2012 18:09:57 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 8C1698FC19 for ; Tue, 25 Sep 2012 18:09:57 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id DC9E84AC036 for ; Wed, 26 Sep 2012 03:09:54 +0900 (JST) Message-Id: <20120926022556.e996386cf96f2131f87fbca9@yahoo.com> Date: Wed, 26 Sep 2012 02:25:56 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172047: net-mgmt/openvmps: Update to version 1.4.04 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:12 -0000 >Number: 172047 >Category: ports >Synopsis: net-mgmt/openvmps: Update to version 1.4.04 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.4.04 New file: files/vmpsd.in Remove file: files/patch-Makefile.in files/patch-daemon.c files/vpmsd.in >How-To-Repeat: >Fix: diff -urN /usr/ports/net-mgmt/openvmps/Makefile net-mgmt/openvmps/Makefile --- /usr/ports/net-mgmt/openvmps/Makefile 2012-09-22 11:18:45.000000000 +0900 +++ net-mgmt/openvmps/Makefile 2012-09-23 18:37:03.000000000 +0900 @@ -2,8 +2,7 @@ # $FreeBSD: ports/net-mgmt/openvmps/Makefile,v 1.12 2012/09/22 02:18:45 tabthorpe Exp $ PORTNAME= openvmps -PORTVERSION= 1.3 -PORTREVISION= 1 +PORTVERSION= 1.4.04 CATEGORIES= net-mgmt MASTER_SITES= SF/vmps/vmpsd/${PORTVERSION} DISTNAME= vmpsd-${PORTVERSION} @@ -11,12 +10,12 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A GPL implementation of the VMPS protocol -WRKSRC= ${WRKDIR}/vmpsd -USE_RC_SUBR= vpmsd +LICENSE= GPLv2 -GNU_CONFIGURE= yes -USE_GMAKE= yes +USE_RC_SUBR= vmpsd +USE_GMAKE= yes +GNU_CONFIGURE= yes CONFIGURE_ARGS=--bindir=${PREFIX}/sbin MAN1= vmpsd.1 @@ -27,11 +26,14 @@ IGNORE= does not run correctly on amd64 architecture, see ports/136376 .endif +post-patch: + @${REINPLACE_CMD} -e '/^install-exec-am:/s|install-sysconfDATA||' \ + ${WRKSRC}/Makefile.in + post-install: - ${INSTALL_DATA} -m 644 ${WRKSRC}/vlan.db \ - ${PREFIX}/etc/vmps.db.sample - @if [ ! -f ${PREFIX}/etc/vmps.db ]; then \ - ${CP} -p ${PREFIX}/etc/vmps.db.sample ${PREFIX}/etc/vmps.db ; \ - fi + ${INSTALL_DATA} ${WRKSRC}/vlan.db ${PREFIX}/etc/vmps.db.sample +.if !exists(${PREFIX}/etc/vmps.db) + cd ${PREFIX}/etc && ${CP} -p vmps.db.sample vmps.db +.endif .include diff -urN /usr/ports/net-mgmt/openvmps/distinfo net-mgmt/openvmps/distinfo --- /usr/ports/net-mgmt/openvmps/distinfo 2011-03-20 21:54:01.000000000 +0900 +++ net-mgmt/openvmps/distinfo 2012-09-23 18:23:04.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (vmpsd-1.3.tar.gz) = 6f6bd6c5d1e9fc862c27cf783bcbabef21619aa5fe7984231eb55e32e11ca142 -SIZE (vmpsd-1.3.tar.gz) = 95202 +SHA256 (vmpsd-1.4.04.tar.gz) = 3b82ed9547eb126ffbefdd9b890870ebfac466c0bc93cfea1764a360772912ab +SIZE (vmpsd-1.4.04.tar.gz) = 193900 diff -urN /usr/ports/net-mgmt/openvmps/files/patch-Makefile.in net-mgmt/openvmps/files/patch-Makefile.in --- /usr/ports/net-mgmt/openvmps/files/patch-Makefile.in 2005-01-26 15:54:24.000000000 +0900 +++ net-mgmt/openvmps/files/patch-Makefile.in 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- Makefile.in.orig Tue Jan 25 18:16:11 2005 -+++ Makefile.in Tue Jan 25 18:17:02 2005 -@@ -684,7 +684,7 @@ - - install-data-am: install-man - --install-exec-am: install-binPROGRAMS install-sysconfDATA -+install-exec-am: install-binPROGRAMS - - install-info: install-info-am - diff -urN /usr/ports/net-mgmt/openvmps/files/patch-daemon.c net-mgmt/openvmps/files/patch-daemon.c --- /usr/ports/net-mgmt/openvmps/files/patch-daemon.c 2005-01-26 15:54:24.000000000 +0900 +++ net-mgmt/openvmps/files/patch-daemon.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,14 +0,0 @@ ---- daemon.c.orig Tue Jan 25 18:00:12 2005 -+++ daemon.c Tue Jan 25 18:00:47 2005 -@@ -44,7 +44,10 @@ - - { - register int childpid; -- -+#ifdef VMPS_CHECK_BSD -+ int fd; -+#endif -+ - #ifdef SIGTTOU - signal(SIGTTOU, SIG_IGN); - #endif diff -urN /usr/ports/net-mgmt/openvmps/files/vmpsd.in net-mgmt/openvmps/files/vmpsd.in --- /usr/ports/net-mgmt/openvmps/files/vmpsd.in 1970-01-01 09:00:00.000000000 +0900 +++ net-mgmt/openvmps/files/vmpsd.in 2012-09-23 18:30:21.000000000 +0900 @@ -0,0 +1,28 @@ +#!/bin/sh + +# Start or stop vmpsd +# $FreeBSD$ + +# PROVIDE: vmpsd +# REQUIRE: DAEMON +# KEYWORD: shutdown + +# Define these vmpsd_* variables in one of these files: +# /etc/rc.conf +# /etc/rc.conf.local +# /etc/rc.conf.d/vmpsd +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# +[ -z "$vmpsd_enable" ] && vmpsd_enable="NO" # Enable vmpsd +#vmpsd_program="%%PREFIX%%/sbin/vmpsd" # Location of vmpsd +[ -z "$vmpsd_flags" ] && vmpsd_flags="-f /usr/local/etc/vmps.db" # Flags to vmpsd program + +. /etc/rc.subr + +name="vmpsd" +rcvar=vmpsd_enable +command="%%PREFIX%%/sbin/${name}" + +load_rc_config $name +run_rc_command "$1" diff -urN /usr/ports/net-mgmt/openvmps/files/vpmsd.in net-mgmt/openvmps/files/vpmsd.in --- /usr/ports/net-mgmt/openvmps/files/vpmsd.in 2012-01-14 17:56:40.000000000 +0900 +++ net-mgmt/openvmps/files/vpmsd.in 1970-01-01 09:00:00.000000000 +0900 @@ -1,28 +0,0 @@ -#!/bin/sh - -# Start or stop vmpsd -# $FreeBSD: ports/net-mgmt/openvmps/files/vpmsd.in,v 1.3 2012/01/14 08:56:40 dougb Exp $ - -# PROVIDE: vmpsd -# REQUIRE: DAEMON -# KEYWORD: shutdown - -# Define these vmpsd_* variables in one of these files: -# /etc/rc.conf -# /etc/rc.conf.local -# /etc/rc.conf.d/vmpsd -# -# DO NOT CHANGE THESE DEFAULT VALUES HERE -# -[ -z "$vmpsd_enable" ] && vmpsd_enable="NO" # Enable vmpsd -#vmpsd_program="%%PREFIX%%/sbin/vmpsd" # Location of vmpsd -[ -z "$vmpsd_flags" ] && vmpsd_flags="-f /usr/local/etc/vmps.db" # Flags to vmpsd program - -. /etc/rc.subr - -name="vmpsd" -rcvar=vmpsd_enable -command="%%PREFIX%%/sbin/${name}" - -load_rc_config $name -run_rc_command "$1" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2FF991065672 for ; Tue, 25 Sep 2012 18:20:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E2F938FC18 for ; Tue, 25 Sep 2012 18:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKCi5034388 for ; Tue, 25 Sep 2012 18:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKC7i034380; Tue, 25 Sep 2012 18:20:12 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:12 GMT Resent-Message-Id: <201209251820.q8PIKC7i034380@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0FF1E106566B for ; Tue, 25 Sep 2012 18:10:02 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id CDE1A8FC17 for ; Tue, 25 Sep 2012 18:10:01 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 27F494AC036 for ; Wed, 26 Sep 2012 03:09:59 +0900 (JST) Message-Id: <20120926022559.e7815e9ba695d2af080014d3@yahoo.com> Date: Wed, 26 Sep 2012 02:25:59 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172048: print/a2pdf: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:13 -0000 >Number: 172048 >Category: ports >Synopsis: print/a2pdf: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES >How-To-Repeat: >Fix: diff -urN /usr/ports/print/a2pdf/Makefile print/a2pdf/Makefile --- /usr/ports/print/a2pdf/Makefile 2012-09-21 19:07:33.000000000 +0900 +++ print/a2pdf/Makefile 2012-09-25 03:39:47.000000000 +0900 @@ -1,23 +1,17 @@ -# New ports collection makefile for: a2pdf -# Date created: 10 May 2007 -# Whom: Andrew Pantyukhin -# +# Created by: Andrew Pantyukhin # $FreeBSD: ports/print/a2pdf/Makefile,v 1.5 2012/09/21 10:07:33 bapt Exp $ -# PORTNAME= a2pdf PORTVERSION= 1.13 CATEGORIES= print -MASTER_SITES= http://perl.jonallen.info/attachment/26/ +#MASTER_SITES= http://perl.jonallen.info/attachment/26/ +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:JONALLEN MAINTAINER= ports@FreeBSD.org COMMENT= Text to PDF converter -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 - LICENSE= ART20 -LICENSE_FILE= ${WRKSRC}/artistic-2_0.txt BUILD_DEPENDS= p5-PDF-API2>=0:${PORTSDIR}/textproc/p5-PDF-API2 \ perltidy>=0:${PORTSDIR}/devel/perltidy \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8909F106564A for ; Tue, 25 Sep 2012 18:20:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 608D38FC1D for ; Tue, 25 Sep 2012 18:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKD2h034466 for ; Tue, 25 Sep 2012 18:20:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKDEs034457; Tue, 25 Sep 2012 18:20:13 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:13 GMT Resent-Message-Id: <201209251820.q8PIKDEs034457@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6071D1065673 for ; Tue, 25 Sep 2012 18:10:06 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 2A0B28FC08 for ; Tue, 25 Sep 2012 18:10:06 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 987E34AC036 for ; Wed, 26 Sep 2012 03:10:04 +0900 (JST) Message-Id: <20120926022603.b8b2a4e051b349990c721004@yahoo.com> Date: Wed, 26 Sep 2012 02:26:03 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172049: print/cpp2latex: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:13 -0000 >Number: 172049 >Category: ports >Synopsis: print/cpp2latex: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Add LICENSE >How-To-Repeat: >Fix: diff -urN /usr/ports/print/cpp2latex/Makefile print/cpp2latex/Makefile --- /usr/ports/print/cpp2latex/Makefile 2011-03-14 07:06:09.000000000 +0900 +++ print/cpp2latex/Makefile 2012-09-25 03:40:22.000000000 +0900 @@ -1,29 +1,32 @@ -# ex:ts=8 -# New ports collection makefile for: cpp2latex -# Date created: Jul 20, 2001 -# Whom: ijliao -# +# Created by: ijliao # $FreeBSD: ports/print/cpp2latex/Makefile,v 1.15 2011/03/13 22:06:09 bapt Exp $ -# PORTNAME= cpp2latex PORTVERSION= 2.3 CATEGORIES= print -MASTER_SITES= http://www.arnoldarts.de/downloads/cpp2latex/ +MASTER_SITES= http://www.arnoldarts.de/files/cpp2latex/ MAINTAINER= ports@FreeBSD.org COMMENT= Convert C++ source to a file you can input in an LaTeX-document +LICENSE= GPLv2 # (or later) + +OPTIONS_DEFINE= DOCS + GNU_CONFIGURE= yes -PLIST_FILES= bin/cpp2latex PORTDOCS= AUTHORS ChangeLog README TODO +PLIST_FILES= bin/cpp2latex + +.include post-patch: - @${REINPLACE_CMD} -e 's|-pedantic||g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e \ + '/-O2 /s|^|#| ; \ + /-pedantic /s|^|#|' ${WRKSRC}/configure post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for docfile in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} diff -urN /usr/ports/print/cpp2latex/pkg-descr print/cpp2latex/pkg-descr --- /usr/ports/print/cpp2latex/pkg-descr 2006-12-10 00:34:09.000000000 +0900 +++ print/cpp2latex/pkg-descr 2012-07-11 17:46:56.000000000 +0900 @@ -1,3 +1,3 @@ Convert C++-programmlistings to a file you can input in an LaTeX-document -WWW: http://www.arnoldarts.de/drupal/?q=Cpp2LaTeX +WWW: http://www.arnoldarts.de/cpp2latex >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 032B81065677 for ; Tue, 25 Sep 2012 18:20:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CF9898FC27 for ; Tue, 25 Sep 2012 18:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKDaV034526 for ; Tue, 25 Sep 2012 18:20:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKDm5034521; Tue, 25 Sep 2012 18:20:13 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:13 GMT Resent-Message-Id: <201209251820.q8PIKDm5034521@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2F5DF106567C for ; Tue, 25 Sep 2012 18:10:11 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id CB5068FC26 for ; Tue, 25 Sep 2012 18:10:10 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id 89D7523C031 for ; Wed, 26 Sep 2012 03:10:08 +0900 (JST) Message-Id: <20120926022607.f36fb47817870601b7d58806@yahoo.com> Date: Wed, 26 Sep 2012 02:26:07 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172050: print/pstotext: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:14 -0000 >Number: 172050 >Category: ports >Synopsis: print/pstotext: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line >How-To-Repeat: >Fix: diff -urN /usr/ports/print/pstotext/Makefile print/pstotext/Makefile --- /usr/ports/print/pstotext/Makefile 2012-09-21 19:07:33.000000000 +0900 +++ print/pstotext/Makefile 2012-09-25 03:40:28.000000000 +0900 @@ -1,21 +1,18 @@ -# New ports collection makefile for: pstotext -# Date created: December 6, 1999 -# Whom: Oliver Breuninger -# +# Created by: Oliver Breuninger # $FreeBSD: ports/print/pstotext/Makefile,v 1.21 2012/09/21 10:07:33 bapt Exp $ -# PORTNAME= pstotext PORTVERSION= 1.9 PORTREVISION= 3 CATEGORIES= print -MASTER_SITES= http://mirror.cs.wisc.edu/pub/mirrors/ghost/contrib/ +#MASTER_SITES= http://mirror.cs.wisc.edu/pub/mirrors/ghost/contrib/ +MASTER_SITES= ${MASTER_SITE_TEX_CTAN} +MASTER_SITE_SUBDIR= support/ghostscript/contrib MAINTAINER= ports@FreeBSD.org COMMENT= A PostScript to Text converter -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 +OPTIONS_DEFINE= DOCS USE_GHOSTSCRIPT_RUN= yes @@ -23,6 +20,8 @@ PLIST_FILES= bin/pstotext PORTDOCS= copyright +.include + post-patch: ${REINPLACE_CMD} -e 's;%%LOCALBASE%%;${LOCALBASE};g' ${WRKSRC}/main.c ${REINPLACE_CMD} -e 's;%%PREFIX%%;${PREFIX};g' ${WRKSRC}/pstotext.1 @@ -30,7 +29,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pstotext ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/pstotext.1 ${MAN1PREFIX}/man/man1 -.ifndef(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/pstotext.txt ${DOCSDIR}/copyright .endif diff -urN /usr/ports/print/pstotext/pkg-descr print/pstotext/pkg-descr --- /usr/ports/print/pstotext/pkg-descr 2008-09-03 04:06:45.000000000 +0900 +++ print/pstotext/pkg-descr 2012-07-01 05:51:53.000000000 +0900 @@ -1,23 +1,6 @@ -pstotext reads one or more PostScript or PDF files, and writes to standard -output a representation of the plain text that would be displayed if the -PostScript file were printed. As is described in the DETAILS section below, -this representation is only an approximation. Nevertheless, it is often -useful for information retrieval (e.g., running grep(1) or building a -full-text index) or to recover the text from a PostScript file whose source -you have lost. - -pstotext calls Ghostscript, and requires Aladdin Ghostscript version 3.51 or -newer. Ghostscript must be invokable on the current search path as gs. -Alternatively, you can use the -gs option to specify the command (pathname -and options) to run Ghostscript. For example, on Windows you might use -gs -"c:\gs\gswin32c.exe -Ic:\gs;c:\gs\fonts". - -pstotext reads and processes its command line from left to right, ignoring -the case of options. When it encounters a pathname, it opens the file and -expects to find a PostScript job or PDF document to process. The option - -means to read and process a PostScript job from standard input. If no - or -pathname arguments are encountered, pstotext reads a PostScript job from -standard input. (PDF documents require random access, hence cannot be read -from standard input.) You can use the -output option to specify an output file -(remember to invoke it before the input file); otherwise pstotext writes to -standard output. +A Unix program that extracts ASCII text from PostScript and PDF files. +pstotext uses Ghostscript, but does a more careful job with kerned +characters and nonstandard font encodings than Ghostscript's ps2ascii +utility. + +WWW: http://pages.cs.wisc.edu/~ghost/doc/pstotext.htm >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6FBB6106566B for ; Tue, 25 Sep 2012 18:20:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 48C358FC16 for ; Tue, 25 Sep 2012 18:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKEfT034579 for ; Tue, 25 Sep 2012 18:20:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKEtf034572; Tue, 25 Sep 2012 18:20:14 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:14 GMT Resent-Message-Id: <201209251820.q8PIKEtf034572@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2DC7B106568D for ; Tue, 25 Sep 2012 18:10:25 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 6F2098FC36 for ; Tue, 25 Sep 2012 18:10:24 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id 9AB882BC03B for ; Wed, 26 Sep 2012 03:10:13 +0900 (JST) Message-Id: <20120926022611.75df19b0bc584410d93c1cdf@yahoo.com> Date: Wed, 26 Sep 2012 02:26:11 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172051: science/gwyddion: Update to version 2.30 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:14 -0000 >Number: 172051 >Category: ports >Synopsis: science/gwyddion: Update to version 2.30 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 2.30 Remove file: files/patch-pixmap.c >How-To-Repeat: >Fix: diff -urN /usr/ports/science/gwyddion/Makefile science/gwyddion/Makefile --- /usr/ports/science/gwyddion/Makefile 2012-09-24 07:17:43.000000000 +0900 +++ science/gwyddion/Makefile 2012-09-25 01:21:06.000000000 +0900 @@ -2,67 +2,81 @@ # $FreeBSD: ports/science/gwyddion/Makefile,v 1.26 2012/09/23 22:17:43 tabthorpe Exp $ PORTNAME= gwyddion -PORTVERSION= 2.27 -PORTREVISION= 1 +PORTVERSION= 2.30 CATEGORIES= science graphics MASTER_SITES= SF -PATCH_SITES= ${MASTER_SITES} -PATCH_SITE_SUBDIR= ${MASTER_SITE_SUBDIR} - MAINTAINER= ports@FreeBSD.org COMMENT= A gtk2 based SPM data visualization and analysis tool -LIB_DEPENDS= gtkglext-x11-1.0.0:${PORTSDIR}/x11-toolkits/gtkglext \ +LICENSE= GPLv2 # (or later) + +LIB_DEPENDS= IlmImf:${PORTSDIR}/graphics/OpenEXR \ png15:${PORTSDIR}/graphics/png \ - fftw3:${PORTSDIR}/math/fftw3 + fftw3:${PORTSDIR}/math/fftw3 \ + gtkglext-x11-1.0.0:${PORTSDIR}/x11-toolkits/gtkglext +OPTIONS_DEFINE= PERL PYTHON RUBY UNIQUE +OPTIONS_DEFAULT=PERL PYTHON UNIQUE +UNIQUE_DESC= Remote controle backend support + +USE_XZ= yes +USE_GNOME= desktopfileutils gconf2 gnomehack gnomemimedata gtk20 libxml2 +USE_XORG= xmu +USE_GL= glu +USE_GETTEXT= yes +USE_GMAKE= yes GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-silent-rules --disable-gtk-doc \ + --disable-pygwy --without-gtksourceview \ + --without-kde4-thumbnailer +INSTALLS_ICONS= yes +USE_LDCONFIG= yes +MAKE_JOBS_SAFE= yes + CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ARGS= --disable-gtk-doc --with-html-dir=${PREFIX}/share/doc \ - --disable-pygwy --without-kde4-thumbnailer -MAKE_ARGS= pkgconfigdatadir=${PREFIX}/libdata/pkgconfig +GCONF_SCHEMAS= gwyddion-thumbnailer.schemas -USE_GNOME= desktopfileutils gnomemimedata gtk20 libxml2 -USE_GL= yes -USE_GMAKE= yes +MAN1= gwyddion.1 gwyddion-thumbnailer.1 + +.include + +.if ${PORT_OPTIONS:MPERL} USE_PERL5= yes -USE_PYTHON= yes -USE_RUBY= yes -USE_LDCONFIG= yes -INSTALLS_ICONS= yes +MAN3+= Gwyddion::dump.3pm +PLIST_SUB+= PERL="" +.else +CONFIGURE_ARGS+=--without-perl +PLIST_SUB+= PERL="@comment " +.endif -MAN1= gwyddion.1 gwyddion-thumbnailer.1 -MAN3= Gwyddion::dump.3pm +.if ${PORT_OPTIONS:MPYTHON} +USE_PYTHON= yes +PLIST_SUB+= PYTHON="" +.else +CONFIGURE_ARGS+=--without-python +PLIST_SUB+= PYTHON="@comment " +.endif -.if defined(WITHOUT_NLS) -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " +.if ${PORT_OPTIONS:MRUBY} +USE_RUBY= yes +PLIST_SUB+= RUBY="" .else -USE_GETTEXT= yes -PLIST_SUB+= NLS="" +CONFIGURE_ARGS+=--without-ruby +PLIST_SUB+= RUBY="@comment " .endif -.if !defined(WITHOUT_GCONF) || exists(${LOCALBASE}/bin/gconftool-2) -USE_GNOME+= gconf2 -GCONF_SCHEMAS= gwyddion-thumbnailer.schemas +.if ${PORT_OPTIONS:MUNIQUE} +LIB_DEPENDS+= unique-1.0:${PORTSDIR}/x11-toolkits/unique +.else +CONFIGURE_ARGS+=--without-unique .endif -# Fix shared library versioning and inhibit installation of .la files manually. -# Ports libtool + ltverhack fixes versions but it installs static versions of -# modules, so one would have to hack it too. -# -# Inhibit installation of excessive API documentation. Option -# --disable-gtk-doc disables only building, not installation of documentation -# present in the source tarball. post-patch: - ${REINPLACE_CMD} -e \ - '/freebsd-elf)/,/;;/ s|major="\.$$current"|major=.`expr $$current - $$age`|; \ - /freebsd-elf)/,/;;/ s|versuffix="\.$$current"|versuffix="$$major"|; \ - /# Install the pseudo-library/,/^$$/d' \ - ${WRKSRC}/ltmain.sh - @${REINPLACE_CMD} -e '/^SUBDIRS =/,/[^\]$$/d' ${WRKSRC}/devel-docs/Makefile.in + @${REINPLACE_CMD} -e \ + 's|thumbnailer \\|thumbnailer| ; \ + s|devel-docs$$||' ${WRKSRC}/Makefile.in .include diff -urN /usr/ports/science/gwyddion/distinfo science/gwyddion/distinfo --- /usr/ports/science/gwyddion/distinfo 2012-05-04 00:31:19.000000000 +0900 +++ science/gwyddion/distinfo 2012-09-24 23:10:14.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (gwyddion-2.27.tar.gz) = 46a28a4826385a7ccffd9d199461eaa7cbeb0bc95ad068051cbea43c2fa08ba6 -SIZE (gwyddion-2.27.tar.gz) = 4694295 +SHA256 (gwyddion-2.30.tar.xz) = 3778e56ec5f2d2333297c9aa2b850a1cb2b29b9e71421657223c44f30e05b140 +SIZE (gwyddion-2.30.tar.xz) = 2771208 diff -urN /usr/ports/science/gwyddion/files/patch-pixmap.c science/gwyddion/files/patch-pixmap.c --- /usr/ports/science/gwyddion/files/patch-pixmap.c 2012-06-01 14:23:56.000000000 +0900 +++ science/gwyddion/files/patch-pixmap.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,10 +0,0 @@ ---- modules/file/pixmap.c.orig 2012-01-09 08:43:04.000000000 +0100 -+++ modules/file/pixmap.c 2012-05-09 13:09:36.000000000 +0200 -@@ -40,6 +40,7 @@ - - #ifdef HAVE_PNG - #include -+#include - #endif - - #include diff -urN /usr/ports/science/gwyddion/pkg-plist science/gwyddion/pkg-plist --- /usr/ports/science/gwyddion/pkg-plist 2012-05-04 00:31:19.000000000 +0900 +++ science/gwyddion/pkg-plist 2012-09-25 01:16:13.000000000 +0900 @@ -140,227 +140,439 @@ include/gwyddion/libprocess/tip.h include/gwyddion/libprocess/triangulation.h lib/gwyddion/include/gwyconfig.h +lib/gwyddion/modules/file/aistfile.la +lib/gwyddion/modules/file/aistfile.so +lib/gwyddion/modules/file/alicona.la +lib/gwyddion/modules/file/alicona.so +lib/gwyddion/modules/file/ambfile.la +lib/gwyddion/modules/file/ambfile.so +lib/gwyddion/modules/file/anfatec.la +lib/gwyddion/modules/file/anfatec.so +lib/gwyddion/modules/file/apefile.la lib/gwyddion/modules/file/apefile.so +lib/gwyddion/modules/file/asciiexport.la lib/gwyddion/modules/file/asciiexport.so +lib/gwyddion/modules/file/assing-afm.la lib/gwyddion/modules/file/assing-afm.so +lib/gwyddion/modules/file/attocube.la +lib/gwyddion/modules/file/attocube.so +lib/gwyddion/modules/file/bcrfile.la lib/gwyddion/modules/file/bcrfile.so +lib/gwyddion/modules/file/burleigh.la lib/gwyddion/modules/file/burleigh.so +lib/gwyddion/modules/file/burleigh_bii.la lib/gwyddion/modules/file/burleigh_bii.so +lib/gwyddion/modules/file/burleigh_exp.la lib/gwyddion/modules/file/burleigh_exp.so +lib/gwyddion/modules/file/codevfile.la +lib/gwyddion/modules/file/codevfile.so +lib/gwyddion/modules/file/createc.la lib/gwyddion/modules/file/createc.so +lib/gwyddion/modules/file/csmfile.la +lib/gwyddion/modules/file/csmfile.so +lib/gwyddion/modules/file/dm3file.la +lib/gwyddion/modules/file/dm3file.so +lib/gwyddion/modules/file/dmefile.la lib/gwyddion/modules/file/dmefile.so +lib/gwyddion/modules/file/dumbfile.la +lib/gwyddion/modules/file/dumbfile.so +lib/gwyddion/modules/file/ecsfile.la lib/gwyddion/modules/file/ecsfile.so +lib/gwyddion/modules/file/ezdfile.la lib/gwyddion/modules/file/ezdfile.so +lib/gwyddion/modules/file/gdeffile.la +lib/gwyddion/modules/file/gdeffile.so +lib/gwyddion/modules/file/gsffile.la +lib/gwyddion/modules/file/gsffile.so +lib/gwyddion/modules/file/gwyfile.la lib/gwyddion/modules/file/gwyfile.so +lib/gwyddion/modules/file/hdf4file.la lib/gwyddion/modules/file/hdf4file.so +lib/gwyddion/modules/file/hdrimage.la +lib/gwyddion/modules/file/hdrimage.so +lib/gwyddion/modules/file/hitachi-afm.la lib/gwyddion/modules/file/hitachi-afm.so +lib/gwyddion/modules/file/hitachi-sem.la +lib/gwyddion/modules/file/hitachi-sem.so +lib/gwyddion/modules/file/igorfile.la +lib/gwyddion/modules/file/igorfile.so +lib/gwyddion/modules/file/intematix.la lib/gwyddion/modules/file/intematix.so +lib/gwyddion/modules/file/iso28600.la +lib/gwyddion/modules/file/iso28600.so +lib/gwyddion/modules/file/jeol.la lib/gwyddion/modules/file/jeol.so +lib/gwyddion/modules/file/jpkscan.la lib/gwyddion/modules/file/jpkscan.so +lib/gwyddion/modules/file/lextfile.la +lib/gwyddion/modules/file/lextfile.so +lib/gwyddion/modules/file/mapvue.la lib/gwyddion/modules/file/mapvue.so +lib/gwyddion/modules/file/metropro.la lib/gwyddion/modules/file/metropro.so +lib/gwyddion/modules/file/microprof.la lib/gwyddion/modules/file/microprof.so +lib/gwyddion/modules/file/miffile.la +lib/gwyddion/modules/file/miffile.so +lib/gwyddion/modules/file/mifile.la lib/gwyddion/modules/file/mifile.so +lib/gwyddion/modules/file/mulfile.la +lib/gwyddion/modules/file/mulfile.so +lib/gwyddion/modules/file/nanoeducator.la lib/gwyddion/modules/file/nanoeducator.so +lib/gwyddion/modules/file/nanonics.la +lib/gwyddion/modules/file/nanonics.so +lib/gwyddion/modules/file/nanonis.la lib/gwyddion/modules/file/nanonis.so +lib/gwyddion/modules/file/nanoscan.la +lib/gwyddion/modules/file/nanoscan.so +lib/gwyddion/modules/file/nanoscope-ii.la lib/gwyddion/modules/file/nanoscope-ii.so +lib/gwyddion/modules/file/nanoscope.la lib/gwyddion/modules/file/nanoscope.so +lib/gwyddion/modules/file/nanotop.la lib/gwyddion/modules/file/nanotop.so +lib/gwyddion/modules/file/netcdf.la lib/gwyddion/modules/file/netcdf.so +lib/gwyddion/modules/file/nrrdfile.la +lib/gwyddion/modules/file/nrrdfile.so +lib/gwyddion/modules/file/nt-mdt.la lib/gwyddion/modules/file/nt-mdt.so +lib/gwyddion/modules/file/oldmda.la +lib/gwyddion/modules/file/oldmda.so +lib/gwyddion/modules/file/ols.la lib/gwyddion/modules/file/ols.so +lib/gwyddion/modules/file/omicron.la lib/gwyddion/modules/file/omicron.so +lib/gwyddion/modules/file/omicronflat.la +lib/gwyddion/modules/file/omicronflat.so +lib/gwyddion/modules/file/omicronmatrix.la lib/gwyddion/modules/file/omicronmatrix.so +lib/gwyddion/modules/file/opdfile.la lib/gwyddion/modules/file/opdfile.so +lib/gwyddion/modules/file/pixmap.la lib/gwyddion/modules/file/pixmap.so +lib/gwyddion/modules/file/pltfile.la +lib/gwyddion/modules/file/pltfile.so +lib/gwyddion/modules/file/pnifile.la lib/gwyddion/modules/file/pnifile.so +lib/gwyddion/modules/file/psia.la lib/gwyddion/modules/file/psia.so +lib/gwyddion/modules/file/pt3file.la +lib/gwyddion/modules/file/pt3file.so +lib/gwyddion/modules/file/quesant.la lib/gwyddion/modules/file/quesant.so +lib/gwyddion/modules/file/rawfile.la lib/gwyddion/modules/file/rawfile.so +lib/gwyddion/modules/file/rawgraph.la lib/gwyddion/modules/file/rawgraph.so +lib/gwyddion/modules/file/rawxyz.la +lib/gwyddion/modules/file/rawxyz.so +lib/gwyddion/modules/file/rhk-sm3.la lib/gwyddion/modules/file/rhk-sm3.so +lib/gwyddion/modules/file/rhk-sm4.la +lib/gwyddion/modules/file/rhk-sm4.so +lib/gwyddion/modules/file/rhk-spm32.la lib/gwyddion/modules/file/rhk-spm32.so +lib/gwyddion/modules/file/robotics.la +lib/gwyddion/modules/file/robotics.so +lib/gwyddion/modules/file/sdfile.la lib/gwyddion/modules/file/sdfile.so +lib/gwyddion/modules/file/seiko.la lib/gwyddion/modules/file/seiko.so +lib/gwyddion/modules/file/sensofar.la lib/gwyddion/modules/file/sensofar.so +lib/gwyddion/modules/file/sensolytics.la lib/gwyddion/modules/file/sensolytics.so +lib/gwyddion/modules/file/shimadzu.la lib/gwyddion/modules/file/shimadzu.so +lib/gwyddion/modules/file/sicmfile.la lib/gwyddion/modules/file/sicmfile.so +lib/gwyddion/modules/file/sis.la lib/gwyddion/modules/file/sis.so +lib/gwyddion/modules/file/spip-asc.la lib/gwyddion/modules/file/spip-asc.so +lib/gwyddion/modules/file/spml.la lib/gwyddion/modules/file/spml.so +lib/gwyddion/modules/file/spmlab.la lib/gwyddion/modules/file/spmlab.so +lib/gwyddion/modules/file/spmlabf.la lib/gwyddion/modules/file/spmlabf.so +lib/gwyddion/modules/file/stmprg.la lib/gwyddion/modules/file/stmprg.so +lib/gwyddion/modules/file/stpfile.la lib/gwyddion/modules/file/stpfile.so +lib/gwyddion/modules/file/surffile.la lib/gwyddion/modules/file/surffile.so +lib/gwyddion/modules/file/tiaser.la +lib/gwyddion/modules/file/tiaser.so +lib/gwyddion/modules/file/unisoku.la lib/gwyddion/modules/file/unisoku.so +lib/gwyddion/modules/file/wipfile.la +lib/gwyddion/modules/file/wipfile.so +lib/gwyddion/modules/file/witec-asc.la +lib/gwyddion/modules/file/witec-asc.so +lib/gwyddion/modules/file/witfile.la lib/gwyddion/modules/file/witfile.so +lib/gwyddion/modules/file/wsffile.la +lib/gwyddion/modules/file/wsffile.so +lib/gwyddion/modules/file/wsxmfile.la lib/gwyddion/modules/file/wsxmfile.so -lib/gwyddion/modules/file/csmfile.so -lib/gwyddion/modules/file/rawxyz.so -lib/gwyddion/modules/file/anfatec.so -lib/gwyddion/modules/file/attocube.so -lib/gwyddion/modules/file/hitachi-sem.so -lib/gwyddion/modules/file/hdrimage.so -lib/gwyddion/modules/file/iso28600.so -lib/gwyddion/modules/file/igorfile.so -lib/gwyddion/modules/file/mulfile.so -lib/gwyddion/modules/file/nanoscan.so -lib/gwyddion/modules/file/aistfile.so -lib/gwyddion/modules/file/ambfile.so -lib/gwyddion/modules/file/witec-asc.so -lib/gwyddion/modules/file/pt3file.so -lib/gwyddion/modules/file/nanonics.so -lib/gwyddion/modules/file/nrrdfile.so -lib/gwyddion/modules/file/lextfile.so -lib/gwyddion/modules/file/oldmda.so -lib/gwyddion/modules/file/robotics.so -lib/gwyddion/modules/file/gdeffile.so +lib/gwyddion/modules/file/zeiss.la lib/gwyddion/modules/file/zeiss.so -lib/gwyddion/modules/file/gsffile.so -lib/gwyddion/modules/file/dumbfile.so -lib/gwyddion/modules/file/codevfile.so -lib/gwyddion/modules/file/omicronflat.so -lib/gwyddion/modules/file/pltfile.so -lib/gwyddion/modules/file/wipfile.so -lib/gwyddion/modules/file/rhk-sm4.so -lib/gwyddion/modules/file/wsffile.so -lib/gwyddion/modules/file/miffile.so -lib/gwyddion/modules/file/alicona.so +lib/gwyddion/modules/graph/graph_cd.la lib/gwyddion/modules/graph/graph_cd.so +lib/gwyddion/modules/graph/graph_cut.la lib/gwyddion/modules/graph/graph_cut.so +lib/gwyddion/modules/graph/graph_dos_spectrum.la lib/gwyddion/modules/graph/graph_dos_spectrum.so +lib/gwyddion/modules/graph/graph_export_ascii.la lib/gwyddion/modules/graph/graph_export_ascii.so +lib/gwyddion/modules/graph/graph_export_bitmap.la lib/gwyddion/modules/graph/graph_export_bitmap.so +lib/gwyddion/modules/graph/graph_export_vector.la lib/gwyddion/modules/graph/graph_export_vector.so +lib/gwyddion/modules/graph/graph_fdfit.la lib/gwyddion/modules/graph/graph_fdfit.so +lib/gwyddion/modules/graph/graph_filter.la +lib/gwyddion/modules/graph/graph_filter.so +lib/gwyddion/modules/graph/graph_fit.la lib/gwyddion/modules/graph/graph_fit.so +lib/gwyddion/modules/graph/graph_level.la lib/gwyddion/modules/graph/graph_level.so +lib/gwyddion/modules/layer/axis.la lib/gwyddion/modules/layer/axis.so +lib/gwyddion/modules/layer/ellipse.la lib/gwyddion/modules/layer/ellipse.so +lib/gwyddion/modules/layer/line.la lib/gwyddion/modules/layer/line.so +lib/gwyddion/modules/layer/point.la lib/gwyddion/modules/layer/point.so +lib/gwyddion/modules/layer/rectangle.la lib/gwyddion/modules/layer/rectangle.so +lib/gwyddion/modules/plugin-proxy.la lib/gwyddion/modules/plugin-proxy.so +lib/gwyddion/modules/process/acf2d.la lib/gwyddion/modules/process/acf2d.so +lib/gwyddion/modules/process/angle_dist.la lib/gwyddion/modules/process/angle_dist.so +lib/gwyddion/modules/process/arithmetic.la lib/gwyddion/modules/process/arithmetic.so +lib/gwyddion/modules/process/averaging.la +lib/gwyddion/modules/process/averaging.so +lib/gwyddion/modules/process/basicops.la lib/gwyddion/modules/process/basicops.so +lib/gwyddion/modules/process/calcoefs_load.la +lib/gwyddion/modules/process/calcoefs_load.so +lib/gwyddion/modules/process/calcoefs_new.la +lib/gwyddion/modules/process/calcoefs_new.so +lib/gwyddion/modules/process/calcoefs_simple.la +lib/gwyddion/modules/process/calcoefs_simple.so +lib/gwyddion/modules/process/calcoefs_view.la +lib/gwyddion/modules/process/calcoefs_view.so +lib/gwyddion/modules/process/calibrate.la lib/gwyddion/modules/process/calibrate.so +lib/gwyddion/modules/process/convolution_filter.la lib/gwyddion/modules/process/convolution_filter.so +lib/gwyddion/modules/process/crosscor.la lib/gwyddion/modules/process/crosscor.so +lib/gwyddion/modules/process/curvature.la +lib/gwyddion/modules/process/curvature.so +lib/gwyddion/modules/process/cwt.la lib/gwyddion/modules/process/cwt.so +lib/gwyddion/modules/process/deposit_synth.la +lib/gwyddion/modules/process/deposit_synth.so +lib/gwyddion/modules/process/drift.la lib/gwyddion/modules/process/drift.so +lib/gwyddion/modules/process/dwt.la lib/gwyddion/modules/process/dwt.so +lib/gwyddion/modules/process/dwtanisotropy.la lib/gwyddion/modules/process/dwtanisotropy.so +lib/gwyddion/modules/process/edge.la lib/gwyddion/modules/process/edge.so +lib/gwyddion/modules/process/facet-level.la lib/gwyddion/modules/process/facet-level.so +lib/gwyddion/modules/process/facet_analysis.la lib/gwyddion/modules/process/facet_analysis.so +lib/gwyddion/modules/process/fft.la lib/gwyddion/modules/process/fft.so +lib/gwyddion/modules/process/fft_filter_1d.la lib/gwyddion/modules/process/fft_filter_1d.so +lib/gwyddion/modules/process/fft_filter_2d.la lib/gwyddion/modules/process/fft_filter_2d.so +lib/gwyddion/modules/process/fft_profile.la lib/gwyddion/modules/process/fft_profile.so +lib/gwyddion/modules/process/fft_synth.la +lib/gwyddion/modules/process/fft_synth.so +lib/gwyddion/modules/process/fit_2d.la lib/gwyddion/modules/process/fit_2d.so +lib/gwyddion/modules/process/fraccor.la lib/gwyddion/modules/process/fraccor.so +lib/gwyddion/modules/process/fractal.la lib/gwyddion/modules/process/fractal.so +lib/gwyddion/modules/process/gradient.la lib/gwyddion/modules/process/gradient.so +lib/gwyddion/modules/process/grain_cross.la lib/gwyddion/modules/process/grain_cross.so +lib/gwyddion/modules/process/grain_dist.la lib/gwyddion/modules/process/grain_dist.so +lib/gwyddion/modules/process/grain_edge.la +lib/gwyddion/modules/process/grain_edge.so +lib/gwyddion/modules/process/grain_mark.la lib/gwyddion/modules/process/grain_mark.so +lib/gwyddion/modules/process/grain_rem_threshold.la lib/gwyddion/modules/process/grain_rem_threshold.so +lib/gwyddion/modules/process/grain_wshed.la lib/gwyddion/modules/process/grain_wshed.so +lib/gwyddion/modules/process/hough.la lib/gwyddion/modules/process/hough.so +lib/gwyddion/modules/process/immerse.la lib/gwyddion/modules/process/immerse.so +lib/gwyddion/modules/process/indent_analyze.la lib/gwyddion/modules/process/indent_analyze.so +lib/gwyddion/modules/process/laplace.la lib/gwyddion/modules/process/laplace.so +lib/gwyddion/modules/process/latsim.la +lib/gwyddion/modules/process/latsim.so +lib/gwyddion/modules/process/level.la lib/gwyddion/modules/process/level.so +lib/gwyddion/modules/process/level_grains.la +lib/gwyddion/modules/process/level_grains.so +lib/gwyddion/modules/process/linecorrect.la lib/gwyddion/modules/process/linecorrect.so +lib/gwyddion/modules/process/lno_synth.la +lib/gwyddion/modules/process/lno_synth.so +lib/gwyddion/modules/process/local_contrast.la lib/gwyddion/modules/process/local_contrast.so +lib/gwyddion/modules/process/mark_with.la lib/gwyddion/modules/process/mark_with.so +lib/gwyddion/modules/process/maskcor.la lib/gwyddion/modules/process/maskcor.so +lib/gwyddion/modules/process/maskops.la lib/gwyddion/modules/process/maskops.so +lib/gwyddion/modules/process/mcrop.la +lib/gwyddion/modules/process/mcrop.so +lib/gwyddion/modules/process/median-bg.la lib/gwyddion/modules/process/median-bg.so +lib/gwyddion/modules/process/merge.la lib/gwyddion/modules/process/merge.so +lib/gwyddion/modules/process/neural.la +lib/gwyddion/modules/process/neural.so +lib/gwyddion/modules/process/noise_synth.la +lib/gwyddion/modules/process/noise_synth.so +lib/gwyddion/modules/process/obj_synth.la +lib/gwyddion/modules/process/obj_synth.so +lib/gwyddion/modules/process/outliers.la lib/gwyddion/modules/process/outliers.so +lib/gwyddion/modules/process/pat_synth.la +lib/gwyddion/modules/process/pat_synth.so +lib/gwyddion/modules/process/pid.la +lib/gwyddion/modules/process/pid.so +lib/gwyddion/modules/process/polydistort.la lib/gwyddion/modules/process/polydistort.so +lib/gwyddion/modules/process/polylevel.la lib/gwyddion/modules/process/polylevel.so +lib/gwyddion/modules/process/presentationops.la lib/gwyddion/modules/process/presentationops.so +lib/gwyddion/modules/process/rotate.la lib/gwyddion/modules/process/rotate.so +lib/gwyddion/modules/process/scale.la lib/gwyddion/modules/process/scale.so +lib/gwyddion/modules/process/scars.la lib/gwyddion/modules/process/scars.so +lib/gwyddion/modules/process/shade.la lib/gwyddion/modules/process/shade.so +lib/gwyddion/modules/process/slope_dist.la lib/gwyddion/modules/process/slope_dist.so +lib/gwyddion/modules/process/sphere-revolve.la lib/gwyddion/modules/process/sphere-revolve.so +lib/gwyddion/modules/process/threshold.la +lib/gwyddion/modules/process/threshold.so +lib/gwyddion/modules/process/tilt.la lib/gwyddion/modules/process/tilt.so +lib/gwyddion/modules/process/tip_blind.la lib/gwyddion/modules/process/tip_blind.so +lib/gwyddion/modules/process/tip_model.la lib/gwyddion/modules/process/tip_model.so +lib/gwyddion/modules/process/tipops.la lib/gwyddion/modules/process/tipops.so +lib/gwyddion/modules/process/unrotate.la lib/gwyddion/modules/process/unrotate.so -lib/gwyddion/modules/process/lno_synth.so -lib/gwyddion/modules/process/grain_edge.so -lib/gwyddion/modules/process/level_grains.so -lib/gwyddion/modules/process/pat_synth.so -lib/gwyddion/modules/process/fft_synth.so -lib/gwyddion/modules/process/obj_synth.so -lib/gwyddion/modules/process/curvature.so -lib/gwyddion/modules/process/calcoefs_new.so -lib/gwyddion/modules/process/mcrop.so -lib/gwyddion/modules/process/noise_synth.so -lib/gwyddion/modules/process/deposit_synth.so -lib/gwyddion/modules/process/calcoefs_load.so -lib/gwyddion/modules/process/calcoefs_view.so -lib/gwyddion/modules/process/averaging.so -lib/gwyddion/modules/process/calcoefs_simple.so -lib/gwyddion/modules/process/threshold.so +lib/gwyddion/modules/process/xydenoise.la +lib/gwyddion/modules/process/xydenoise.so +%%RUBY%%lib/gwyddion/ruby/gwyddion/dump.rb +lib/gwyddion/modules/tool/crop.la lib/gwyddion/modules/tool/crop.so +lib/gwyddion/modules/tool/distance.la lib/gwyddion/modules/tool/distance.so +lib/gwyddion/modules/tool/filter.la lib/gwyddion/modules/tool/filter.so +lib/gwyddion/modules/tool/grainmeasure.la lib/gwyddion/modules/tool/grainmeasure.so +lib/gwyddion/modules/tool/grainremover.la lib/gwyddion/modules/tool/grainremover.so +lib/gwyddion/modules/tool/icolorange.la lib/gwyddion/modules/tool/icolorange.so +lib/gwyddion/modules/tool/level3.la lib/gwyddion/modules/tool/level3.so +lib/gwyddion/modules/tool/linestats.la lib/gwyddion/modules/tool/linestats.so +lib/gwyddion/modules/tool/maskedit.la lib/gwyddion/modules/tool/maskedit.so +lib/gwyddion/modules/tool/pathlevel.la lib/gwyddion/modules/tool/pathlevel.so +lib/gwyddion/modules/tool/polynom.la lib/gwyddion/modules/tool/polynom.so +lib/gwyddion/modules/tool/profile.la lib/gwyddion/modules/tool/profile.so +lib/gwyddion/modules/tool/readvalue.la lib/gwyddion/modules/tool/readvalue.so +lib/gwyddion/modules/tool/roughness.la lib/gwyddion/modules/tool/roughness.so +lib/gwyddion/modules/tool/selectionmanager.la lib/gwyddion/modules/tool/selectionmanager.so +lib/gwyddion/modules/tool/sfunctions.la lib/gwyddion/modules/tool/sfunctions.so +lib/gwyddion/modules/tool/spectro.la lib/gwyddion/modules/tool/spectro.so +lib/gwyddion/modules/tool/spotremove.la lib/gwyddion/modules/tool/spotremove.so +lib/gwyddion/modules/tool/stats.la lib/gwyddion/modules/tool/stats.so -lib/gwyddion/perl/Gwyddion/dump.pm -lib/gwyddion/python/Gwyddion/__init__.py -lib/gwyddion/python/Gwyddion/__init__.pyc -lib/gwyddion/python/Gwyddion/__init__.pyo -lib/gwyddion/python/Gwyddion/dump.py -lib/gwyddion/python/Gwyddion/dump.pyc -lib/gwyddion/python/Gwyddion/dump.pyo -lib/gwyddion/ruby/gwyddion/dump.rb +%%PERL%%lib/gwyddion/perl/Gwyddion/dump.pm +%%PYTHON%%lib/gwyddion/python/Gwyddion/__init__.py +%%PYTHON%%lib/gwyddion/python/Gwyddion/__init__.pyc +%%PYTHON%%lib/gwyddion/python/Gwyddion/__init__.pyo +%%PYTHON%%lib/gwyddion/python/Gwyddion/dump.py +%%PYTHON%%lib/gwyddion/python/Gwyddion/dump.pyc +%%PYTHON%%lib/gwyddion/python/Gwyddion/dump.pyo +lib/libgwyapp2.la lib/libgwyapp2.so -lib/libgwyapp2.so.0 +lib/libgwyapp2.so.7 +lib/libgwyddion2.la lib/libgwyddion2.so -lib/libgwyddion2.so.0 +lib/libgwyddion2.so.10 +lib/libgwydgets2.la lib/libgwydgets2.so -lib/libgwydgets2.so.0 +lib/libgwydgets2.so.12 +lib/libgwydraw2.la lib/libgwydraw2.so -lib/libgwydraw2.so.0 +lib/libgwydraw2.so.1 +lib/libgwymodule2.la lib/libgwymodule2.so -lib/libgwymodule2.so.0 +lib/libgwymodule2.so.5 +lib/libgwyprocess2.la lib/libgwyprocess2.so -lib/libgwyprocess2.so.0 +lib/libgwyprocess2.so.15 libdata/pkgconfig/gwyddion.pc libexec/gwyddion/plugins/file/dump -libexec/gwyddion/plugins/process/invert_narray.rb -libexec/gwyddion/plugins/process/invert_perl.pl -libexec/gwyddion/plugins/process/invert_perl.pl.rgi -libexec/gwyddion/plugins/process/invert_python.py -libexec/gwyddion/plugins/process/invert_python.py.rgi -libexec/gwyddion/plugins/process/invert_ruby.rb -libexec/gwyddion/plugins/process/invert_ruby.rb.rgi +%%PERL%%libexec/gwyddion/plugins/process/invert_perl.pl +%%PERL%%libexec/gwyddion/plugins/process/invert_perl.pl.rgi +%%PYTHON%%libexec/gwyddion/plugins/process/invert_python.py +%%PYTHON%%libexec/gwyddion/plugins/process/invert_python.py.rgi +%%RUBY%%libexec/gwyddion/plugins/process/invert_narray.rb +%%RUBY%%libexec/gwyddion/plugins/process/invert_ruby.rb +%%RUBY%%libexec/gwyddion/plugins/process/invert_ruby.rb.rgi libexec/gwyddion/plugins/process/yellow.sh libexec/gwyddion/plugins/process/yellow.sh.rgi share/applications/gwyddion.desktop @@ -516,10 +728,14 @@ %%DATADIR%%/pixmaps/gwy_mask_editor-24.png %%DATADIR%%/pixmaps/gwy_mask_exclude-24.png %%DATADIR%%/pixmaps/gwy_mask_exclude_circle-24.png +%%DATADIR%%/pixmaps/gwy_mask_fill_draw-24.png +%%DATADIR%%/pixmaps/gwy_mask_fill_erase-24.png %%DATADIR%%/pixmaps/gwy_mask_grow-24.png %%DATADIR%%/pixmaps/gwy_mask_intersect-24.png %%DATADIR%%/pixmaps/gwy_mask_invert-24.png %%DATADIR%%/pixmaps/gwy_mask_line-24.png +%%DATADIR%%/pixmaps/gwy_mask_paint_draw-24.png +%%DATADIR%%/pixmaps/gwy_mask_paint_erase-24.png %%DATADIR%%/pixmaps/gwy_mask_rect_exclusive-24.png %%DATADIR%%/pixmaps/gwy_mask_rect_inclusive-24.png %%DATADIR%%/pixmaps/gwy_mask_remove-24.png @@ -532,6 +748,7 @@ %%DATADIR%%/pixmaps/gwy_path_level-24.png %%DATADIR%%/pixmaps/gwy_pointer_measure-24.png %%DATADIR%%/pixmaps/gwy_polynom-24.png +%%DATADIR%%/pixmaps/gwy_polynom_level-24.png %%DATADIR%%/pixmaps/gwy_profile-24.png %%DATADIR%%/pixmaps/gwy_remove_under_mask-24.png %%DATADIR%%/pixmaps/gwy_rotate-24.png @@ -557,101 +774,17 @@ %%DATADIR%%/pixmaps/gwy_zoom_out-24.png %%DATADIR%%/pixmaps/gwyddion.ico %%DATADIR%%/pixmaps/splash.png -%%DATADIR%%/pixmaps/gwy_mask_fill_draw-24.png -%%DATADIR%%/pixmaps/gwy_mask_paint_erase-24.png -%%DATADIR%%/pixmaps/gwy_mask_fill_erase-24.png -%%DATADIR%%/pixmaps/gwy_mask_paint_draw-24.png %%DATADIR%%/ui/toolbox.xml share/icons/hicolor/48x48/apps/gwyddion.png -%%NLS%%share/locale/cs/LC_MESSAGES/gwyddion.mo -%%NLS%%share/locale/de/LC_MESSAGES/gwyddion.mo -%%NLS%%share/locale/es/LC_MESSAGES/gwyddion.mo -%%NLS%%share/locale/fr/LC_MESSAGES/gwyddion.mo -%%NLS%%share/locale/it/LC_MESSAGES/gwyddion.mo -%%NLS%%share/locale/ru/LC_MESSAGES/gwyddion.mo -share/mime/application/x-ape-spm.xml -share/mime/application/x-bcr-spm.xml -share/mime/application/x-bcrf-spm.xml -share/mime/application/x-burleigh-bii-spm.xml -share/mime/application/x-burleigh-export-spm.xml -share/mime/application/x-burleigh-spm.xml -share/mime/application/x-createc-spm.xml -share/mime/application/x-dme-spm.xml -share/mime/application/x-ecs-spm.xml -share/mime/application/x-gwyddion-spm.xml -share/mime/application/x-hitachi-spm.xml -share/mime/application/x-intematix-spm.xml -share/mime/application/x-jeol-spm.xml -share/mime/application/x-jpk-image-scan.xml -share/mime/application/x-mapvue.xml -share/mime/application/x-mi-spm.xml -share/mime/application/x-micromap-spm.xml -share/mime/application/x-microprof.xml -share/mime/application/x-nanoeducator-spm.xml -share/mime/application/x-nanonis-spm.xml -share/mime/application/x-nanoscope-ii-spm.xml -share/mime/application/x-nanoscope-iii-spm.xml -share/mime/application/x-nanosurf-spm.xml -share/mime/application/x-nanotop-spm.xml -share/mime/application/x-nt-mdt-spm.xml -share/mime/application/x-omicron-matrix-spm.xml -share/mime/application/x-omicron-spm.xml -share/mime/application/x-pni-spm.xml -share/mime/application/x-quesant-afm.xml -share/mime/application/x-rhk-sm2-spm.xml -share/mime/application/x-rhk-sm3-spm.xml -share/mime/application/x-sdf-spm.xml -share/mime/application/x-seiko-spm.xml -share/mime/application/x-sensofar-spm.xml -share/mime/application/x-sensolytics-spm.xml -share/mime/application/x-shimadzu-spm.xml -share/mime/application/x-sicm-spm.xml -share/mime/application/x-sis-spm.xml -share/mime/application/x-spip-asc.xml -share/mime/application/x-spml-spm.xml -share/mime/application/x-spmlab-float-spm.xml -share/mime/application/x-spmlab-spm.xml -share/mime/application/x-stmprg-spm.xml -share/mime/application/x-stp-spm.xml -share/mime/application/x-surf-spm.xml -share/mime/application/x-unisoku-spm.xml -share/mime/application/x-witec-spm.xml -share/mime/application/x-wsxm-spm.xml -share/mime/application/x-wyko-asc.xml -share/mime/application/x-wyko-opd.xml -share/mime/application/x-zygo-spm.xml +share/locale/cs/LC_MESSAGES/gwyddion.mo +share/locale/de/LC_MESSAGES/gwyddion.mo +share/locale/es/LC_MESSAGES/gwyddion.mo +share/locale/fr/LC_MESSAGES/gwyddion.mo +share/locale/it/LC_MESSAGES/gwyddion.mo +share/locale/ru/LC_MESSAGES/gwyddion.mo share/mime/packages/gwyddion.xml -share/mime/application/x-anfatec-spm.xml -share/mime/application/x-rhk-sm4-spm.xml -share/mime/application/x-gsf-spm.xml -share/mime/application/x-witec-ascii-export.xml -share/mime/application/x-nanoscan-spm.xml -share/mime/application/x-oldmda-spm.xml -share/mime/application/x-microprof-txt.xml -share/mime/application/x-robotics-spm.xml -share/mime/application/x-olympus-lext-4000.xml -share/mime/application/x-symphotime-pt3.xml -share/mime/application/x-alicona-imaging-al3d.xml -share/mime/application/x-nanonics-spm.xml -share/mime/application/x-aist-nt-spm.xml -share/mime/application/x-hitachi-sem.xml -share/mime/application/x-attocube-asc.xml -share/mime/application/x-gwyddion-dump-spm.xml -share/mime/application/x-nearly-raw-raster-data.xml -share/mime/application/x-gdef-spm.xml -share/mime/application/x-nanoobserver-spm.xml -share/mime/application/x-wsf-spm.xml -share/mime/application/x-nanosurf-plt-spm.xml -share/mime/application/x-omicron-flat.xml -share/mime/application/x-mif-spm.xml -share/mime/application/x-ambios-amb.xml -share/mime/application/x-iso28600-spm.xml -share/mime/application/x-igor-binary-wave.xml -share/mime/application/x-wipfile-spm.xml -share/mime/application/x-olympus-lext-3000.xml -share/mime/application/x-mul-spm.xml -share/mime/application/x-benyuan-csm-spm.xml -share/mime/application/x-code-v-int.xml +share/thumbnailers/gwyddion.thumbnailer +@dirrmtry share/thumbnailers @dirrm %%DATADIR%%/ui @dirrm %%DATADIR%%/pixmaps @dirrm %%DATADIR%%/gradients @@ -662,12 +795,12 @@ @dirrm libexec/gwyddion/plugins/file @dirrm libexec/gwyddion/plugins @dirrm libexec/gwyddion -@dirrm lib/gwyddion/ruby/gwyddion -@dirrm lib/gwyddion/ruby -@dirrm lib/gwyddion/python/Gwyddion -@dirrm lib/gwyddion/python -@dirrm lib/gwyddion/perl/Gwyddion -@dirrm lib/gwyddion/perl +%%RUBY%%@dirrm lib/gwyddion/ruby/gwyddion +%%RUBY%%@dirrm lib/gwyddion/ruby +%%PYTHON%%@dirrm lib/gwyddion/python/Gwyddion +%%PYTHON%%@dirrm lib/gwyddion/python +%%PERL%%@dirrm lib/gwyddion/perl/Gwyddion +%%PERL%%@dirrm lib/gwyddion/perl @dirrm lib/gwyddion/modules/tool @dirrm lib/gwyddion/modules/process @dirrm lib/gwyddion/modules/layer @@ -683,3 +816,5 @@ @dirrm include/gwyddion/libdraw @dirrm include/gwyddion/app @dirrm include/gwyddion +@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime > /dev/null || /usr/bin/true +@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime > /dev/null || /usr/bin/true >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D92331065670 for ; Tue, 25 Sep 2012 18:20:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B34748FC19 for ; Tue, 25 Sep 2012 18:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKE7h034643 for ; Tue, 25 Sep 2012 18:20:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKEhS034634; Tue, 25 Sep 2012 18:20:14 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:14 GMT Resent-Message-Id: <201209251820.q8PIKEhS034634@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 906AB1065691 for ; Tue, 25 Sep 2012 18:10:32 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id EA8378FC16 for ; Tue, 25 Sep 2012 18:10:31 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 4178950038 for ; Wed, 26 Sep 2012 03:10:26 +0900 (JST) Message-Id: <20120926022614.757ec0f4ec6afc5d8dccbb1a@yahoo.com> Date: Wed, 26 Sep 2012 02:26:14 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172052: science/hdf: Update to version 4.2.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:15 -0000 >Number: 172052 >Category: ports >Synopsis: science/hdf: Update to version 4.2.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 4.2.8 New file: files/patch-configure files/patch-hdf__src__Makefile.in files/patch-mfhdf__libsrc__Makefile.in Remove file: files/patch-compile-flags files/patch-lib-versions files/patch-shared-fortran >How-To-Repeat: >Fix: diff -urN /usr/ports/science/hdf/Makefile science/hdf/Makefile --- /usr/ports/science/hdf/Makefile 2012-09-08 16:49:05.000000000 +0900 +++ science/hdf/Makefile 2012-09-25 03:40:45.000000000 +0900 @@ -1,16 +1,12 @@ -# New ports collection makefile for: HDF_lib -# Date created: 17 November 1996 -# Whom: mi -# +# Created by: mi # $FreeBSD: ports/science/hdf/Makefile,v 1.52 2012/09/08 07:49:05 linimon Exp $ -# PORTNAME= hdf -DISTVERSION= 4.2.7-patch1 +PORTVERSION= 4.2.8 PORTEPOCH= 1 CATEGORIES= science archivers graphics -MASTER_SITES= ftp://ftp.hdfgroup.org/HDF/HDF_Current/src/ \ - ftp://ftp.hdfgroup.org/HDF/prev-releases/HDF${PORTVERSION:R}/src/ +MASTER_SITES= http://www.hdfgroup.org/ftp/HDF/releases/%SUBDIR%/ +MASTER_SITE_SUBDIR= ${PORTNAME:U}${PORTVERSION}/src MAINTAINER= ports@FreeBSD.org COMMENT= Hierarchical Data Format library (from NCSA) @@ -22,31 +18,15 @@ USE_BZIP2= yes USE_FORTRAN= yes -MAKE_JOBS_SAFE= yes -# XXX Our libtool breaks, when building this: -# XXX can't link libraries with fortran -#USE_AUTOTOOLS= libtool - GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--with-jpeg="${LOCALBASE}" \ - --with-szlib="${LOCALBASE}"\ +CONFIGURE_ARGS= --with-jpeg="${LOCALBASE}" \ + --with-szlib="${LOCALBASE}" \ --enable-shared +USE_LDCONFIG= yes +MAKE_JOBS_SAFE= yes MAN1= hdf.1 hdfunpac.1 ncdump.1 ncgen.1 MAN3= gr_chunk.3 -MANCOMPRESSED= no - -USE_LDCONFIG= yes - -check regression-test test: build - ${MAKE} ${_MAKE_JOBS} -C ${WRKSRC}/hdf/test check - -post-install: - # Install man-pages omitted by HDF's own install process - ${INSTALL_MAN} ${WRKSRC}/man/hdfunpac.1 ${MAN1PREFIX}/man/man1/ - ${INSTALL_MAN} ${WRKSRC}/man/gr_chunk.3 ${MAN1PREFIX}/man/man3/ - # Removing useless .la files from ${PREFIX}/lib - ${RM} -f ${PREFIX}/lib/libdf.la ${PREFIX}/lib/libmfhdf.la .include @@ -54,4 +34,15 @@ BROKEN= Does not compile on powerpc .endif +post-patch: + @${REINPLACE_CMD} -e \ + '/PROD_/s|=.*|=""|' ${WRKSRC}/config/freebsd + +post-install: + ${INSTALL_MAN} ${WRKSRC}/man/hdfunpac.1 ${MAN1PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/man/gr_chunk.3 ${MAN3PREFIX}/man/man3 + +check regression-test test: build + ${MAKE} -C ${WRKSRC}/hdf/test check + .include diff -urN /usr/ports/science/hdf/distinfo science/hdf/distinfo --- /usr/ports/science/hdf/distinfo 2012-04-22 03:07:21.000000000 +0900 +++ science/hdf/distinfo 2012-08-14 20:46:59.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (hdf-4.2.7-patch1.tar.bz2) = 3a7b5ba0ac47e5283bee3ec365e8027e88937cd1632d001ceec33af80947d1bd -SIZE (hdf-4.2.7-patch1.tar.bz2) = 3027309 +SHA256 (hdf-4.2.8.tar.bz2) = e8a94ae2c838007ccdd55bb3cd9684adba3ded367c09803ffc84a2704f83c00f +SIZE (hdf-4.2.8.tar.bz2) = 3027253 diff -urN /usr/ports/science/hdf/files/patch-compile-flags science/hdf/files/patch-compile-flags --- /usr/ports/science/hdf/files/patch-compile-flags 2012-04-22 03:07:21.000000000 +0900 +++ science/hdf/files/patch-compile-flags 1970-01-01 09:00:00.000000000 +0900 @@ -1,41 +0,0 @@ -Don't append optimization flags -- rely on what the building -machine has set. ---- config/freebsd 2012-03-17 23:44:05.000000000 -0400 -+++ config/freebsd 2012-04-21 10:30:43.000000000 -0400 -@@ -102,5 +102,5 @@ - DEBUG_CFLAGS="-g -ansi -Wall -pedantic " - DEBUG_CPPFLAGS= -- PROD_CFLAGS="-ansi -Wall -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wmissing-prototypes -Wnested-externs -pedantic -O2" -+ PROD_CFLAGS="-ansi -Wall -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wmissing-prototypes -Wnested-externs -pedantic" - PROD_CPPFLAGS= - PROFILE_CFLAGS="-pg" -@@ -112,5 +112,4 @@ - DEBUG_CFLAGS="-g" - DEBUG_CPPFLAGS= -- PROD_CFLAGS="-O" - PROD_CPPFLAGS= - PROFILE_CFLAGS="-pg" -@@ -123,5 +122,4 @@ - FFLAGS="$FFLAGS" - DEBUG_FFLAGS="-g" -- PROD_FFLAGS="-O" - PROFILE_FFLAGS="-pg" - ;; -@@ -130,5 +128,4 @@ - FFLAGS="$FFLAGS" - DEBUG_FFLAGS="-g" -- PROD_FFLAGS="-O" - PROFILE_FFLAGS="-pg" - ;; -@@ -139,5 +136,4 @@ - CXXFLAGS="$CXXFLAGS" - DEBUG_CXXFLAGS="-g -fverbose-asm" -- PROD_CXXFLAGS="-O3 -fomit-frame-pointer" - PROFILE_CXXFLAGS="-pg" - ;; -@@ -146,5 +142,4 @@ - CXXFLAGS="$CXXFLAGS -ansi" - DEBUG_CXXFLAGS="-g" -- PROD_CXXFLAGS="-O" - PROFILE_CXXFLAGS="-pg" - ;; diff -urN /usr/ports/science/hdf/files/patch-configure science/hdf/files/patch-configure --- /usr/ports/science/hdf/files/patch-configure 1970-01-01 09:00:00.000000000 +0900 +++ science/hdf/files/patch-configure 2012-08-14 21:09:24.000000000 +0900 @@ -0,0 +1,19 @@ +--- configure.orig 2012-08-07 13:11:45.000000000 +0900 ++++ configure 2012-08-14 21:08:48.000000000 +0900 +@@ -5837,11 +5837,11 @@ + enable_shared="no" + fi + +-if test "X${enable_shared}" = "Xyes"; then +- if test "X${BUILD_FORTRAN}" = "Xyes"; then +- as_fn_error $? "Cannot build shared fortran libraries. Please configure with --disable-fortran flag." "$LINENO" 5 +- fi +-fi ++#if test "X${enable_shared}" = "Xyes"; then ++# if test "X${BUILD_FORTRAN}" = "Xyes"; then ++# as_fn_error $? "Cannot build shared fortran libraries. Please configure with --disable-fortran flag." "$LINENO" 5 ++# fi ++#fi + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 diff -urN /usr/ports/science/hdf/files/patch-hdf__src__Makefile.in science/hdf/files/patch-hdf__src__Makefile.in --- /usr/ports/science/hdf/files/patch-hdf__src__Makefile.in 1970-01-01 09:00:00.000000000 +0900 +++ science/hdf/files/patch-hdf__src__Makefile.in 2012-08-14 21:09:46.000000000 +0900 @@ -0,0 +1,20 @@ +--- hdf/src/Makefile.in.orig 2012-08-07 13:11:36.000000000 +0900 ++++ hdf/src/Makefile.in 2012-08-14 21:08:53.000000000 +0900 +@@ -187,7 +187,7 @@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + LD = @LD@ +-LDFLAGS = @LDFLAGS@ ++LDFLAGS = @LDFLAGS@ -version-number 2 + LEX = @LEX@ + LIBOBJS = @LIBOBJS@ + LIBS = @LIBS@ +@@ -290,8 +290,6 @@ + CP = cp + H4CC = $(bindir)/h4cc + H4FC = $(bindir)/h4fc +-@HDF_BUILD_XDR_TRUE@XDR_ADD = -R$(abs_top_builddir)/mfhdf/xdr/.libs +-@HDF_BUILD_SHARED_TRUE@AM_LDFLAGS = -R$(abs_top_builddir)/mfhdf/libsrc/.libs -R$(abs_top_builddir)/hdf/src/.libs $(XDR_ADD) + ACLOCAL_AMFLAGS = "-I m4" + lib_LTLIBRARIES = libdf.la + FSOURCES = df24ff.f dfanf.c dfanff.f dff.c dfff.f dfpf.c dfpff.f dfr8f.c \ diff -urN /usr/ports/science/hdf/files/patch-lib-versions science/hdf/files/patch-lib-versions --- /usr/ports/science/hdf/files/patch-lib-versions 2012-04-22 03:07:21.000000000 +0900 +++ science/hdf/files/patch-lib-versions 1970-01-01 09:00:00.000000000 +0900 @@ -1,31 +0,0 @@ ---- hdf/src/Makefile.in 2012-03-17 23:45:49.000000000 -0400 -+++ hdf/src/Makefile.in 2012-04-21 13:33:36.000000000 -0400 -@@ -188,5 +188,5 @@ - INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ - LD = @LD@ --LDFLAGS = @LDFLAGS@ -+LDFLAGS = @LDFLAGS@ -version-number 2 - LEX = @LEX@ - LIBOBJS = @LIBOBJS@ -@@ -291,6 +291,4 @@ - H4CC = $(bindir)/h4cc - H4FC = $(bindir)/h4fc --@HDF_BUILD_XDR_TRUE@XDR_ADD = -R$(abs_top_builddir)/mfhdf/xdr/.libs --@HDF_BUILD_SHARED_TRUE@AM_LDFLAGS = -R$(abs_top_builddir)/mfhdf/libsrc/.libs -R$(abs_top_builddir)/hdf/src/.libs $(XDR_ADD) - ACLOCAL_AMFLAGS = "-I m4" - lib_LTLIBRARIES = libdf.la -+++ mfhdf/libsrc/Makefile.in 2012-04-21 13:33:36.000000000 -0400 -@@ -188,5 +188,5 @@ - INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ - LD = @LD@ --LDFLAGS = @LDFLAGS@ -+LDFLAGS = @LDFLAGS@ -version-number 3 - LEX = @LEX@ - LIBOBJS = @LIBOBJS@ -@@ -291,6 +291,4 @@ - H4CC = $(bindir)/h4cc - H4FC = $(bindir)/h4fc --@HDF_BUILD_XDR_TRUE@XDR_ADD = -R$(abs_top_builddir)/mfhdf/xdr/.libs --@HDF_BUILD_SHARED_TRUE@AM_LDFLAGS = -R$(abs_top_builddir)/mfhdf/libsrc/.libs -R$(abs_top_builddir)/hdf/src/.libs $(XDR_ADD) - ACLOCAL_AMFLAGS = "-I m4" - lib_LTLIBRARIES = libdf.la diff -urN /usr/ports/science/hdf/files/patch-mfhdf__libsrc__Makefile.in science/hdf/files/patch-mfhdf__libsrc__Makefile.in --- /usr/ports/science/hdf/files/patch-mfhdf__libsrc__Makefile.in 1970-01-01 09:00:00.000000000 +0900 +++ science/hdf/files/patch-mfhdf__libsrc__Makefile.in 2012-08-14 21:10:12.000000000 +0900 @@ -0,0 +1,20 @@ +--- mfhdf/libsrc/Makefile.in.orig 2012-08-07 13:11:12.000000000 +0900 ++++ mfhdf/libsrc/Makefile.in 2012-08-14 21:08:58.000000000 +0900 +@@ -161,7 +161,7 @@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + LD = @LD@ +-LDFLAGS = @LDFLAGS@ ++LDFLAGS = @LDFLAGS@ -version-number 3 + LEX = @LEX@ + LIBOBJS = @LIBOBJS@ + LIBS = @LIBS@ +@@ -264,8 +264,6 @@ + CP = cp + H4CC = $(bindir)/h4cc + H4FC = $(bindir)/h4fc +-@HDF_BUILD_XDR_TRUE@XDR_ADD = -R$(abs_top_builddir)/mfhdf/xdr/.libs +-@HDF_BUILD_SHARED_TRUE@AM_LDFLAGS = -R$(abs_top_builddir)/mfhdf/libsrc/.libs -R$(abs_top_builddir)/hdf/src/.libs $(XDR_ADD) + ACLOCAL_AMFLAGS = "-I m4" + INCLUDES = -I$(top_srcdir)/hdf/src \ + -I$(top_srcdir)/mfhdf/libsrc diff -urN /usr/ports/science/hdf/files/patch-shared-fortran science/hdf/files/patch-shared-fortran --- /usr/ports/science/hdf/files/patch-shared-fortran 2012-04-22 03:07:21.000000000 +0900 +++ science/hdf/files/patch-shared-fortran 1970-01-01 09:00:00.000000000 +0900 @@ -1,31 +0,0 @@ ---- configure.ac 2012-03-17 23:45:46.000000000 -0400 -+++ configure.ac 2012-04-21 10:01:41.000000000 -0400 -@@ -199,6 +199,5 @@ - dnl ------------------------------------------------------------------------- - dnl Build static libraries by default. Furthermore, fortran shared libraries --dnl are unsupported. Disallow a user from enabling both shared libraries and --dnl fortran. -+dnl are unsupported. - if test "X${enable_shared}" != "Xyes"; then - enable_shared="no" -@@ -207,5 +206,5 @@ - if test "X${enable_shared}" = "Xyes"; then - if test "X${BUILD_FORTRAN}" = "Xyes"; then -- AC_MSG_ERROR([Cannot build shared fortran libraries. Please configure with --disable-fortran flag.]) -+ AC_MSG_WARN([Fortran shared libraries aren't supported.]) - fi - fi ---- configure 2012-03-17 23:45:51.000000000 -0400 -+++ configure 2012-04-21 09:51:08.000000000 -0400 -@@ -5838,11 +5838,4 @@ - fi - --if test "X${enable_shared}" = "Xyes"; then -- if test "X${BUILD_FORTRAN}" = "Xyes"; then -- as_fn_error $? "Cannot build shared fortran libraries. Please configure with --disable-fortran flag." "$LINENO" 5 -- fi --fi -- -- - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 - $as_echo_n "checking whether ln -s works... " >&6; } diff -urN /usr/ports/science/hdf/pkg-plist science/hdf/pkg-plist --- /usr/ports/science/hdf/pkg-plist 2012-04-24 06:09:10.000000000 +0900 +++ science/hdf/pkg-plist 2012-08-14 21:13:53.000000000 +0900 @@ -67,13 +67,13 @@ include/htags.h include/linklist.h include/local_nc.h +include/mfan.h include/mfdatainfo.h -include/mffunc.inc include/mffunc.f90 -include/mfhdfi.h -include/mfan.h +include/mffunc.inc include/mfgr.h include/mfhdf.h +include/mfhdfi.h include/mstdio.h include/netcdf.f90 include/netcdf.h @@ -82,9 +82,11 @@ include/vattr.h include/vg.h lib/libdf.a +lib/libdf.la lib/libdf.so lib/libdf.so.2 lib/libhdf4.settings lib/libmfhdf.a +lib/libmfhdf.la lib/libmfhdf.so lib/libmfhdf.so.3 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5457E106568A for ; Tue, 25 Sep 2012 18:20:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F9048FC1A for ; Tue, 25 Sep 2012 18:20:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKFFc034699 for ; Tue, 25 Sep 2012 18:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKFv7034692; Tue, 25 Sep 2012 18:20:15 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:15 GMT Resent-Message-Id: <201209251820.q8PIKFv7034692@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 03EFE10656A8 for ; Tue, 25 Sep 2012 18:10:37 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id A34E18FC28 for ; Tue, 25 Sep 2012 18:10:36 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 640B34AC036 for ; Wed, 26 Sep 2012 03:10:34 +0900 (JST) Message-Id: <20120926022618.424fbeadb6be9170e9593250@yahoo.com> Date: Wed, 26 Sep 2012 02:26:18 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172053: security/authforce: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:15 -0000 >Number: 172053 >Category: ports >Synopsis: security/authforce: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Add LICENSE - Add MAKE_JOBS_SAFE - Support PLIST_FILES Remove file: files/patch-ad pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/security/authforce/Makefile security/authforce/Makefile --- /usr/ports/security/authforce/Makefile 2012-09-21 19:07:33.000000000 +0900 +++ security/authforce/Makefile 2012-09-25 03:40:54.000000000 +0900 @@ -1,38 +1,64 @@ -# Ports collection makefile for: authforce -# Date created: 08.05.2002 -# Whom: ache -# +# Created by: ache # $FreeBSD: ports/security/authforce/Makefile,v 1.22 2012/09/21 10:07:33 bapt Exp $ -# PORTNAME= authforce PORTVERSION= 0.9.9 CATEGORIES= security www -MASTER_SITES= http://www.divineinvasion.net/authforce/ +MASTER_SITES= http://cloud.github.com/downloads/zlandau/authforce/ MAINTAINER= ports@FreeBSD.org COMMENT= HTTP authentication brute forcer -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 +LICENSE= GPLv2 -LIB_DEPENDS= curl.6:${PORTSDIR}/ftp/curl +OPTIONS_DEFINE= CURL NLS +OPTIONS_DEFAULT=CURL -CONFIGURE_ENV= LIBS="-lintl" -LDFLAGS+= -L${LOCALBASE}/lib -CPPFLAGS+= -I${LOCALBASE}/include -GNU_CONFIGURE= yes USE_BZIP2= yes -USE_GETTEXT= yes +USE_NCURSES= yes +USE_READLINE= yes +GNU_CONFIGURE= yes +MAKE_JOBS_SAFE= yes + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -INFO= authforce -MAN1= authforce.1 MANCOMPRESSED= yes +MAN1= authforce.1 +INFO= authforce +PLIST_FILES= bin/authforce \ + %%DATADIR%%/blank.lst \ + %%DATADIR%%/dummy.lst \ + %%DATADIR%%/password.lst \ + %%DATADIR%%/username.lst \ + %%DATADIR%%/userpass.lst +PLIST_DIRS= %%DATADIR%% + +.include + +.if ${PORT_OPTIONS:MCURL} +LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl +.else +CONFIGURE_ARGS+=--without-curl +.endif + +.if ${PORT_OPTIONS:MNLS} +USE_GETTEXT= yes +PLIST_FILES+= share/locale/nl/LC_MESSAGES/authforce.mo +.else +CONFIGURE_ARGS+=--disable-nls +.endif post-patch: - @${REINPLACE_CMD} -e '/#include /d' ${WRKSRC}/src/methods.c ${WRKSRC}/src/misc.c - @${REINPLACE_CMD} -e 's|#include |#include |' ${WRKSRC}/src/extract.c - @${REINPLACE_CMD} -e '/^pwlistsdir = / s|/data$$||' ${WRKSRC}/data/Makefile.in - @${REINPLACE_CMD} -e '//d' ${WRKSRC}/src/http.c + @${REINPLACE_CMD} -e \ + '/^pwlistsdir = / s|/data$$||' ${WRKSRC}/data/Makefile.in + @${REINPLACE_CMD} -e \ + '/^mangdir = / s|/mang$$|/man1|' ${WRKSRC}/doc/Makefile.in + @${REINPLACE_CMD} -e \ + '//d' ${WRKSRC}/src/http.c +.for i in extract.c methods.c misc.c + @${REINPLACE_CMD} -e \ + 's|||' ${WRKSRC}/src/${i} +.endfor .include diff -urN /usr/ports/security/authforce/files/patch-ad security/authforce/files/patch-ad --- /usr/ports/security/authforce/files/patch-ad 2011-09-02 01:54:01.000000000 +0900 +++ security/authforce/files/patch-ad 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- doc/Makefile.in.orig 2007-05-14 06:54:38.000000000 +0800 -+++ doc/Makefile.in 2011-08-30 16:43:21.864890601 +0800 -@@ -68,7 +68,7 @@ - AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS) - DVIPS = dvips - am__installdirs = "$(DESTDIR)$(infodir)" "$(DESTDIR)$(mangdir)" --mangdir = $(mandir)/mang -+mangdir = $(mandir)/man1 - NROFF = nroff - MANS = $(man_MANS) - DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) diff -urN /usr/ports/security/authforce/pkg-descr security/authforce/pkg-descr --- /usr/ports/security/authforce/pkg-descr 2011-09-02 01:54:01.000000000 +0900 +++ security/authforce/pkg-descr 2012-09-22 04:44:11.000000000 +0900 @@ -5,4 +5,4 @@ of your site and to prove the insecurity of HTTP authentication based on the fact that users just don't pick good passwords. -WWW: http://www.divineinvasion.net/authforce/ +WWW: https://github.com/zlandau/authforce diff -urN /usr/ports/security/authforce/pkg-plist security/authforce/pkg-plist --- /usr/ports/security/authforce/pkg-plist 2011-09-02 01:54:01.000000000 +0900 +++ security/authforce/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,8 +0,0 @@ -bin/authforce -%%DATADIR%%/blank.lst -%%DATADIR%%/dummy.lst -%%DATADIR%%/password.lst -%%DATADIR%%/username.lst -%%DATADIR%%/userpass.lst -share/locale/nl/LC_MESSAGES/authforce.mo -@dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8E691065670 for ; Tue, 25 Sep 2012 18:20:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A4E228FC24 for ; Tue, 25 Sep 2012 18:20:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKFBo034764 for ; Tue, 25 Sep 2012 18:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKFLD034758; Tue, 25 Sep 2012 18:20:15 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:15 GMT Resent-Message-Id: <201209251820.q8PIKFLD034758@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EEF6B1065674 for ; Tue, 25 Sep 2012 18:10:40 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id C049C8FC14 for ; Tue, 25 Sep 2012 18:10:40 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 2205650038 for ; Wed, 26 Sep 2012 03:10:38 +0900 (JST) Message-Id: <20120926022621.80f80ddb35f59d87a0c9a59b@yahoo.com> Date: Wed, 26 Sep 2012 02:26:21 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172054: security/find_zlib: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:17 -0000 >Number: 172054 >Category: ports >Synopsis: security/find_zlib: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:15 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line >How-To-Repeat: >Fix: diff -urN /usr/ports/security/find-zlib/Makefile security/find-zlib/Makefile --- /usr/ports/security/find-zlib/Makefile 2009-07-12 00:52:02.000000000 +0900 +++ security/find-zlib/Makefile 2012-09-25 03:41:03.000000000 +0900 @@ -1,14 +1,10 @@ -# New ports collection makefile for: find-zlib -# Date created: 2002-05-08 -# Whom: trevor -# +# Created by: trevor # $FreeBSD: ports/security/find-zlib/Makefile,v 1.10 2009/07/11 15:52:02 miwi Exp $ -# PORTNAME= find_zlib PORTVERSION= 1.9 CATEGORIES= security -MASTER_SITES= http://www.gzip.org/zlib/ +MASTER_SITES= http://zlib.net/ DISTNAME= find-zlib EXTRACT_SUFX= EXTRACT_ONLY= @@ -16,10 +12,14 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Scans files for statically linked zlib (libz) code -PLIST_FILES= bin/find-zlib +LICENSE= GPLv2 + NO_BUILD= none + USE_PERL5_RUN= yes +PLIST_FILES= bin/find-zlib + do-install: ${INSTALL_SCRIPT} ${DISTDIR}/${DISTNAME} ${PREFIX}/bin diff -urN /usr/ports/security/find-zlib/pkg-descr security/find-zlib/pkg-descr --- /usr/ports/security/find-zlib/pkg-descr 2002-05-09 11:34:50.000000000 +0900 +++ security/find-zlib/pkg-descr 2012-07-12 01:48:38.000000000 +0900 @@ -2,4 +2,4 @@ code. Programs which contain such code may be affected by the double free() security bug. -WWW: http://www.gzip.org/zlib/ +WWW: http://zlib.net/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24DFA1065674 for ; Tue, 25 Sep 2012 18:20:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1DC038FC08 for ; Tue, 25 Sep 2012 18:20:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKF66034826 for ; Tue, 25 Sep 2012 18:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKFHN034816; Tue, 25 Sep 2012 18:20:15 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:15 GMT Resent-Message-Id: <201209251820.q8PIKFHN034816@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6BDA3106566C for ; Tue, 25 Sep 2012 18:10:45 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 3C1DB8FC16 for ; Tue, 25 Sep 2012 18:10:45 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 94CB650036 for ; Wed, 26 Sep 2012 03:10:43 +0900 (JST) Message-Id: <20120926022624.c694763b8ca4c8625b69dee9@yahoo.com> Date: Wed, 26 Sep 2012 02:26:24 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172055: security/identify: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:18 -0000 >Number: 172055 >Category: ports >Synopsis: security/identify: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:15 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES >How-To-Repeat: >Fix: diff -urN /usr/ports/security/identify/Makefile security/identify/Makefile --- /usr/ports/security/identify/Makefile 2012-09-21 19:07:33.000000000 +0900 +++ security/identify/Makefile 2012-09-25 03:41:10.000000000 +0900 @@ -1,30 +1,28 @@ -# New ports collection makefile for: identify -# Date created: 13 March 1999 -# Whom: nsayer@quack.kfu.com -# +# Created by: nsayer@quack.kfu.com # $FreeBSD: ports/security/identify/Makefile,v 1.18 2012/09/21 10:07:33 bapt Exp $ -# PORTNAME= identify PORTVERSION= 0.7 CATEGORIES= security -MASTER_SITES= http://www.scn.rain.com/pub/security/authent/ +MASTER_SITES= http://ftp.nluug.nl/ftp/pub/pub/security/coast/daemons/pidentd/tools/ \ + http://www.scn.rain.com/pub/security/authent/ MAINTAINER= ports@FreeBSD.org COMMENT= Client side ident protocol daemon wrapper -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 - BUILD_DEPENDS= ${LOCALBASE}/lib/libident.a:${PORTSDIR}/security/libident +OPTIONS_DEFINE= DOCS + PORTDOCS= README PLIST_FILES= libexec/identify +.include + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/identify ${PREFIX}/libexec -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81AEA1065676 for ; Tue, 25 Sep 2012 18:20:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BC7148FC15 for ; Tue, 25 Sep 2012 18:20:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKGwA034916 for ; Tue, 25 Sep 2012 18:20:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKGI1034911; Tue, 25 Sep 2012 18:20:16 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:16 GMT Resent-Message-Id: <201209251820.q8PIKGI1034911@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E43F1065672 for ; Tue, 25 Sep 2012 18:10:52 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 03A6C8FC1F for ; Tue, 25 Sep 2012 18:10:52 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id DF0D64AC036 for ; Wed, 26 Sep 2012 03:10:47 +0900 (JST) Message-Id: <20120926022628.3da4a578e4e1719e8a352367@yahoo.com> Date: Wed, 26 Sep 2012 02:26:28 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172056: security/libprelude: Update to version 1.0.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:18 -0000 >Number: 172056 >Category: ports >Synopsis: security/libprelude: Update to version 1.0.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:16 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.0.1 New file: files/patch-src__include__prelude-plugin.h >How-To-Repeat: >Fix: diff -urN /usr/ports/security/libprelude/Makefile security/libprelude/Makefile --- /usr/ports/security/libprelude/Makefile 2012-08-22 03:28:42.000000000 +0900 +++ security/libprelude/Makefile 2012-09-25 03:41:19.000000000 +0900 @@ -1,54 +1,52 @@ -# New ports collection makefile for: libprelude -# Date created: Sun Aug 4 19:31:17 CEST 2002 -# Whom: Clement Laforet +# Created by: Clement Laforet # $FreeBSD: ports/security/libprelude/Makefile,v 1.67 2012/08/21 18:28:42 beat Exp $ PORTNAME= libprelude -PORTVERSION= 0.9.24.1 -PORTREVISION= 1 +PORTVERSION= 1.0.1 CATEGORIES= security -MASTER_SITES= http://www.prelude-technologies.com/download/releases/${PORTNAME}/ +MASTER_SITES= https://www.prelude-ids.org/attachments/download/241/ MAINTAINER= ports@FreeBSD.org COMMENT= Framework library for Prelude NIDS -LIB_DEPENDS= gnutls.47:${PORTSDIR}/security/gnutls \ - gcrypt.18:${PORTSDIR}/security/libgcrypt +LIB_DEPENDS= gnutls:${PORTSDIR}/security/gnutls \ + gcrypt:${PORTSDIR}/security/libgcrypt -OPTIONS= PERL "Include Perl bindings" off \ - PYTHON "Include Python bindings" off - -BROKEN= does not configure +OPTIONS_DEFINE= PERL PYTHON DOCS +USE_GNOME= gnomehack USE_GMAKE= yes -GNU_CONFIGURE= yes -USE_LDCONFIG= yes +USE_AUTOTOOLS= libtool libltdl CONFIGURE_ARGS= --localstatedir=/var \ --enable-gtk-doc=no \ --with-html-dir=${PREFIX}/share/doc +USE_LDCONFIG= yes +MAKE_JOBS_SAFE= yes + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib MAN1= prelude-admin.1 PORTDOCS= * .include -.if defined(WITH_PERL) -USE_PERL5= yes -.include "${PORTSDIR}/Mk/bsd.perl.mk" -CONFIGURE_ARGS+= --with-perl -PLIST_SUB+= WITH_PERL="" +.if ${PORT_OPTIONS:MPERL} +USE_PERL5= yes +CONFIGURE_ARGS+=--with-perl +PLIST_SUB+= PERL="" .else -CONFIGURE_ARGS+= --without-perl -PLIST_SUB+= WITH_PERL="@comment " +CONFIGURE_ARGS+=--without-perl +PLIST_SUB+= PERL="@comment " .endif -.if defined(WITH_PYTHON) +.if ${PORT_OPTIONS:MPYTHON} USE_PYTHON= yes -CONFIGURE_ARGS+= --with-python -PLIST_SUB+= WITH_PYTHON="" PYTHON_VER=${PYTHON_VER} +CONFIGURE_ARGS+=--with-python +PLIST_SUB+= PYTHON="" PYTHON_VER="${PYTHON_VER}" VERSION="${PORTVERSION}" .else -CONFIGURE_ARGS+= --without-python -PLIST_SUB+= WITH_PYTHON="@comment " +CONFIGURE_ARGS+=--without-python +PLIST_SUB+= PYTHON="@comment " .endif .include @@ -58,38 +56,24 @@ .endif post-patch: - @${REINPLACE_CMD} -e 's|libdir)/pkgconfig|prefix)/libdata/pkgconfig|' ${WRKSRC}/src/Makefile.in + @${REINPLACE_CMD} -e \ + '/^install-data-am:/s|install-data-local||' ${WRKSRC}/docs/api/Makefile.in post-install: -.if !defined(NOPORTDOCS) - ${INSTALL} -d ${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/docs/manpages/*.1 ${MAN1PREFIX}/man/man1 +.for f in client.conf global.conf idmef-client.conf tls.conf + ${INSTALL_DATA} ${WRKSRC}/${f} \ + ${PREFIX}/etc/prelude/default/${f}-dist +.if !exists(${PREFIX}/etc/prelude/default/${f}) + (cd ${PREFIX}/etc/prelude/default && ${CP} -p ${f}-dist ${f}) +.endif +.endfor +.if ${PORT_OPTIONS:MPERL} + -@${RM} -f ${PREFIX}/lib/perl5/${PERL_VERSION}/${PERL_ARCH}/perllocal.pod +.endif +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/api/html/* ${DOCSDIR} .endif - @${INSTALL_MAN} ${WRKSRC}/docs/manpages/*.1 ${MAN1PREFIX}/man/man1/ - @${INSTALL_DATA} ${WRKSRC}/client.conf \ - ${PREFIX}/etc/prelude/default/client.conf-dist - @${INSTALL_DATA} ${WRKSRC}/global.conf \ - ${PREFIX}/etc/prelude/default/global.conf-dist - @${INSTALL_DATA} ${WRKSRC}/tls.conf \ - ${PREFIX}/etc/prelude/default/tls.conf-dist - @${INSTALL_DATA} ${WRKSRC}/idmef-client.conf \ - ${PREFIX}/etc/prelude/default/idmef-client.conf-dist - - @if [ ! -f ${PREFIX}/etc/prelude/default/client.conf ]; then \ - ${CP} -p ${PREFIX}/etc/prelude/default/client.conf-dist \ - ${PREFIX}/etc/prelude/default/client.conf ; \ - fi - @if [ ! -f ${PREFIX}/etc/prelude/default/global.conf ]; then \ - ${CP} -p ${PREFIX}/etc/prelude/default/global.conf-dist \ - ${PREFIX}/etc/prelude/default/global.conf ; \ - fi - @if [ ! -f ${PREFIX}/etc/prelude/default/idmef-client.conf ]; then \ - ${CP} -p ${PREFIX}/etc/prelude/default/idmef-client.conf-dist \ - ${PREFIX}/etc/prelude/default/idmef-client.conf ; \ - fi - @if [ ! -f ${PREFIX}/etc/prelude/default/tls.conf ]; then \ - ${CP} -p ${PREFIX}/etc/prelude/default/tls.conf-dist \ - ${PREFIX}/etc/prelude/default/tls.conf ; \ - fi .include diff -urN /usr/ports/security/libprelude/distinfo security/libprelude/distinfo --- /usr/ports/security/libprelude/distinfo 2011-07-03 23:02:55.000000000 +0900 +++ security/libprelude/distinfo 2012-09-11 15:27:27.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (libprelude-0.9.24.1.tar.gz) = 877383ba5e51709aad22a6547dc94b2453fef92a4923661b6fd98a2869875daf -SIZE (libprelude-0.9.24.1.tar.gz) = 2582719 +SHA256 (libprelude-1.0.1.tar.gz) = 852d981e7d23e49ec25a96a7f54c19a7ee72cd786a0d02c43a27e3e770d5cb6b +SIZE (libprelude-1.0.1.tar.gz) = 2791973 diff -urN /usr/ports/security/libprelude/files/patch-src__include__prelude-plugin.h security/libprelude/files/patch-src__include__prelude-plugin.h --- /usr/ports/security/libprelude/files/patch-src__include__prelude-plugin.h 1970-01-01 09:00:00.000000000 +0900 +++ security/libprelude/files/patch-src__include__prelude-plugin.h 2012-09-11 15:47:35.000000000 +0900 @@ -0,0 +1,13 @@ +--- src/include/prelude-plugin.h.orig 2012-06-02 00:12:30.000000000 +0900 ++++ src/include/prelude-plugin.h 2012-09-11 15:46:33.000000000 +0900 +@@ -61,9 +61,9 @@ + */ + #ifdef PRELUDE_APPLICATION_USE_LIBTOOL2 + # define lt_preloaded_symbols lt__PROGRAM__LTX_preloaded_symbols +-#endif + + extern const void *lt_preloaded_symbols[]; ++#endif + + #define PRELUDE_PLUGIN_SET_PRELOADED_SYMBOLS() \ + prelude_plugin_set_preloaded_symbols(lt_preloaded_symbols) diff -urN /usr/ports/security/libprelude/pkg-plist security/libprelude/pkg-plist --- /usr/ports/security/libprelude/pkg-plist 2009-09-18 21:02:00.000000000 +0900 +++ security/libprelude/pkg-plist 2012-09-11 16:20:09.000000000 +0900 @@ -16,9 +16,12 @@ @exec if [ ! -f %D/etc/prelude/default/tls.conf ] ; then cp -p %D/%F %B/tls.conf; fi include/libprelude/common.h include/libprelude/daemonize.h +include/libprelude/idmef.h +include/libprelude/idmef.hxx include/libprelude/idmef-additional-data.h include/libprelude/idmef-class.h include/libprelude/idmef-criteria.h +include/libprelude/idmef-criteria.hxx include/libprelude/idmef-criterion-value.h include/libprelude/idmef-data.h include/libprelude/idmef-message-helpers.h @@ -27,19 +30,29 @@ include/libprelude/idmef-message-read.h include/libprelude/idmef-message-write.h include/libprelude/idmef-path.h +include/libprelude/idmef-path.hxx include/libprelude/idmef-time.h +include/libprelude/idmef-time.hxx include/libprelude/idmef-tree-data.h include/libprelude/idmef-tree-wrap.h -include/libprelude/idmef-value-type.h include/libprelude/idmef-value.h -include/libprelude/idmef.h +include/libprelude/idmef-value.hxx +include/libprelude/idmef-value-type.h +include/libprelude/prelude.h +include/libprelude/prelude.hxx include/libprelude/prelude-async.h -include/libprelude/prelude-client-profile.h include/libprelude/prelude-client.h +include/libprelude/prelude-client.hxx +include/libprelude/prelude-client-easy.hxx +include/libprelude/prelude-client-profile.h +include/libprelude/prelude-client-profile.hxx include/libprelude/prelude-config.h -include/libprelude/prelude-connection-pool.h include/libprelude/prelude-connection.h +include/libprelude/prelude-connection.hxx +include/libprelude/prelude-connection-pool.h +include/libprelude/prelude-connection-pool.hxx include/libprelude/prelude-error.h +include/libprelude/prelude-error.hxx include/libprelude/prelude-extract.h include/libprelude/prelude-failover.h include/libprelude/prelude-hash.h @@ -49,6 +62,7 @@ include/libprelude/prelude-linked-object.h include/libprelude/prelude-list.h include/libprelude/prelude-log.h +include/libprelude/prelude-log.hxx include/libprelude/prelude-message-id.h include/libprelude/prelude-msg.h include/libprelude/prelude-msgbuf.h @@ -58,21 +72,33 @@ include/libprelude/prelude-string.h include/libprelude/prelude-thread.h include/libprelude/prelude-timer.h -include/libprelude/prelude.h +lib/libprelude.a lib/libprelude.la lib/libprelude.so -lib/libprelude.so.20 -%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/Prelude.pm -%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Prelude/.packlist -%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Prelude/Prelude.bs -%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Prelude/Prelude.so -%%WITH_PERL%%@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Prelude -%%WITH_PYTHON%%%%PYTHON_SITELIBDIR%%/_prelude.so -%%WITH_PYTHON%%%%PYTHON_SITELIBDIR%%/prelude-0.9.24.1-py%%PYTHON_VER%%.egg-info -%%WITH_PYTHON%%%%PYTHON_SITELIBDIR%%/prelude.py -%%WITH_PYTHON%%%%PYTHON_SITELIBDIR%%/prelude.pyc +lib/libprelude.so.21 +lib/libpreludecpp.a +lib/libpreludecpp.la +lib/libpreludecpp.so +lib/libpreludecpp.so.3 +%%PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/Prelude.pm +%%PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Prelude/.packlist +%%PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Prelude/Prelude.bs +%%PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Prelude/Prelude.so +%%PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/PreludeEasy/.packlist +%%PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/PreludeEasy/PreludeEasy.bs +%%PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/PreludeEasy/PreludeEasy.so +%%PYTHON%%%%PYTHON_SITELIBDIR%%/PreludeEasy-%%VERSION%%-py%%PYTHON_VER%%.egg-info +%%PYTHON%%%%PYTHON_SITELIBDIR%%/PreludeEasy.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/PreludeEasy.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/_PreludeEasy.so +%%PYTHON%%%%PYTHON_SITELIBDIR%%/_prelude.so +%%PYTHON%%%%PYTHON_SITELIBDIR%%/prelude-%%VERSION%%-py%%PYTHON_VER%%.egg-info +%%PYTHON%%%%PYTHON_SITELIBDIR%%/prelude.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/prelude.pyc libdata/pkgconfig/libprelude.pc share/aclocal/libprelude.m4 +%%PERL%%@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/PreludeEasy +%%PERL%%@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Prelude @dirrm include/libprelude @dirrm etc/prelude/default @dirrmtry etc/prelude/profile >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AAA681065678 for ; Tue, 25 Sep 2012 18:20:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4669D8FC1C for ; Tue, 25 Sep 2012 18:20:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKHjZ034989 for ; Tue, 25 Sep 2012 18:20:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKH7s034980; Tue, 25 Sep 2012 18:20:17 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:17 GMT Resent-Message-Id: <201209251820.q8PIKH7s034980@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F050106568F for ; Tue, 25 Sep 2012 18:10:56 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id 2121D8FC16 for ; Tue, 25 Sep 2012 18:10:56 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id 6B57B47C03A for ; Wed, 26 Sep 2012 03:10:54 +0900 (JST) Message-Id: <20120926022631.f057e55b038dcf8f9c103562@yahoo.com> Date: Wed, 26 Sep 2012 02:26:31 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172057: security/manipulate_data: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:18 -0000 >Number: 172057 >Category: ports >Synopsis: security/manipulate_data: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:16 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Support CC/CFLAGS properly >How-To-Repeat: >Fix: diff -urN /usr/ports/security/manipulate_data/Makefile security/manipulate_data/Makefile --- /usr/ports/security/manipulate_data/Makefile 2008-07-31 12:38:45.000000000 +0900 +++ security/manipulate_data/Makefile 2012-09-25 03:41:26.000000000 +0900 @@ -1,32 +1,39 @@ -# New ports collection makefile for: manipulate_data -# Date created: 24 Jul 2004 -# Whom: Vaida Bogdan -# +# Created by: Vaida Bogdan # $FreeBSD: ports/security/manipulate_data/Makefile,v 1.3 2008/07/31 03:38:45 vs Exp $ -# PORTNAME= manipulate_data PORTVERSION= 1.3 +PORTREVISION= 1 CATEGORIES= security -MASTER_SITES= http://packetstormsecurity.org/groups/thc/ +MASTER_SITES= PACKETSTORM/groups/thc MAINTAINER= ports@FreeBSD.org COMMENT= Search/extract/write raw data -PLIST_FILES= sbin/read_data sbin/replace_data sbin/search_data sbin/write_data +OPTIONS_DEFINE= DOCS + PORTDOCS= CHANGES README +PLIST_FILES= ${SBIN_PROGRAMS:S,^,sbin/,} + +SBIN_PROGRAMS= read_data replace_data search_data write_data + +.include + +post-patch: + @${REINPLACE_CMD} -e \ + 's|^CC=|CC?=| ; \ + s| -O2 | $$(CFLAGS) | ; \ + /strip/s|^|#|' ${WRKSRC}/Makefile do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/read_data ${PREFIX}/sbin - ${INSTALL_PROGRAM} ${WRKSRC}/write_data ${PREFIX}/sbin - ${INSTALL_PROGRAM} ${WRKSRC}/search_data ${PREFIX}/sbin - ${INSTALL_PROGRAM} ${WRKSRC}/replace_data ${PREFIX}/sbin - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/CHANGES ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.for i in ${SBIN_PROGRAMS} + ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/sbin +.endfor +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} +.for i in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor .endif .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DB6FB106567A for ; Tue, 25 Sep 2012 18:20:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B5EB38FC29 for ; Tue, 25 Sep 2012 18:20:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKHwK035049 for ; Tue, 25 Sep 2012 18:20:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKHoD035043; Tue, 25 Sep 2012 18:20:17 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:17 GMT Resent-Message-Id: <201209251820.q8PIKHoD035043@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 951FB1065670 for ; Tue, 25 Sep 2012 18:11:02 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 37BAC8FC16 for ; Tue, 25 Sep 2012 18:11:02 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 8C13F4AC036 for ; Wed, 26 Sep 2012 03:10:58 +0900 (JST) Message-Id: <20120926022634.2a39c6abf36fa4a339a2b829@yahoo.com> Date: Wed, 26 Sep 2012 02:26:34 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172058: security/nikto: Update to version 2.1.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:18 -0000 >Number: 172058 >Category: ports >Synopsis: security/nikto: Update to version 2.1.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:17 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 2.1.5 >How-To-Repeat: >Fix: diff -urN /usr/ports/security/nikto/Makefile security/nikto/Makefile --- /usr/ports/security/nikto/Makefile 2011-11-21 14:14:34.000000000 +0900 +++ security/nikto/Makefile 2012-09-25 03:41:41.000000000 +0900 @@ -1,14 +1,8 @@ -# New ports collection makefile for: nikto -# Date created: 23 September 2002 -# Whom: pandzilla -# +# Created by: pandzilla # $FreeBSD: ports/security/nikto/Makefile,v 1.30 2011/11/21 05:14:34 cs Exp $ -# -# $Tecnik: ports/security/nikto/Makefile,v 1.7 2005/12/13 16:26:20 itetcu Exp $ -# PORTNAME= nikto -PORTVERSION= 2.1.4 +PORTVERSION= 2.1.5 PORTEPOCH= 1 CATEGORIES= security www MASTER_SITES= http://www.cirt.net/${PORTNAME}/ \ @@ -17,44 +11,53 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Web and CGI vulnerability scanner with SSL support -MAN1= nikto.1 +LICENSE= GPLv2 + +OPTIONS_DEFINE= SSLEAY DOCS +OPTIONS_DEFAULT=SSLEAY +SSLEAY_DESC= Use NET::SSLeay for ssl scanning -USE_BZIP2= yes -USE_PERL5_RUN= yes NO_BUILD= yes -PORTDOCS= CHANGES.txt LICENSE.txt nikto.dtd nikto_manual.html +USE_BZIP2= yes +USE_PERL5_RUN= yes -OPTIONS+= SSLEAY "Use NET::SSLeay for ssl scanning" on +MAN1= nikto.1 -.include +.include -.ifdef(WITH_SSLEAY) +.if ${PORT_OPTIONS:MSSLEAY} RUN_DEPENDS+= p5-Net-SSLeay>0:${PORTSDIR}/security/p5-Net-SSLeay .endif post-patch: - @${REINPLACE_CMD} -e "s|/usr/local/bin/perl|${PERL}|" \ - -e "s|/etc/nikto.conf|${PREFIX}/etc/nikto.conf|" ${WRKSRC}/nikto.pl - @${REINPLACE_CMD} -Ee "s|# (EXECDIR=)/usr/local/nikto|\1${DATADIR}|g" \ - -e "s|# (PLUGINDIR=)/opt/nikto/plugins|\1${DATADIR}/plugins|g" \ - -e "s|# (TEMPLATEDIR=)/opt/nikto/templates|\1${DATADIR}/templates|g" \ - -e "s|# (DOCDIR=)/opt/nikto/docs|\1${DOCSDIR}|g" ${WRKSRC}/nikto.conf + @${REINPLACE_CMD} -e \ + 's|/usr/local/bin/perl|${PERL}| ; \ + s|/etc/nikto.conf|${PREFIX}/etc/nikto.conf|' ${WRKSRC}/nikto.pl + @${REINPLACE_CMD} -Ee \ + 's|# (EXECDIR=).*/nikto|\1${DATADIR}| ; \ + s|# (DBDIR=).*/databases|\1${DATADIR}/databases| ; \ + s|# (PLUGINDIR=).*/plugins|\1${DATADIR}/plugins| ; \ + s|# (TEMPLATEDIR=).*/templates|\1${DATADIR}/templates| ; \ + s|# (DOCDIR=).*/docs|\1${DOCSDIR}|' ${WRKSRC}/nikto.conf do-install: ${INSTALL_SCRIPT} ${WRKSRC}/nikto.pl ${PREFIX}/bin/nikto + ${INSTALL_MAN} ${WRKSRC}/docs/nikto.1 ${PREFIX}/man/man1/nikto.1 ${INSTALL_DATA} ${WRKSRC}/nikto.conf ${PREFIX}/etc/nikto.conf.sample - ${INSTALL_MAN} ${WRKSRC}/docs/nikto.1 ${PREFIX}/man/man1/ - [ -f ${PREFIX}/etc/nikto.conf ] || \ - ${INSTALL_DATA} ${WRKSRC}/nikto.conf ${PREFIX}/etc/nikto.conf - - ( cd ${WRKSRC}/plugins && ${COPYTREE_SHARE} . ${DATADIR}/plugins ) - ( cd ${WRKSRC}/templates && ${COPYTREE_SHARE} . ${DATADIR}/templates ) -.if !defined(NOPORTDOCS) +.if !exists(${PREFIX}/etc/nikto.conf) + (cd ${PREFIX}/etc && ${CP} -p nikto.conf.sample nikto.conf) +.endif + @${MKDIR} ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/replay.pl ${DATADIR} +.for i in databases plugins templates + @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${i} ${DATADIR}) +.endfor +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} -. for i in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/docs/${i} ${DOCSDIR} -. endfor +.for i in CHANGES.txt LICENSE.txt nikto.dtd nikto_manual.html + ${INSTALL_DATA} ${WRKSRC}/docs/${i} ${DOCSDIR} +.endfor .endif -.include +.include diff -urN /usr/ports/security/nikto/distinfo security/nikto/distinfo --- /usr/ports/security/nikto/distinfo 2011-11-21 14:14:34.000000000 +0900 +++ security/nikto/distinfo 2012-09-19 02:28:21.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (nikto-2.1.4.tar.bz2) = 9af930fea3f124e262d0e63977244b6bd19e22749f4defa818bb4d9b107ad603 -SIZE (nikto-2.1.4.tar.bz2) = 288160 +SHA256 (nikto-2.1.5.tar.bz2) = 65b99c1fdec14d1d5e7cbc964f70fce162cbec50aee878e1500e2d22df079b34 +SIZE (nikto-2.1.5.tar.bz2) = 311580 diff -urN /usr/ports/security/nikto/pkg-plist security/nikto/pkg-plist --- /usr/ports/security/nikto/pkg-plist 2011-11-21 14:14:34.000000000 +0900 +++ security/nikto/pkg-plist 2012-09-23 20:51:44.000000000 +0900 @@ -1,36 +1,47 @@ bin/nikto -etc/nikto.conf +@unexec if cmp -s %D/etc/nikto.conf %D/etc/nikto.conf.sample; then rm -f %D/etc/nikto.conf; fi etc/nikto.conf.sample +@exec if [ ! -f %D/etc/nikto.conf ] ; then cp -p %D/%F %B/nikto.conf; fi +%%PORTDOCS%%%%DOCSDIR%%/CHANGES.txt +%%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt +%%PORTDOCS%%%%DOCSDIR%%/nikto.dtd +%%PORTDOCS%%%%DOCSDIR%%/nikto_manual.html +%%DATADIR%%/databases/db_404_strings +%%DATADIR%%/databases/db_content_search +%%DATADIR%%/databases/db_dictionary +%%DATADIR%%/databases/db_embedded +%%DATADIR%%/databases/db_favicon +%%DATADIR%%/databases/db_headers +%%DATADIR%%/databases/db_httpoptions +%%DATADIR%%/databases/db_multiple_index +%%DATADIR%%/databases/db_outdated +%%DATADIR%%/databases/db_parked_strings +%%DATADIR%%/databases/db_realms +%%DATADIR%%/databases/db_server_msgs +%%DATADIR%%/databases/db_subdomains +%%DATADIR%%/databases/db_tests +%%DATADIR%%/databases/db_variables +%%DATADIR%%/plugins/JSON-PP.pm %%DATADIR%%/plugins/LW2.pm -%%DATADIR%%/plugins/db_404_strings -%%DATADIR%%/plugins/db_content_search -%%DATADIR%%/plugins/db_embedded -%%DATADIR%%/plugins/db_favicon -%%DATADIR%%/plugins/db_headers -%%DATADIR%%/plugins/db_httpoptions -%%DATADIR%%/plugins/db_multiple_index -%%DATADIR%%/plugins/db_outdated -%%DATADIR%%/plugins/db_realms -%%DATADIR%%/plugins/db_server_msgs -%%DATADIR%%/plugins/db_subdomains -%%DATADIR%%/plugins/db_tests -%%DATADIR%%/plugins/db_variables %%DATADIR%%/plugins/nikto_apache_expect_xss.plugin %%DATADIR%%/plugins/nikto_apacheusers.plugin %%DATADIR%%/plugins/nikto_auth.plugin %%DATADIR%%/plugins/nikto_cgi.plugin +%%DATADIR%%/plugins/nikto_clientaccesspolicy.plugin %%DATADIR%%/plugins/nikto_content_search.plugin %%DATADIR%%/plugins/nikto_cookies.plugin %%DATADIR%%/plugins/nikto_core.plugin -%%DATADIR%%/plugins/nikto_core.plugin.debug %%DATADIR%%/plugins/nikto_dictionary_attack.plugin %%DATADIR%%/plugins/nikto_embedded.plugin %%DATADIR%%/plugins/nikto_favicon.plugin +%%DATADIR%%/plugins/nikto_fileops.plugin %%DATADIR%%/plugins/nikto_headers.plugin %%DATADIR%%/plugins/nikto_httpoptions.plugin %%DATADIR%%/plugins/nikto_msgs.plugin %%DATADIR%%/plugins/nikto_multiple_index.plugin %%DATADIR%%/plugins/nikto_outdated.plugin +%%DATADIR%%/plugins/nikto_parked.plugin +%%DATADIR%%/plugins/nikto_paths.plugin %%DATADIR%%/plugins/nikto_put_del_test.plugin %%DATADIR%%/plugins/nikto_report_csv.plugin %%DATADIR%%/plugins/nikto_report_html.plugin @@ -39,10 +50,11 @@ %%DATADIR%%/plugins/nikto_report_text.plugin %%DATADIR%%/plugins/nikto_report_xml.plugin %%DATADIR%%/plugins/nikto_robots.plugin -%%DATADIR%%/plugins/nikto_single.plugin +%%DATADIR%%/plugins/nikto_siebel.plugin %%DATADIR%%/plugins/nikto_ssl.plugin %%DATADIR%%/plugins/nikto_subdomain.plugin %%DATADIR%%/plugins/nikto_tests.plugin +%%DATADIR%%/replay.pl %%DATADIR%%/templates/htm_close.tmpl %%DATADIR%%/templates/htm_end.tmpl %%DATADIR%%/templates/htm_host_head.tmpl @@ -60,4 +72,5 @@ %%DATADIR%%/templates/xml_summary.tmpl @dirrm %%DATADIR%%/templates @dirrm %%DATADIR%%/plugins +@dirrm %%DATADIR%%/databases @dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A52F106567D for ; Tue, 25 Sep 2012 18:20:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3564E8FC14 for ; Tue, 25 Sep 2012 18:20:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKIbl035118 for ; Tue, 25 Sep 2012 18:20:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKIbf035112; Tue, 25 Sep 2012 18:20:18 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:18 GMT Resent-Message-Id: <201209251820.q8PIKIbf035112@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4367106567C for ; Tue, 25 Sep 2012 18:11:06 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 940108FC19 for ; Tue, 25 Sep 2012 18:11:06 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 9B28850036 for ; Wed, 26 Sep 2012 03:11:04 +0900 (JST) Message-Id: <20120926022637.9463683830f1a702909d698c@yahoo.com> Date: Wed, 26 Sep 2012 02:26:37 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172059: security/secure_delete: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:18 -0000 >Number: 172059 >Category: ports >Synopsis: security/secure_delete: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:17 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Support CC/CFLAGS properly - Support PLIST_FILES/PORTDOCS - Add MAKE_JOBS_UNSAFE Remove file: pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/security/secure_delete/Makefile security/secure_delete/Makefile --- /usr/ports/security/secure_delete/Makefile 2008-07-31 12:38:45.000000000 +0900 +++ security/secure_delete/Makefile 2012-09-25 03:41:50.000000000 +0900 @@ -1,26 +1,54 @@ -# New ports collection makefile for: secure_delete -# Date created: 24 Jul 2004 -# Whom: Vaida Bogdan -# +# Created by: Vaida Bogdan # $FreeBSD: ports/security/secure_delete/Makefile,v 1.3 2008/07/31 03:38:45 vs Exp $ -# PORTNAME= secure_delete PORTVERSION= 3.1 +PORTREVISION= 1 CATEGORIES= security -MASTER_SITES= http://packetstormsecurity.org/groups/thc/ +MASTER_SITES= PACKETSTORM/groups/thc MAINTAINER= ports@FreeBSD.org COMMENT= Secure data deletion toolkit +OPTIONS_DEFINE= DOCS + CONFLICTS= srm-[0-9]* -MANCOMPRESSED= no -MAN1= srm.1 sfill.1 sswap.1 smem.1 +MAKE_JOBS_UNSAFE= yes SUB_FILES= pkg-message -post-install: +MLINKS= srm.1 sdel.1 +MAN1= srm.1 sfill.1 sswap.1 smem.1 +PORTDOCS= CHANGES FILES README secure_delete.doc usenix6-gutmann.doc +PLIST_FILES= ${BIN_PROGRAMS:S,^,bin/,} ${BIN_SCRIPTS:S,^,bin/,} bin/sdel + +BIN_PROGRAMS= srm sfill sswap smem +BIN_SCRIPTS= the_cleaner.sh + +.include + +post-patch: + @${REINPLACE_CMD} -e \ + 's|^CC=|CC?=| ; \ + s|-O2 |$$(CFLAGS) | ;\ + /strip/s|^|#|' ${WRKSRC}/Makefile + +do-install: +.for i in ${BIN_PROGRAMS} + ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${i}.1 ${MANPREFIX}/man/man1 +.endfor +.for i in ${BIN_SCRIPTS} + ${INSTALL_SCRIPT} ${WRKSRC}/${i} ${PREFIX}/bin +.endfor + ${LN} -sf srm ${PREFIX}/bin/sdel +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} +.for i in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.endif @${CAT} ${PKGMESSAGE} .include diff -urN /usr/ports/security/secure_delete/pkg-plist security/secure_delete/pkg-plist --- /usr/ports/security/secure_delete/pkg-plist 2005-03-08 07:43:09.000000000 +0900 +++ security/secure_delete/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,12 +0,0 @@ -bin/sdel -bin/srm -bin/sfill -bin/sswap -bin/smem -bin/the_cleaner.sh -%%DOCSDIR%%/CHANGES -%%DOCSDIR%%/FILES -%%DOCSDIR%%/README -%%DOCSDIR%%/secure_delete.doc -%%DOCSDIR%%/usenix6-gutmann.doc -@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C439D1065686 for ; Tue, 25 Sep 2012 18:20:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A00B38FC19 for ; Tue, 25 Sep 2012 18:20:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKIXw035181 for ; Tue, 25 Sep 2012 18:20:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKI1Q035170; Tue, 25 Sep 2012 18:20:18 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:18 GMT Resent-Message-Id: <201209251820.q8PIKI1Q035170@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B255F1065679 for ; Tue, 25 Sep 2012 18:11:10 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 824408FC12 for ; Tue, 25 Sep 2012 18:11:10 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id C985A50036 for ; Wed, 26 Sep 2012 03:11:08 +0900 (JST) Message-Id: <20120926022641.31a9391dc0351e95fc65868c@yahoo.com> Date: Wed, 26 Sep 2012 02:26:41 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172060: security/ssh-multiadd: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:19 -0000 >Number: 172060 >Category: ports >Synopsis: security/ssh-multiadd: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:18 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Add LICENSE - Support USE_PYTHON_RUN >How-To-Repeat: >Fix: diff -urN /usr/ports/security/ssh-multiadd/Makefile security/ssh-multiadd/Makefile --- /usr/ports/security/ssh-multiadd/Makefile 2012-09-21 19:07:33.000000000 +0900 +++ security/ssh-multiadd/Makefile 2012-09-25 03:41:57.000000000 +0900 @@ -1,32 +1,30 @@ -# New ports collection makefile for: ssh-multiadd -# Date created: 29 April 2001 -# Whom: Pete Fritchman -# +# Created by: Pete Fritchman # $FreeBSD: ports/security/ssh-multiadd/Makefile,v 1.12 2012/09/21 10:07:33 bapt Exp $ -# PORTNAME= ssh-multiadd PORTVERSION= 1.3.2 CATEGORIES= security -MASTER_SITES= http://users.dakotacom.net/~donut/programs/ssh-multiadd/ +MASTER_SITES= SUNSITE/system/network/telnet MAINTAINER= ports@FreeBSD.org COMMENT= Tool to add multiple ssh keys to the authentication agent -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 +LICENSE= GPLv2 -USE_PYTHON= yes NO_BUILD= yes + +USE_PYTHON_RUN= yes + MAN1= ssh-multiadd.1 PLIST_FILES= bin/ssh-multiadd post-patch: - @${REINPLACE_CMD} -e 's!/usr/bin/python2!${PYTHON_CMD}!' \ - -e 's!#break!break!' ${WRKSRC}/ssh-multiadd + @${REINPLACE_CMD} -e \ + 's|/usr/bin/python2|${PYTHON_CMD}| ; \ + s|#break|break|' ${WRKSRC}/ssh-multiadd do-install: ${INSTALL_SCRIPT} ${WRKSRC}/ssh-multiadd ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/ssh-multiadd.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/ssh-multiadd.1 ${MANPREFIX}/man/man1 .include diff -urN /usr/ports/security/ssh-multiadd/pkg-descr security/ssh-multiadd/pkg-descr --- /usr/ports/security/ssh-multiadd/pkg-descr 2011-03-24 01:32:48.000000000 +0900 +++ security/ssh-multiadd/pkg-descr 2012-07-12 20:05:45.000000000 +0900 @@ -6,5 +6,3 @@ the keys use the same passphrase, you will only need to enter each unique passphrase once, and keys that are already added will not be prompted for again. - -WWW: http://users.dakotacom.net/~donut/programs/index_s.html#ssh-multiadd >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54EA51065677 for ; Tue, 25 Sep 2012 18:20:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 172988FC0A for ; Tue, 25 Sep 2012 18:20:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKIFJ035238 for ; Tue, 25 Sep 2012 18:20:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKIvs035235; Tue, 25 Sep 2012 18:20:18 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:18 GMT Resent-Message-Id: <201209251820.q8PIKIvs035235@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E674C106566C for ; Tue, 25 Sep 2012 18:11:14 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa106lp.auone-net.jp (msa106lp.auone-net.jp [222.3.140.169]) by mx1.freebsd.org (Postfix) with ESMTP id B63AF8FC12 for ; Tue, 25 Sep 2012 18:11:14 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa106lp.auone-net.jp (au one net msa) with ESMTP id EF26D23C031 for ; Wed, 26 Sep 2012 03:11:12 +0900 (JST) Message-Id: <20120926022644.59c677e7e2ce5fc87f4799a0@yahoo.com> Date: Wed, 26 Sep 2012 02:26:44 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172061: security/sslsniffer: Support PLIST_FILES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:19 -0000 >Number: 172061 >Category: ports >Synopsis: security/sslsniffer: Support PLIST_FILES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:18 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Add LICENSE - Support PLIST_FILES Remove file: pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/security/sslsniffer/Makefile security/sslsniffer/Makefile --- /usr/ports/security/sslsniffer/Makefile 2007-02-28 06:18:30.000000000 +0900 +++ security/sslsniffer/Makefile 2012-09-20 17:48:18.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: sslsniffer -# Date created: Nov 18, 2002 -# Whom: Jim Geovedi -# +# Created by: Jim Geovedi # $FreeBSD: ports/security/sslsniffer/Makefile,v 1.2 2007/02/27 21:18:30 linimon Exp $ -# PORTNAME= sslsniffer PORTVERSION= 1.21 @@ -13,15 +9,22 @@ MAINTAINER= ports@FreeBSD.org COMMENT= SSLv3/TLS and SSLv2 sniffer -USE_OPENSSL= Yes -MAKE_FLAGS= CC='${CC}' +LICENSE= GPLv2 # (or later) + +OPTIONS_DEFINE= DOCS + WRKSRC= ${WRKDIR}/${PORTNAME} +USE_OPENSSL= yes + +PORTDOCS= README +PLIST_FILES= bin/sslsniffer + +.include + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/sslsniffer ${PREFIX}/bin - -post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif diff -urN /usr/ports/security/sslsniffer/pkg-plist security/sslsniffer/pkg-plist --- /usr/ports/security/sslsniffer/pkg-plist 2003-05-12 11:16:09.000000000 +0900 +++ security/sslsniffer/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,3 +0,0 @@ -bin/sslsniffer -%%PORTDOCS%%share/doc/sslsniffer/README -%%PORTDOCS%%@dirrm share/doc/sslsniffer >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7A711065689 for ; Tue, 25 Sep 2012 18:20:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 91A118FC15 for ; Tue, 25 Sep 2012 18:20:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKJeV035299 for ; Tue, 25 Sep 2012 18:20:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKJCQ035292; Tue, 25 Sep 2012 18:20:19 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:19 GMT Resent-Message-Id: <201209251820.q8PIKJCQ035292@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F8FD1065677 for ; Tue, 25 Sep 2012 18:11:20 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id E60548FC0A for ; Tue, 25 Sep 2012 18:11:19 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id 09A832BC03B for ; Wed, 26 Sep 2012 03:11:16 +0900 (JST) Message-Id: <20120926022648.00b57fd0810e6e820cb15ec0@yahoo.com> Date: Wed, 26 Sep 2012 02:26:48 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172062: security/sslwrap: Support PLIST_FILES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:19 -0000 >Number: 172062 >Category: ports >Synopsis: security/sslwrap: Support PLIST_FILES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:19 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Add LICENSE - Support PLIST_FILES Remove file: files/patch-apps.h files/patch-s_cb.c files/patch-s_server.c files/patch-s_socket.c pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/security/sslwrap/Makefile security/sslwrap/Makefile --- /usr/ports/security/sslwrap/Makefile 2011-11-19 08:30:12.000000000 +0900 +++ security/sslwrap/Makefile 2012-09-25 03:42:11.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: sslwrap -# Date created: 1999 november 7. -# Whom: Zahemszky, Gabor -# +# Created by: Zahemszky, Gabor # $FreeBSD: ports/security/sslwrap/Makefile,v 1.18 2011/11/18 23:30:12 ehaupt Exp $ -# PORTNAME= sslwrap PORTVERSION= 2.0.6 @@ -15,25 +11,27 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Another SSL Wrapper application, which uses SSLEay/OpenSSL +WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION:S/.//g} + USE_OPENSSL= YES -WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION:S/.//g} +PORTDOCS= README docs.html +PLIST_FILES= bin/sslwrap -DOCS= README docs.html +.include post-patch: - ${REINPLACE_CMD} -e \ - 's/SSL_OP_NON_EXPORT_FIRST/SSL_OP_CIPHER_SERVER_PREFERENCE/g' \ - ${WRKSRC}/s_server.c - ${REINPLACE_CMD} -e \ - 's,%%OPENSSL%%,openssl/,g' \ - ${WRKSRC}/s_server.c ${WRKSRC}/s_cb.c ${WRKSRC}/apps.h ${WRKSRC}/s_socket.c + @${FIND} ${WRKSRC} -name "*.[ch]" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|SSL_OP_NON_EXPORT_FIRST|SSL_OP_CIPHER_SERVER_PREFERENCE|g ; \ + s|OPENSSL"|"openssl/|g' do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/sslwrap ${PREFIX}/bin/sslwrap -.if !defined(NOPORTDOCS) + ${INSTALL_PROGRAM} ${WRKSRC}/sslwrap ${PREFIX}/bin +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ +.for i in ${PORTDOCS} + @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor .endif .include diff -urN /usr/ports/security/sslwrap/files/patch-apps.h security/sslwrap/files/patch-apps.h --- /usr/ports/security/sslwrap/files/patch-apps.h 2003-10-16 14:34:33.000000000 +0900 +++ security/sslwrap/files/patch-apps.h 1970-01-01 09:00:00.000000000 +0900 @@ -1,15 +0,0 @@ ---- apps.h.orig Wed Oct 15 22:28:24 2003 -+++ apps.h Wed Oct 15 22:28:45 2003 -@@ -65,9 +65,9 @@ - #include "../e_os.h" - #endif - --#include OPENSSL"buffer.h" --#include OPENSSL"bio.h" --#include OPENSSL"crypto.h" -+#include "%%OPENSSL%%/buffer.h" -+#include "%%OPENSSL%%/bio.h" -+#include "%%OPENSSL%%/crypto.h" - /*#include "progs.h"*/ - - #ifdef WIN16 diff -urN /usr/ports/security/sslwrap/files/patch-s_cb.c security/sslwrap/files/patch-s_cb.c --- /usr/ports/security/sslwrap/files/patch-s_cb.c 2003-10-16 14:34:33.000000000 +0900 +++ security/sslwrap/files/patch-s_cb.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,15 +0,0 @@ ---- s_cb.c.orig Wed Oct 15 22:29:17 2003 -+++ s_cb.c Wed Oct 15 22:29:31 2003 -@@ -63,9 +63,9 @@ - #include "apps.h" - #undef NON_MAIN - #undef USE_SOCKETS --#include OPENSSL"err.h" --#include OPENSSL"x509.h" --#include OPENSSL"ssl.h" -+#include "%%OPENSSL%%/err.h" -+#include "%%OPENSSL%%/x509.h" -+#include "%%OPENSSL%%/ssl.h" - #include "s_apps.h" - - int verify_depth=0; diff -urN /usr/ports/security/sslwrap/files/patch-s_server.c security/sslwrap/files/patch-s_server.c --- /usr/ports/security/sslwrap/files/patch-s_server.c 2003-10-16 14:34:33.000000000 +0900 +++ security/sslwrap/files/patch-s_server.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,32 +0,0 @@ ---- s_server.c.orig Sat Nov 11 14:11:18 2000 -+++ s_server.c Wed Oct 15 22:31:56 2003 -@@ -121,14 +121,14 @@ - #ifdef WIN16 - #define APPS_WIN16 - #endif --#include OPENSSL"lhash.h" --#include OPENSSL"bn.h" -+#include "openssl//lhash.h" -+#include "openssl//bn.h" - #define USE_SOCKETS - #include "apps.h" --#include OPENSSL"err.h" --#include OPENSSL"pem.h" --#include OPENSSL"x509.h" --#include OPENSSL"ssl.h" -+#include "openssl//err.h" -+#include "openssl//pem.h" -+#include "openssl//x509.h" -+#include "openssl//ssl.h" - #include "s_apps.h" - - #ifndef NOPROTO -@@ -468,7 +468,7 @@ - - if (bugs) SSL_CTX_set_options(ctx,SSL_OP_ALL); - if (hack) SSL_CTX_set_options(ctx,SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG); -- if (hack) SSL_CTX_set_options(ctx,SSL_OP_NON_EXPORT_FIRST); -+ if (hack) SSL_CTX_set_options(ctx,SSL_OP_CIPHER_SERVER_PREFERENCE); - - if (state) SSL_CTX_set_info_callback(ctx,apps_ssl_info_callback); - diff -urN /usr/ports/security/sslwrap/files/patch-s_socket.c security/sslwrap/files/patch-s_socket.c --- /usr/ports/security/sslwrap/files/patch-s_socket.c 2003-10-16 14:34:33.000000000 +0900 +++ security/sslwrap/files/patch-s_socket.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- s_socket.c.orig Wed Oct 15 22:32:33 2003 -+++ s_socket.c Wed Oct 15 22:32:45 2003 -@@ -67,7 +67,7 @@ - #undef USE_SOCKETS - #undef NON_MAIN - #include "s_apps.h" --#include OPENSSL"ssl.h" -+#include "%%OPENSSL%%/ssl.h" - - #ifndef NOPROTO - static struct hostent *GetHostByName(char *name); diff -urN /usr/ports/security/sslwrap/pkg-plist security/sslwrap/pkg-plist --- /usr/ports/security/sslwrap/pkg-plist 2008-09-12 17:51:36.000000000 +0900 +++ security/sslwrap/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,4 +0,0 @@ -bin/sslwrap -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/docs.html -%%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3D91B1065679 for ; Tue, 25 Sep 2012 18:20:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 197928FC18 for ; Tue, 25 Sep 2012 18:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKJIr035358 for ; Tue, 25 Sep 2012 18:20:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKJvT035348; Tue, 25 Sep 2012 18:20:19 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:19 GMT Resent-Message-Id: <201209251820.q8PIKJvT035348@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7865B106564A for ; Tue, 25 Sep 2012 18:11:24 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 49BAC8FC14 for ; Tue, 25 Sep 2012 18:11:24 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id 592332BC03B for ; Wed, 26 Sep 2012 03:11:22 +0900 (JST) Message-Id: <20120926022651.a3e32a873479ec7d13258e02@yahoo.com> Date: Wed, 26 Sep 2012 02:26:51 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172063: security/super: Support PORTEXAMPLES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:20 -0000 >Number: 172063 >Category: ports >Synopsis: security/super: Support PORTEXAMPLES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:19 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Add LICENSE - Add MAKE_JOBS_SAFE - Support PORTEXAMPLES >How-To-Repeat: >Fix: diff -urN /usr/ports/security/super/Makefile security/super/Makefile --- /usr/ports/security/super/Makefile 2009-03-10 04:29:09.000000000 +0900 +++ security/super/Makefile 2012-09-25 03:42:18.000000000 +0900 @@ -1,10 +1,5 @@ -# ex:ts=8 -# Ports collection makefile for: super -# Date created: Fri Mar 18, 1997 -# Whom: David O'Brien (obrien@NUXI.com) -# +# Created by: David O'Brien (obrien@NUXI.com) # $FreeBSD: ports/security/super/Makefile,v 1.32 2009/03/09 19:29:09 miwi Exp $ -# PORTNAME= super PORTVERSION= 3.30.0 @@ -16,17 +11,29 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Allow others to run commands as root +LICENSE= GPLv1 + +OPTIONS_DEFINE= DOCS EXAMPLES + GNU_CONFIGURE= yes +MAKE_JOBS_SAFE= yes + MAN1= super.1 setuid.1 MAN5= super.5 +.include + post-install: @${STRIP_CMD} ${PREFIX}/bin/super ${PREFIX}/bin/setuid -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif +.if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${DOCSDIR} ${EXAMPLESDIR} - @${INSTALL_DATA} ${FILESDIR}/sample.tab ${FILESDIR}/sample.cdmount \ - ${WRKSRC}/barebones.tab ${EXAMPLESDIR} - @${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR} + ${INSTALL_DATA} ${FILESDIR}/sample.tab ${EXAMPLESDIR} + ${INSTALL_DATA} ${FILESDIR}/sample.cdmount ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/barebones.tab ${EXAMPLESDIR} .endif .include diff -urN /usr/ports/security/super/pkg-plist security/super/pkg-plist --- /usr/ports/security/super/pkg-plist 2006-07-17 00:18:24.000000000 +0900 +++ security/super/pkg-plist 2012-09-23 20:51:07.000000000 +0900 @@ -1,9 +1,9 @@ -bin/super bin/setuid -@unexec if cmp -s %D/etc/super.tab %D/%%PORTDOCS%%/share/examples/super/barebones.tab; then rm -f %D/etc/super.tab; fi -%%PORTDOCS%%%%EXAMPLESDIR%%/sample.tab -%%PORTDOCS%%%%EXAMPLESDIR%%/barebones.tab -%%PORTDOCS%%%%EXAMPLESDIR%%/sample.cdmount +bin/super +%%PORTEXAMPLES%%@unexec if cmp -s %D/etc/super.tab %D/%%EXAMPLESDIR%%/barebones.tab; then rm -f %D/etc/super.tab; fi %%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/barebones.tab +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample.cdmount +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample.tab +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF10E106567D for ; Tue, 25 Sep 2012 18:20:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8AA6E8FC21 for ; Tue, 25 Sep 2012 18:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKKX5035412 for ; Tue, 25 Sep 2012 18:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKKLH035406; Tue, 25 Sep 2012 18:20:20 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:20 GMT Resent-Message-Id: <201209251820.q8PIKKLH035406@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F26DF106568E for ; Tue, 25 Sep 2012 18:11:28 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 9C6AD8FC1F for ; Tue, 25 Sep 2012 18:11:28 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id 7C91C2BC03B for ; Wed, 26 Sep 2012 03:11:26 +0900 (JST) Message-Id: <20120926022654.f3ab368761f0510af2313bce@yahoo.com> Date: Wed, 26 Sep 2012 02:26:54 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172064: security/xyssl: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:20 -0000 >Number: 172064 >Category: ports >Synopsis: security/xyssl: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:20 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Support CFLAGS properly - Add MAKE_JOBS_SAFE >How-To-Repeat: >Fix: diff -urN /usr/ports/security/xyssl/Makefile security/xyssl/Makefile --- /usr/ports/security/xyssl/Makefile 2012-07-25 06:09:44.000000000 +0900 +++ security/xyssl/Makefile 2012-09-25 04:21:17.000000000 +0900 @@ -1,16 +1,14 @@ -# New ports collection makefile for: xyssl -# Date created: 2007-04-05 -# Whom: mdh -# +# Created by: mdh # $FreeBSD: ports/security/xyssl/Makefile,v 1.9 2012/07/24 21:09:44 cs Exp $ -# PORTNAME= xyssl PORTVERSION= 0.9 +PORTREVISION= 1 +DISTVERSIONSUFFIX= -bsd CATEGORIES= security devel MASTER_SITES= http://www.evolane.com/download/mirror/etcl/ \ - http://www.straightrunning.com/code/ -DISTFILES= xyssl-${PORTVERSION}-bsd.tgz + http://polarssl.org/code/releases/ +EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= A lightweight SSL and TLS toolkit for C developers @@ -18,15 +16,25 @@ LICENSE= BSD LICENSE_FILE= ${WRKSRC}/BSD.txt -# HAS_CONFIGURE= no -# GNU_CONFIGURE= no +OPTIONS_DEFINE= DOCS -PORTDOCS= BSD.txt ChangeLog +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +MAKE_JOBS_SAFE= yes + +.include + +post-patch: +.for i in library/Makefile programs/Makefile + @${REINPLACE_CMD} -e \ + '/^CFLAGS/s|[[:space:]]=| +=| ; \ + s|^OFLAGS|#OFLAGS| ; \ + s|^.SILENT:|#.SILENT:|' ${WRKSRC}/${i} +.endfor post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/BSD.txt ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} ${INSTALL_MAN} ${WRKSRC}/ChangeLog ${DOCSDIR} .endif diff -urN /usr/ports/security/xyssl/files/patch-Makefile security/xyssl/files/patch-Makefile --- /usr/ports/security/xyssl/files/patch-Makefile 2009-01-04 20:29:30.000000000 +0900 +++ security/xyssl/files/patch-Makefile 2012-07-12 22:47:58.000000000 +0900 @@ -1,6 +1,6 @@ ---- Makefile.orig 2008-03-16 14:23:22.000000000 +0000 -+++ Makefile 2009-01-02 23:45:48.380520000 +0000 -@@ -1,6 +1,6 @@ +--- Makefile.orig 2008-03-16 23:23:22.000000000 +0900 ++++ Makefile 2012-07-12 22:47:37.000000000 +0900 +@@ -1,26 +1,26 @@ -DESTDIR=/usr/local -PREFIX=xyssl_ @@ -9,7 +9,11 @@ .SILENT: -@@ -10,17 +10,17 @@ + all: +- cd library && make all && cd .. +- cd programs && make all && cd .. ++ cd library && $(MAKE) all && cd .. ++ cd programs && $(MAKE) all && cd .. install: mkdir -p $(DESTDIR)/include/xyssl diff -urN /usr/ports/security/xyssl/pkg-descr security/xyssl/pkg-descr --- /usr/ports/security/xyssl/pkg-descr 2010-06-11 17:22:59.000000000 +0900 +++ security/xyssl/pkg-descr 2012-07-12 22:53:49.000000000 +0900 @@ -4,7 +4,4 @@ Support is also included for X.509 certificate structures, as well as an internal PRNG. -LICENSE: BSD -Copyright (c) 2006-2008, Christophe Devine. - -WWW: http://xyssl.org/ +WWW: http://polarssl.org/ diff -urN /usr/ports/security/xyssl/pkg-plist security/xyssl/pkg-plist --- /usr/ports/security/xyssl/pkg-plist 2009-01-04 20:29:30.000000000 +0900 +++ security/xyssl/pkg-plist 2012-07-12 22:46:13.000000000 +0900 @@ -1,21 +1,20 @@ -lib/libxyssl.a bin/xyssl_aescrypt2 -bin/xyssl_hello -bin/xyssl_md5sum -bin/xyssl_sha1sum -bin/xyssl_sha2sum +bin/xyssl_benchmark bin/xyssl_dh_client bin/xyssl_dh_genprime bin/xyssl_dh_server +bin/xyssl_hello +bin/xyssl_md5sum bin/xyssl_mpi_demo bin/xyssl_rsa_genkey bin/xyssl_rsa_sign bin/xyssl_rsa_verify +bin/xyssl_selftest +bin/xyssl_sha1sum +bin/xyssl_sha2sum bin/xyssl_ssl_client1 bin/xyssl_ssl_client2 bin/xyssl_ssl_server -bin/xyssl_benchmark -bin/xyssl_selftest bin/xyssl_ssl_test include/xyssl/aes.h include/xyssl/arc4.h @@ -41,4 +40,7 @@ include/xyssl/ssl.h include/xyssl/timing.h include/xyssl/x509.h +lib/libxyssl.a +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm include/xyssl >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2AF36106568B for ; Tue, 25 Sep 2012 18:20:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 057068FC24 for ; Tue, 25 Sep 2012 18:20:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKK1R035470 for ; Tue, 25 Sep 2012 18:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKKhj035466; Tue, 25 Sep 2012 18:20:20 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:20 GMT Resent-Message-Id: <201209251820.q8PIKKhj035466@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3770610656AB for ; Tue, 25 Sep 2012 18:11:33 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 0722F8FC08 for ; Tue, 25 Sep 2012 18:11:33 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 0AD354AC036 for ; Wed, 26 Sep 2012 03:11:30 +0900 (JST) Message-Id: <20120926022658.85dab04774634ea28156fbe9@yahoo.com> Date: Wed, 26 Sep 2012 02:26:58 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172065: security/zombiezapper: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:21 -0000 >Number: 172065 >Category: ports >Synopsis: security/zombiezapper: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:20 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Add LICENSE_FILE - Support PORTDOCS/PLIST_FILES Remove file: pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/security/zombiezapper/Makefile security/zombiezapper/Makefile --- /usr/ports/security/zombiezapper/Makefile 2012-09-21 19:07:33.000000000 +0900 +++ security/zombiezapper/Makefile 2012-09-25 03:42:34.000000000 +0900 @@ -1,38 +1,44 @@ -# Ports collection makefile for: zombiezapper -# Date created: 19 Feb 2000 -# Whom: Kris Kennaway -# +# Created by: Kris Kennaway # $FreeBSD: ports/security/zombiezapper/Makefile,v 1.11 2012/09/21 10:07:33 bapt Exp $ -# PORTNAME= zombiezapper PORTVERSION= 1.2 PORTREVISION= 2 CATEGORIES= security -MASTER_SITES= http://razor.bindview.com/tools/files/ +MASTER_SITES= PACKETSTORM/distributed/zombie DISTNAME= zombie-${PORTVERSION} EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Send a terminate command to Trinoo/TFN/Stacheldracht DDoS agents -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 +LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LIBNET_CONFIG}:${PORTSDIR}/net/libnet10 +OPTIONS_DEFINE= DOCS + LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet10-config +CPPFLAGS+= $$(${LIBNET_CONFIG} --cflags --defines) +LDFLAGS+= $$(${LIBNET_CONFIG} --libs) + +PORTDOCS= USAGE tekpaper.txt +PLIST_FILES= bin/zz + +.include + do-build: cd ${WRKSRC} && \ - ${CC} ${CFLAGS} -o zz zz.c `${LIBNET_CONFIG} --cflags` `${LIBNET_CONFIG} --defines` `${LIBNET_CONFIG} --libs` + ${CC} ${CFLAGS} ${CPPFLAGS} -o zz zz.c ${LDFLAGS} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/zz ${PREFIX}/bin/ -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/zz/ - ${INSTALL_DATA} ${WRKSRC}/USAGE ${PREFIX}/share/doc/zz/ - ${INSTALL_DATA} ${WRKSRC}/tekpaper.txt ${PREFIX}/share/doc/zz/ + ${INSTALL_PROGRAM} ${WRKSRC}/zz ${PREFIX}/bin +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} +.for i in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor .endif .include diff -urN /usr/ports/security/zombiezapper/pkg-descr security/zombiezapper/pkg-descr --- /usr/ports/security/zombiezapper/pkg-descr 2000-02-20 19:29:11.000000000 +0900 +++ security/zombiezapper/pkg-descr 2012-07-13 00:45:29.000000000 +0900 @@ -8,5 +8,3 @@ the daemon, allowing you to take a little more time in tracking down where they are, and more importantly, how they got there in the first place. - -WWW: http://razor.bindview.com/tools/ZombieZapper_form.shtml diff -urN /usr/ports/security/zombiezapper/pkg-plist security/zombiezapper/pkg-plist --- /usr/ports/security/zombiezapper/pkg-plist 2001-01-17 17:01:32.000000000 +0900 +++ security/zombiezapper/pkg-plist 1970-01-01 09:00:00.000000000 +0900 @@ -1,4 +0,0 @@ -bin/zz -%%PORTDOCS%%share/doc/zz/USAGE -%%PORTDOCS%%share/doc/zz/tekpaper.txt -%%PORTDOCS%%@dirrm share/doc/zz >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 96C5C1065690 for ; Tue, 25 Sep 2012 18:20:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 728098FC1E for ; Tue, 25 Sep 2012 18:20:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKLqH035533 for ; Tue, 25 Sep 2012 18:20:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKLpM035527; Tue, 25 Sep 2012 18:20:21 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:21 GMT Resent-Message-Id: <201209251820.q8PIKLpM035527@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 282ED106567A for ; Tue, 25 Sep 2012 18:11:37 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id EDF3B8FC1B for ; Tue, 25 Sep 2012 18:11:36 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id 7844F47C03B for ; Wed, 26 Sep 2012 03:11:35 +0900 (JST) Message-Id: <20120926022701.dfb1d515385d3153f77ad014@yahoo.com> Date: Wed, 26 Sep 2012 02:27:01 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172066: shells/esh: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:21 -0000 >Number: 172066 >Category: ports >Synopsis: shells/esh: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:21 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Add LICENSE - Add MAKE_JOBS_SAFE - Support USE_READLINE - Support INFO_PATH >How-To-Repeat: >Fix: diff -urN /usr/ports/shells/esh/Makefile shells/esh/Makefile --- /usr/ports/shells/esh/Makefile 2009-04-21 18:28:15.000000000 +0900 +++ shells/esh/Makefile 2012-09-25 03:42:46.000000000 +0900 @@ -1,23 +1,29 @@ -# Ports collection Makefile for: esh -# Date created: 05/20/1999 -# Whom: nectar@FreeBSD.org -# +# Created by: nectar@FreeBSD.org # $FreeBSD: ports/shells/esh/Makefile,v 1.19 2009/04/21 09:28:15 itetcu Exp $ -# PORTNAME= esh PORTVERSION= 0.8.5 CATEGORIES= shells -MASTER_SITES= http://gd.tuwien.ac.at/opsys/linux/gentoo/distfiles/ \ - http://people.FreeBSD.org/~foxfair/distfiles/ +MASTER_SITES= GENTOO/distfiles MAINTAINER= ports@FreeBSD.org COMMENT= The "easy shell", a small shell with Lisp-like syntax -WRKSRC= ${WRKDIR}/esh -MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -I/usr/include/readline" +LICENSE= GPLv2 # (or later) + +WRKSRC= ${WRKDIR}/${PORTNAME} + +USE_READLINE= yes +MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" +MAKE_JOBS_SAFE= yes + INFO= esh +post-patch: + @${REINPLACE_CMD} -e \ + 's||| ; \ + s|||' ${WRKSRC}/read-rl.c + pre-build: @(cd ${WRKSRC} && ${MAKE} clean) @@ -28,6 +34,6 @@ @(${GREP} -v ${PREFIX}/bin/esh /etc/shells.bak; \ ${ECHO_CMD} ${PREFIX}/bin/esh) > /etc/shells @${RM} /etc/shells.bak - ${INSTALL_DATA} ${WRKSRC}/doc/esh.info ${PREFIX}/info/esh.info + ${INSTALL_DATA} ${WRKSRC}/doc/esh.info ${PREFIX}/${INFO_PATH} .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 100A91065679 for ; Tue, 25 Sep 2012 18:20:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DE97E8FC28 for ; Tue, 25 Sep 2012 18:20:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKL1l035594 for ; Tue, 25 Sep 2012 18:20:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKL2m035588; Tue, 25 Sep 2012 18:20:21 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:21 GMT Resent-Message-Id: <201209251820.q8PIKL2m035588@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E807D1065674 for ; Tue, 25 Sep 2012 18:11:41 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa103lp.auone-net.jp (msa103lp.auone-net.jp [222.3.140.166]) by mx1.freebsd.org (Postfix) with ESMTP id B915E8FC20 for ; Tue, 25 Sep 2012 18:11:41 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa103lp.auone-net.jp (au one net msa) with ESMTP id B9A9547C03A for ; Wed, 26 Sep 2012 03:11:39 +0900 (JST) Message-Id: <20120926022704.aa6413b63331b917758d530f@yahoo.com> Date: Wed, 26 Sep 2012 02:27:04 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172067: sysutils/logmon: Support PORTEXAMPLES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:22 -0000 >Number: 172067 >Category: ports >Synopsis: sysutils/logmon: Support PORTEXAMPLES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:21 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update WWW: line - Add LICENSE - Add MAKE_JOBS_SAFE - Support PORTEXAMPLES >How-To-Repeat: >Fix: diff -urN /usr/ports/sysutils/logmon/Makefile sysutils/logmon/Makefile --- /usr/ports/sysutils/logmon/Makefile 2009-07-12 00:52:02.000000000 +0900 +++ sysutils/logmon/Makefile 2012-09-25 03:42:57.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: logmon -# Date created: 12 September 2001 -# Whom: Gea-Suan Lin (gslin@ccca.nctu.edu.tw) -# +# Created by: Gea-Suan Lin (gslin@ccca.nctu.edu.tw) # $FreeBSD: ports/sysutils/logmon/Makefile,v 1.12 2009/07/11 15:52:02 miwi Exp $ -# PORTNAME= logmon PORTVERSION= 0.4.4 @@ -14,14 +10,25 @@ MAINTAINER= ports@FreeBSD.org COMMENT= An ncurses-based split window log monitoring program +LICENSE= ART10 + +OPTIONS_DEFINE= EXAMPLES + USE_BZIP2= yes -GNU_CONFIGURE= yes -PLIST_FILES= bin/logmon %%EXAMPLESDIR%%/logmon.conf.example -PLIST_DIRS= %%EXAMPLESDIR%% +USE_NCURSES= yes USE_GMAKE= yes +GNU_CONFIGURE= yes +MAKE_JOBS_SAFE= yes + +PORTEXAMPLES= logmon.conf.example +PLIST_FILES= bin/logmon + +.include post-install: - ${MKDIR} ${EXAMPLESDIR} +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/logmon.conf.example ${EXAMPLESDIR} +.endif .include diff -urN /usr/ports/sysutils/logmon/pkg-descr sysutils/logmon/pkg-descr --- /usr/ports/sysutils/logmon/pkg-descr 2002-05-23 07:32:03.000000000 +0900 +++ sysutils/logmon/pkg-descr 2012-08-09 03:08:56.000000000 +0900 @@ -1,9 +1,9 @@ -This program will monitor one or more log files, updating when more data is -available ala 'tail -f' , within a common terminal window via a "split window". -User can scroll up/down/left/right through all the windows. A header displays -each frames file name, and number of lines in the file. Very usefull when -watching several log files at the same time. I've tested this under Linux, but -it should work under other Unices. Please let me know if you get it working on -another OS. +This program will monitor one or more log files, updating when more data +is available ala 'tail -f', within a common terminal window via a "split +window". User can scroll up/down/left/right through all the windows. A +header displays each frames file name, and number of lines in the file. +Very usefull when watching several log files at the same time. I've +tested this under Linux, but it should work under other Unices. Please +let me know if you get it working on another OS. -WWW: http://www.edespot.com/plaidhat/code/LogMon/ +WWW: http://www.edespot.com/logmon >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 83152106567C for ; Tue, 25 Sep 2012 18:20:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5DC218FC25 for ; Tue, 25 Sep 2012 18:20:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKMAc035654 for ; Tue, 25 Sep 2012 18:20:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKMX1035647; Tue, 25 Sep 2012 18:20:22 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:22 GMT Resent-Message-Id: <201209251820.q8PIKMX1035647@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8AF14106566B for ; Tue, 25 Sep 2012 18:11:47 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 495108FC26 for ; Tue, 25 Sep 2012 18:11:47 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id 3F8182BC03C for ; Wed, 26 Sep 2012 03:11:44 +0900 (JST) Message-Id: <20120926022707.1e4dcbd3ef5f5a213d72f55e@yahoo.com> Date: Wed, 26 Sep 2012 02:27:07 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172068: sysutils/nitrogen: Update to version 1.5.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:22 -0000 >Number: 172068 >Category: ports >Synopsis: sysutils/nitrogen: Update to version 1.5.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:21 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 1.5.2 Remove file: files/patch-src-Thumbview.cc >How-To-Repeat: >Fix: diff -urN /usr/ports/sysutils/nitrogen/Makefile sysutils/nitrogen/Makefile --- /usr/ports/sysutils/nitrogen/Makefile 2012-09-22 14:18:20.000000000 +0900 +++ sysutils/nitrogen/Makefile 2012-09-25 01:34:57.000000000 +0900 @@ -2,42 +2,45 @@ # $FreeBSD: ports/sysutils/nitrogen/Makefile,v 1.9 2012/09/22 05:18:20 tabthorpe Exp $ PORTNAME= nitrogen -PORTVERSION= 1.5.1 -PORTREVISION= 1 +PORTVERSION= 1.5.2 CATEGORIES= sysutils MASTER_SITES= http://projects.l3ib.org/nitrogen/files/ MAINTAINER= ports@FreeBSD.org COMMENT= Background browser and setter for X windows +LICENSE= GPLv2 # (or later) + BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash LIB_DEPENDS= gtkmm-2.4:${PORTSDIR}/x11-toolkits/gtkmm24 -RUN_DEPENDS= ${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme \ - ${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme +RUN_DEPENDS= gnome-icon-theme>0:${PORTSDIR}/misc/gnome-icon-theme \ + hicolor-icon-theme>0:${PORTSDIR}/misc/hicolor-icon-theme -LICENSE= GPLv2 +OPTIONS_DEFINE= XINERAMA +OPTIONS_DEFAULT=XINERAMA USE_GNOME= gtk20 -INSTALLS_ICONS= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-inotify -CXXFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib +INSTALLS_ICONS= yes +MAKE_JOBS_SAFE= yes -OPTIONS= XINERAMA "Xinerama support" on +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib MAN1= nitrogen.1 -.include +.include -.if defined(WITHOUT_XINERAMA) -CONFIGURE_ARGS+=--disable-xinerama -.else -CONFIGURE_ARGS+=--enable-xinerama +.if ${PORT_OPTIONS:MXINERAMA} USE_XORG+= xinerama +CONFIGURE_ARGS+=--enable-xinerama +.else +CONFIGURE_ARGS+=--disable-xinerama .endif post-patch: - @${REINPLACE_CMD} -e 's,#!/bin/bash,#!${LOCALBASE}/bin/bash,' \ + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ ${WRKSRC}/data/icon-theme-installer -.include +.include diff -urN /usr/ports/sysutils/nitrogen/distinfo sysutils/nitrogen/distinfo --- /usr/ports/sysutils/nitrogen/distinfo 2011-03-19 21:32:56.000000000 +0900 +++ sysutils/nitrogen/distinfo 2012-09-24 19:41:24.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (nitrogen-1.5.1.tar.gz) = 10b0c84c5c98a4c27bfad60588af0648756542793e380b58c67111b62a88c16f -SIZE (nitrogen-1.5.1.tar.gz) = 300606 +SHA256 (nitrogen-1.5.2.tar.gz) = 60a2437ce6a6c0ba44505fc8066c1973140d4bb48e1e5649f525c7b0b8bf9fd2 +SIZE (nitrogen-1.5.2.tar.gz) = 307356 diff -urN /usr/ports/sysutils/nitrogen/files/patch-data-icon-theme-installer sysutils/nitrogen/files/patch-data-icon-theme-installer --- /usr/ports/sysutils/nitrogen/files/patch-data-icon-theme-installer 2007-07-31 11:29:50.000000000 +0900 +++ sysutils/nitrogen/files/patch-data-icon-theme-installer 2012-09-25 01:27:12.000000000 +0900 @@ -1,5 +1,11 @@ ---- data/icon-theme-installer.orig Sun Dec 31 16:59:08 2006 -+++ data/icon-theme-installer Tue Jul 3 21:45:35 2007 +--- data/icon-theme-installer.orig 2007-08-07 07:20:48.000000000 +0900 ++++ data/icon-theme-installer 2012-09-25 01:26:45.000000000 +0900 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!%%LOCALBASE%%/bin/bash + + # icon-theme-installer + # Copyright (C) 2006 Novell, Inc. @@ -101,12 +101,12 @@ exit 1 fi diff -urN /usr/ports/sysutils/nitrogen/files/patch-src-Thumbview.cc sysutils/nitrogen/files/patch-src-Thumbview.cc --- /usr/ports/sysutils/nitrogen/files/patch-src-Thumbview.cc 2010-08-03 05:18:28.000000000 +0900 +++ sysutils/nitrogen/files/patch-src-Thumbview.cc 1970-01-01 09:00:00.000000000 +0900 @@ -1,16 +0,0 @@ ---- src/Thumbview.cc.orig 2010-07-31 08:36:07.000000000 +0200 -+++ src/Thumbview.cc 2010-07-31 08:36:33.000000000 +0200 -@@ -745,6 +745,8 @@ - } - } - -+#endif -+ - void Thumbview::set_current_display_mode(DisplayMode newmode) - { - remove(); -@@ -776,4 +778,3 @@ - signal_selected(path); - } - --#endif diff -urN /usr/ports/sysutils/nitrogen/pkg-descr sysutils/nitrogen/pkg-descr --- /usr/ports/sysutils/nitrogen/pkg-descr 2007-07-31 11:29:50.000000000 +0900 +++ sysutils/nitrogen/pkg-descr 2012-09-24 19:37:46.000000000 +0900 @@ -1,4 +1,4 @@ Nitrogen is a background browser and setter for X windows. It is written in C++ using the gtkmm toolkit. -WWW: http://l3ib.org/nitrogen +WWW: http://projects.l3ib.org/nitrogen diff -urN /usr/ports/sysutils/nitrogen/pkg-plist sysutils/nitrogen/pkg-plist --- /usr/ports/sysutils/nitrogen/pkg-plist 2010-08-03 05:18:28.000000000 +0900 +++ sysutils/nitrogen/pkg-plist 2012-09-25 01:33:34.000000000 +0900 @@ -1,12 +1,12 @@ bin/nitrogen share/icons/hicolor/128x128/apps/nitrogen.png -share/icons/hicolor/16x16/apps/nitrogen.png -share/icons/hicolor/22x22/apps/nitrogen.png -share/icons/hicolor/32x32/apps/nitrogen.png -share/icons/hicolor/48x48/apps/nitrogen.png -share/icons/hicolor/16x16/devices/video-display.png share/icons/hicolor/16x16/actions/wallpaper-centered.png share/icons/hicolor/16x16/actions/wallpaper-scaled.png share/icons/hicolor/16x16/actions/wallpaper-tiled.png share/icons/hicolor/16x16/actions/wallpaper-zoomed.png +share/icons/hicolor/16x16/apps/nitrogen.png +share/icons/hicolor/16x16/devices/video-display.png share/icons/hicolor/16x16/mimetypes/image-x-generic.png +share/icons/hicolor/22x22/apps/nitrogen.png +share/icons/hicolor/32x32/apps/nitrogen.png +share/icons/hicolor/48x48/apps/nitrogen.png >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EB311106564A for ; Tue, 25 Sep 2012 18:20:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C6AB68FC2B for ; Tue, 25 Sep 2012 18:20:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKMvv035721 for ; Tue, 25 Sep 2012 18:20:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKMDP035714; Tue, 25 Sep 2012 18:20:22 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:22 GMT Resent-Message-Id: <201209251820.q8PIKMDP035714@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53F7510656DE for ; Tue, 25 Sep 2012 18:11:52 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 1316A8FC16 for ; Tue, 25 Sep 2012 18:11:52 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id A9F7C2BC03C for ; Wed, 26 Sep 2012 03:11:49 +0900 (JST) Message-Id: <20120926022710.25b7430e4cebd1c9e1907456@yahoo.com> Date: Wed, 26 Sep 2012 02:27:10 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172069: sysutils/unieject: Update to version 6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:23 -0000 >Number: 172069 >Category: ports >Synopsis: sysutils/unieject: Update to version 6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 6 New file: files/patch-lib__eject.c >How-To-Repeat: >Fix: diff -urN /usr/ports/sysutils/unieject/Makefile sysutils/unieject/Makefile --- /usr/ports/sysutils/unieject/Makefile 2012-01-30 04:48:09.000000000 +0900 +++ sysutils/unieject/Makefile 2012-09-25 03:43:17.000000000 +0900 @@ -1,44 +1,41 @@ -# New ports collection makefile for: unieject -# Date created: 23 July 2006 -# Whom: Andrew Pantyukhin -# +# Created by: Andrew Pantyukhin # $FreeBSD: ports/sysutils/unieject/Makefile,v 1.18 2012/01/29 19:48:09 pav Exp $ -# PORTNAME= unieject -DISTVERSION= 5.3.2 -PORTREVISION= 6 +PORTVERSION= 6 CATEGORIES= sysutils -MASTER_SITES= SF BERLIOS +MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Eject(1) replacement -LIB_DEPENDS= cdio.13:${PORTSDIR}/sysutils/libcdio \ - confuse.0:${PORTSDIR}/devel/libconfuse \ - popt.0:${PORTSDIR}/devel/popt +LICENSE= GPLv2 -BROKEN= does not link +LIB_DEPENDS= confuse:${PORTSDIR}/devel/libconfuse \ + cdio:${PORTSDIR}/sysutils/libcdio -USE_LDCONFIG= yes USE_BZIP2= yes +USE_GNOME= glib20 gnomehack USE_GETTEXT= yes GNU_CONFIGURE= yes -MAN1= unieject.1 -MAN5= unieject.conf.5 +CONFIGURE_ARGS= --disable-silent-rules \ + --disable-doc +USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lcdio -lconfuse -CONFIGURE_ENV= PKG_CONFIG="${TRUE}" -CONFIGURE_ARGS= --with-libintl-prefix=${LOCALBASE} \ - --with-libpopt-prefix=${LOCALBASE} +LDFLAGS+= -L${LOCALBASE}/lib + +MAN1= unieject.1 +MAN5= unieject.conf.5 post-patch: - ${REINPLACE_CMD} -e 's#if.*<<<$$DOXYFORMATS#if false#' ${WRKSRC}/configure - ${REINPLACE_CMD} -e 's#$$(libdir)/pkgconfig#${PREFIX}/libdata/pkgconfig#' ${WRKSRC}/Makefile.in - ${REINPLACE_CMD} -Ee 's#install-htmlDATA (install-man)#\1#' ${WRKSRC}/manpages/Makefile.in + @${REINPLACE_CMD} -e \ + '/-D_POSIX_C_SOURCE/s|^CPPFLAGS|#CPPFLAGS|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e \ + '/^install-data-am:/s|install-dist_docDATA|| ; \ + /^install-data-am:/s|install-dist_htmlDATA||' ${WRKSRC}/Makefile.in post-install: - ${INSTALL_DATA} ${WRKSRC}/unieject.conf.sample ${PREFIX}/etc/ + ${INSTALL_DATA} ${WRKSRC}/unieject.conf.sample ${PREFIX}/etc .include diff -urN /usr/ports/sysutils/unieject/distinfo sysutils/unieject/distinfo --- /usr/ports/sysutils/unieject/distinfo 2011-03-19 21:33:31.000000000 +0900 +++ sysutils/unieject/distinfo 2012-09-11 05:12:47.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (unieject-5.3.2.tar.bz2) = b32077ffd9e1af94a048afc55591b4ec43ca67fa720218d47f9120cd00105c51 -SIZE (unieject-5.3.2.tar.bz2) = 337274 +SHA256 (unieject-6.tar.bz2) = 1be7017d9132d05186051a6500331ed0330998f3818915e7e84a07e61fecd2ce +SIZE (unieject-6.tar.bz2) = 370802 diff -urN /usr/ports/sysutils/unieject/files/patch-lib__eject.c sysutils/unieject/files/patch-lib__eject.c --- /usr/ports/sysutils/unieject/files/patch-lib__eject.c 1970-01-01 09:00:00.000000000 +0900 +++ sysutils/unieject/files/patch-lib__eject.c 2012-09-11 05:14:41.000000000 +0900 @@ -0,0 +1,20 @@ +--- lib/eject.c.orig 2009-06-27 21:37:27.000000000 +0900 ++++ lib/eject.c 2012-09-11 05:14:03.000000000 +0900 +@@ -110,7 +110,7 @@ + sts = cdio_close_tray(opts->device, NULL); + } + } else +- sts = mmc_start_stop_media((CdIo_t*)opts->cdio, opts->eject, 0, 0); ++ sts = mmc_start_stop_unit((CdIo_t*)opts->cdio, opts->eject, 0, 0, 0); + #elif defined(__APPLE__) + driver_return_code_t sts; + if ( opts->eject ) +@@ -121,7 +121,7 @@ + sts = cdio_close_tray(opts->device, NULL); + } + #else +- driver_return_code_t sts = mmc_start_stop_media((CdIo_t*)opts->cdio, opts->eject, 0, 0); ++ driver_return_code_t sts = mmc_start_stop_unit((CdIo_t*)opts->cdio, opts->eject, 0, 0, 0); + #endif + + return unieject_status(sts); diff -urN /usr/ports/sysutils/unieject/pkg-plist sysutils/unieject/pkg-plist --- /usr/ports/sysutils/unieject/pkg-plist 2006-10-20 05:57:50.000000000 +0900 +++ sysutils/unieject/pkg-plist 2012-09-11 05:30:03.000000000 +0900 @@ -5,15 +5,15 @@ lib/libunieject.a lib/libunieject.la lib/libunieject.so -lib/libunieject.so.3 +lib/libunieject.so.5 libdata/pkgconfig/libunieject.pc share/locale/de/LC_MESSAGES/unieject.mo share/locale/es_AR/LC_MESSAGES/unieject.mo share/locale/es_ES/LC_MESSAGES/unieject.mo share/locale/it/LC_MESSAGES/unieject.mo share/locale/nl/LC_MESSAGES/unieject.mo -share/locale/pt_BR/LC_MESSAGES/unieject.mo share/locale/pt/LC_MESSAGES/unieject.mo -@dirrm include/unieject +share/locale/pt_BR/LC_MESSAGES/unieject.mo @dirrmtry share/locale/es_AR/LC_MESSAGES @dirrmtry share/locale/es_AR +@dirrm include/unieject >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A359106567D for ; Tue, 25 Sep 2012 18:20:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3CAF88FC12 for ; Tue, 25 Sep 2012 18:20:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKNsm035777 for ; Tue, 25 Sep 2012 18:20:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKN75035772; Tue, 25 Sep 2012 18:20:23 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:23 GMT Resent-Message-Id: <201209251820.q8PIKN75035772@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D70210656FC for ; Tue, 25 Sep 2012 18:11:56 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164]) by mx1.freebsd.org (Postfix) with ESMTP id 39B0E8FC1C for ; Tue, 25 Sep 2012 18:11:56 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa101lp.auone-net.jp (au one net msa) with ESMTP id 66D0434034 for ; Wed, 26 Sep 2012 03:11:54 +0900 (JST) Message-Id: <20120926022713.0d39c2807bd2d6485b6519cc@yahoo.com> Date: Wed, 26 Sep 2012 02:27:13 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172070: sysutils/wmflame: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:23 -0000 >Number: 172070 >Category: ports >Synopsis: sysutils/wmflame: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Add LICENSE >How-To-Repeat: >Fix: diff -urN /usr/ports/sysutils/wmflame/Makefile sysutils/wmflame/Makefile --- /usr/ports/sysutils/wmflame/Makefile 2008-03-26 07:44:35.000000000 +0900 +++ sysutils/wmflame/Makefile 2012-09-25 03:43:25.000000000 +0900 @@ -1,23 +1,24 @@ -# New ports collection makefile for: wmflame -# Date created: 16 May 2002 -# Whom: Alexey Dokuchaev -# +# Created by: Alexey Dokuchaev # $FreeBSD: ports/sysutils/wmflame/Makefile,v 1.8 2008/03/25 22:44:35 miwi Exp $ -# PORTNAME= wmflame PORTVERSION= 0.60 PORTREVISION= 3 CATEGORIES= sysutils -MASTER_SITES= http://web.novalis.org/programs/ +MASTER_SITES= AFTERSTEP/stable/rpms/misc-tarballs \ + http://web.novalis.org/programs/ MAINTAINER= ports@FreeBSD.org COMMENT= A dockapp that shows the load average as a flame -PLIST_FILES= bin/wmflame -WRKSRC= ${WRKDIR}/wmflame.app/${PORTNAME} -USE_GMAKE= yes +LICENSE= GPLv2 + +WRKSRC= ${WRKDIR}/${PORTNAME}.app/${PORTNAME} + USE_XORG= x11 xpm +USE_GMAKE= yes + +PLIST_FILES= bin/wmflame do-install: ${INSTALL_PROGRAM} ${WRKSRC}/wmflame ${PREFIX}/bin >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E64331065678 for ; Tue, 25 Sep 2012 18:20:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A7F7C8FC1D for ; Tue, 25 Sep 2012 18:20:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKN2P035841 for ; Tue, 25 Sep 2012 18:20:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKNDn035835; Tue, 25 Sep 2012 18:20:23 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:23 GMT Resent-Message-Id: <201209251820.q8PIKNDn035835@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5764A1065678 for ; Tue, 25 Sep 2012 18:12:00 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa104lp.auone-net.jp (msa104lp.auone-net.jp [222.3.140.167]) by mx1.freebsd.org (Postfix) with ESMTP id 268A98FC0C for ; Tue, 25 Sep 2012 18:12:00 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa104lp.auone-net.jp (au one net msa) with ESMTP id 6E18F2BC03F for ; Wed, 26 Sep 2012 03:11:58 +0900 (JST) Message-Id: <20120926022716.94a3e0b8c91079958b7d1b42@yahoo.com> Date: Wed, 26 Sep 2012 02:27:16 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172071: x11-fonts/mgopen: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:24 -0000 >Number: 172071 >Category: ports >Synopsis: x11-fonts/mgopen: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:23 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-fonts/mgopen/Makefile x11-fonts/mgopen/Makefile --- /usr/ports/x11-fonts/mgopen/Makefile 2011-03-12 00:55:22.000000000 +0900 +++ x11-fonts/mgopen/Makefile 2012-09-25 03:43:43.000000000 +0900 @@ -1,15 +1,11 @@ -# New ports collection makefile for: MgOpen Font Family -# Date created: 16 May 2005 -# Whom: past@ebs.gr -# +# Created by: past@ebs.gr # $FreeBSD: ports/x11-fonts/mgopen/Makefile,v 1.6 2011/03/11 15:55:22 bapt Exp $ -# PORTNAME= mgopen PORTVERSION= 1.0 PORTREVISION= 2 CATEGORIES= x11-fonts -MASTER_SITES= http://www.zvr.gr/typo/mgopen/files/ +MASTER_SITES= http://www.ellak.gr/pub/fonts/mgopen/files/ DISTNAME= MgOpen MAINTAINER= ports@FreeBSD.org diff -urN /usr/ports/x11-fonts/mgopen/pkg-descr x11-fonts/mgopen/pkg-descr --- /usr/ports/x11-fonts/mgopen/pkg-descr 2011-03-12 00:55:22.000000000 +0900 +++ x11-fonts/mgopen/pkg-descr 2012-08-09 03:51:35.000000000 +0900 @@ -19,4 +19,4 @@ important one being the Euro symbol). These shortcomings will be fixed in future releases. -WWW: http://www.zvr.gr/typo/mgopen/index +WWW: http://www.ellak.gr/pub/fonts/mgopen/index.en.html >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5ABAB106567A for ; Tue, 25 Sep 2012 18:20:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1D7CC8FC2D for ; Tue, 25 Sep 2012 18:20:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKN74035902 for ; Tue, 25 Sep 2012 18:20:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKNol035895; Tue, 25 Sep 2012 18:20:23 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:23 GMT Resent-Message-Id: <201209251820.q8PIKNol035895@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8226E1065672 for ; Tue, 25 Sep 2012 18:12:04 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id 542068FC15 for ; Tue, 25 Sep 2012 18:12:04 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id 815D24AC036 for ; Wed, 26 Sep 2012 03:12:02 +0900 (JST) Message-Id: <20120926022719.999ee3d67885b9612a3d81f0@yahoo.com> Date: Wed, 26 Sep 2012 02:27:19 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172072: x11-wm/ede: Fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:24 -0000 >Number: 172072 >Category: ports >Synopsis: x11-wm/ede: Fix build >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:23 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Fix build (already fixed by pkgconfig bugfix) >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-wm/ede/Makefile x11-wm/ede/Makefile --- /usr/ports/x11-wm/ede/Makefile 2012-08-05 21:19:08.000000000 +0900 +++ x11-wm/ede/Makefile 2012-09-25 03:43:51.000000000 +0900 @@ -1,9 +1,5 @@ -# New ports collection makefile for: ede -# Date created: 28 Febrary 2004 -# Whom: Sergey Matveychuk -# +# Created by: Sergey Matveychuk # $FreeBSD: ports/x11-wm/ede/Makefile,v 1.23 2012/08/05 12:19:08 beat Exp $ -# PORTNAME= ede PORTVERSION= 2.0 @@ -28,8 +24,6 @@ fltk.1:${PORTSDIR}/x11-toolkits/fltk RUN_DEPENDS= update-mime-database:${PORTSDIR}/misc/shared-mime-info -BROKEN= does not link - OPTIONS_DEFINE= HAL HAL_DESC= Enable HAL support @@ -44,8 +38,8 @@ INSTALL_ICONS= yes MAKE_JOBS_SAFE= yes -CPPFLAGS= -I${LOCALBASE}/include -LDFLAGS= -L${LOCALBASE}/lib +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib CONFLICTS_INSTALL= pekwm-[0-9]* >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:20:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AEDB0106567C for ; Tue, 25 Sep 2012 18:20:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8ABB78FC15 for ; Tue, 25 Sep 2012 18:20:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIKOEi035962 for ; Tue, 25 Sep 2012 18:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIKOlL035957; Tue, 25 Sep 2012 18:20:24 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 18:20:24 GMT Resent-Message-Id: <201209251820.q8PIKOlL035957@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C80BC1065670 for ; Tue, 25 Sep 2012 18:12:10 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id 6EDD08FC19 for ; Tue, 25 Sep 2012 18:12:10 +0000 (UTC) Received: from localhost.localdomain (ZT030063.ppp.dion.ne.jp [59.128.30.63]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id 897DE50036 for ; Wed, 26 Sep 2012 03:12:06 +0900 (JST) Message-Id: <20120926022723.44f4c89ba1dd5bbb7051d055@yahoo.com> Date: Wed, 26 Sep 2012 02:27:23 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172073: x11-wm/treewm: Support CFLAGS properly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:20:24 -0000 >Number: 172073 >Category: ports >Synopsis: x11-wm/treewm: Support CFLAGS properly >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 18:20:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Add LICENSE - Support CFLAGS properly - Support SUB_FILES - Support PORTEXAMPLES - Add MAKE_JOBS_SAFE New file: files/patch-xprop__xprop.c files/pkg-message.in Remove file: pkg-message >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-wm/treewm/Makefile x11-wm/treewm/Makefile --- /usr/ports/x11-wm/treewm/Makefile 2008-04-20 02:56:00.000000000 +0900 +++ x11-wm/treewm/Makefile 2012-09-25 03:43:58.000000000 +0900 @@ -1,46 +1,55 @@ -# New ports collection makefile for: treewm -# Date created: 09 Sep 2003 -# Whom: Rudolf Polzer -# +# Created by: Rudolf Polzer # $FreeBSD: ports/x11-wm/treewm/Makefile,v 1.10 2008/04/19 17:56:00 miwi Exp $ -# PORTNAME= treewm PORTVERSION= 0.4.5 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= x11-wm MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Window Manager that arranges the windows in a tree +LICENSE= GPLv2 + BUILD_DEPENDS= xmkmf:${PORTSDIR}/devel/imake +OPTIONS_DEFINE= DOCS EXAMPLES + USE_BZIP2= yes -USE_GMAKE= yes USE_XORG= x11 ice sm xext xmu xpm xt xxf86vm +USE_GMAKE= yes +MAKE_JOBS_SAFE= yes -PKGMESSAGE= ${WRKDIR}/pkg-message +SUB_FILES= pkg-message -PORTDOCS= AUTHORS ChangeLog INSTALL PROBLEMS README README.tiling TODO default.cfg sample.cfg +PORTDOCS= AUTHORS ChangeLog INSTALL PROBLEMS README README.tiling TODO +PORTEXAMPLES= default.cfg sample.cfg -post-patch: - @${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|; s|/usr/X11R6|${LOCALBASE}|g' ${WRKSRC}/Makefile +.include -post-build: - @${SED} 's|%%D%%|${DOCSDIR}|g' ${PKGDIR}/pkg-message >${PKGMESSAGE} +post-patch: + @${REINPLACE_CMD} -e \ + '/^PREFIX/s| =| ?=| ; \ + /^CXXFLAGS/s| =| ?=| ; \ + s|/usr/X11R6|${LOCALBASE}|g' ${WRKSRC}/Makefile do-install: - ${MKDIR} ${DATADIR} - ${MKDIR} ${DATADIR}/pixmaps ${INSTALL_PROGRAM} ${WRKSRC}/src/treewm ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/xprop/xprop ${PREFIX}/bin/xprop-treewm ${INSTALL_PROGRAM} ${WRKSRC}/xkill/xkill ${PREFIX}/bin/xkill-treewm + @${MKDIR} ${DATADIR}/pixmaps ${INSTALL_DATA} ${WRKSRC}/src/pixmaps/*.xpm ${DATADIR}/pixmaps -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for FILE in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} +.for F in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${F} ${DOCSDIR} +.endfor +.endif +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} +.for F in ${PORTEXAMPLES} + ${INSTALL_DATA} ${WRKSRC}/${F} ${EXAMPLESDIR} .endfor .endif @${CAT} ${PKGMESSAGE} diff -urN /usr/ports/x11-wm/treewm/files/patch-xprop__xprop.c x11-wm/treewm/files/patch-xprop__xprop.c --- /usr/ports/x11-wm/treewm/files/patch-xprop__xprop.c 1970-01-01 09:00:00.000000000 +0900 +++ x11-wm/treewm/files/patch-xprop__xprop.c 2012-09-13 15:22:29.000000000 +0900 @@ -0,0 +1,49 @@ +--- xprop/xprop.c.orig 2002-03-14 21:14:47.000000000 +0900 ++++ xprop/xprop.c 2012-09-13 15:21:40.000000000 +0900 +@@ -586,7 +586,7 @@ + { + if (--_buf_len<0) { + _buf_ptr[0]='\0'; +- return; ++ return 0; + } + _buf_ptr++[0] = c; + } +@@ -1357,10 +1357,10 @@ + if (id == None) { + fprintf (stderr, "%s: no such property \"%s\"\n", + program_name, propname); +- return; ++ return 0; + } + XDeleteProperty (dpy, w, id); +- return; ++ return 0; + } + + thunk *Handle_Prop_Requests(argc, argv) +@@ -1514,13 +1514,13 @@ + printf("%s", prop); + if (!(atom = Parse_Atom(prop, True))) { + printf(": no such atom on any window.\n"); +- return; ++ return 0; + } + + data = Get_Property_Data_And_Type(atom, &length, &type, &size); + if (!size) { + puts(": not found."); +- return; ++ return 0; + } + + if (!notype && type) +@@ -1535,7 +1535,7 @@ + if (fsize!=size && fsize!=0) { + printf(": Type mismatch: assumed size %d bits, actual size %d bits.\n", + fsize, size); +- return; ++ return 0; + } + + thunks = Break_Down_Property(data, (int)length, format, size); diff -urN /usr/ports/x11-wm/treewm/files/pkg-message.in x11-wm/treewm/files/pkg-message.in --- /usr/ports/x11-wm/treewm/files/pkg-message.in 1970-01-01 09:00:00.000000000 +0900 +++ x11-wm/treewm/files/pkg-message.in 2012-07-06 05:05:35.000000000 +0900 @@ -0,0 +1,14 @@ +-------------------------------------------------------------------------- + +The treewm package has been successfully installed. + +NB: Sample configuration files have been installed to +%%EXAMPLESDIR%% as "default.cfg" and "sample.cfg". +Users can look at them as well as the README in the same directory to +write their .treewmrc in their homedir. Also, please take a look at + + WWW: http://www.informatik.uni-frankfurt.de/~polzer/treewmdurchnull/downloads/treewm-examples-en.tar.bz2 + +for further hints and examples about configuring treewm. + +-------------------------------------------------------------------------- diff -urN /usr/ports/x11-wm/treewm/pkg-message x11-wm/treewm/pkg-message --- /usr/ports/x11-wm/treewm/pkg-message 2004-01-12 05:54:14.000000000 +0900 +++ x11-wm/treewm/pkg-message 1970-01-01 09:00:00.000000000 +0900 @@ -1,14 +0,0 @@ --------------------------------------------------------------------------- - -The treewm package has been successfully installed. - -NB: Sample configuration files have been installed to -%%D%% as "default.cfg" and "sample.cfg". -Users can look at them as well as the README in the same directory to -write their .treewmrc in their homedir. Also, please take a look at - - WWW: http://www.informatik.uni-frankfurt.de/~polzer/treewmdurchnull/downloads/treewm-examples-en.tar.bz2 - -for further hints and examples about configuring treewm. - --------------------------------------------------------------------------- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:34:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46C1D106564A; Tue, 25 Sep 2012 18:34:29 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1B8EC8FC0A; Tue, 25 Sep 2012 18:34:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIYSqV052998; Tue, 25 Sep 2012 18:34:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIYSKN052994; Tue, 25 Sep 2012 18:34:28 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:34:28 GMT Message-Id: <201209251834.q8PIYSKN052994@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172045: net-mgmt/echolot: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:34:29 -0000 Synopsis: net-mgmt/echolot: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:34:28 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172045 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:34:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 715C31065675; Tue, 25 Sep 2012 18:34:35 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 44CDB8FC26; Tue, 25 Sep 2012 18:34:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIYYwl053093; Tue, 25 Sep 2012 18:34:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIYYQI053087; Tue, 25 Sep 2012 18:34:34 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:34:34 GMT Message-Id: <201209251834.q8PIYYQI053087@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172046: net-mgmt/nat: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:34:35 -0000 Synopsis: net-mgmt/nat: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:34:34 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172046 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:34:41 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F06DC106566B; Tue, 25 Sep 2012 18:34:40 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C4E328FC0A; Tue, 25 Sep 2012 18:34:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIYeYA053185; Tue, 25 Sep 2012 18:34:40 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIYeCQ053180; Tue, 25 Sep 2012 18:34:40 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:34:40 GMT Message-Id: <201209251834.q8PIYeCQ053180@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172047: net-mgmt/openvmps: Update to version 1.4.04 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:34:41 -0000 Synopsis: net-mgmt/openvmps: Update to version 1.4.04 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:34:40 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172047 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:34:47 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2F9C8106566C; Tue, 25 Sep 2012 18:34:47 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 03D158FC12; Tue, 25 Sep 2012 18:34:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIYkte053275; Tue, 25 Sep 2012 18:34:46 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIYkMl053271; Tue, 25 Sep 2012 18:34:46 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:34:46 GMT Message-Id: <201209251834.q8PIYkMl053271@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172048: print/a2pdf: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:34:47 -0000 Synopsis: print/a2pdf: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:34:46 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172048 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:34:53 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 381AF106566B; Tue, 25 Sep 2012 18:34:53 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 054E98FC17; Tue, 25 Sep 2012 18:34:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIYqE6053368; Tue, 25 Sep 2012 18:34:52 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIYqTf053364; Tue, 25 Sep 2012 18:34:52 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:34:52 GMT Message-Id: <201209251834.q8PIYqTf053364@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172049: print/cpp2latex: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:34:53 -0000 Synopsis: print/cpp2latex: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:34:52 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172049 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:34:59 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 42C55106566C; Tue, 25 Sep 2012 18:34:59 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 179708FC15; Tue, 25 Sep 2012 18:34:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIYwjB053466; Tue, 25 Sep 2012 18:34:58 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIYwA0053462; Tue, 25 Sep 2012 18:34:58 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:34:58 GMT Message-Id: <201209251834.q8PIYwA0053462@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172050: print/pstotext: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:34:59 -0000 Synopsis: print/pstotext: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:34:58 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172050 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:35:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77663106566B; Tue, 25 Sep 2012 18:35:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4BBE08FC23; Tue, 25 Sep 2012 18:35:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIZEaB053585; Tue, 25 Sep 2012 18:35:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIZElZ053581; Tue, 25 Sep 2012 18:35:14 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:35:14 GMT Message-Id: <201209251835.q8PIZElZ053581@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172051: science/gwyddion: Update to version 2.30 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:35:14 -0000 Synopsis: science/gwyddion: Update to version 2.30 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:35:13 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172051 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:35:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 03EB8106566B; Tue, 25 Sep 2012 18:35:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CD3AF8FC12; Tue, 25 Sep 2012 18:35:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIZJlS053679; Tue, 25 Sep 2012 18:35:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIZJHL053675; Tue, 25 Sep 2012 18:35:19 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:35:19 GMT Message-Id: <201209251835.q8PIZJHL053675@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172052: science/hdf: Update to version 4.2.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:35:20 -0000 Synopsis: science/hdf: Update to version 4.2.8 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:35:19 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172052 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:35:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10977106566C; Tue, 25 Sep 2012 18:35:25 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D931C8FC1A; Tue, 25 Sep 2012 18:35:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIZO45053770; Tue, 25 Sep 2012 18:35:24 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIZODM053765; Tue, 25 Sep 2012 18:35:24 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:35:24 GMT Message-Id: <201209251835.q8PIZODM053765@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172053: security/authforce: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:35:25 -0000 Synopsis: security/authforce: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:35:24 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172053 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:35:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4513C106564A; Tue, 25 Sep 2012 18:35:30 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1915C8FC1F; Tue, 25 Sep 2012 18:35:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIZTkd053863; Tue, 25 Sep 2012 18:35:29 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIZTSp053859; Tue, 25 Sep 2012 18:35:29 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:35:29 GMT Message-Id: <201209251835.q8PIZTSp053859@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172055: security/identify: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:35:30 -0000 Synopsis: security/identify: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:35:29 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172055 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:35:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7EDEB106568E; Tue, 25 Sep 2012 18:35:35 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4F4058FC21; Tue, 25 Sep 2012 18:35:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIZZ6P053955; Tue, 25 Sep 2012 18:35:35 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIZZd0053951; Tue, 25 Sep 2012 18:35:35 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:35:35 GMT Message-Id: <201209251835.q8PIZZd0053951@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172056: security/libprelude: Update to version 1.0.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:35:35 -0000 Synopsis: security/libprelude: Update to version 1.0.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:35:34 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172056 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:35:40 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 955EE1065670; Tue, 25 Sep 2012 18:35:40 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6AFAE8FC12; Tue, 25 Sep 2012 18:35:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIZevP054046; Tue, 25 Sep 2012 18:35:40 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIZeh7054042; Tue, 25 Sep 2012 18:35:40 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:35:40 GMT Message-Id: <201209251835.q8PIZeh7054042@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172057: security/manipulate_data: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:35:40 -0000 Synopsis: security/manipulate_data: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:35:39 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172057 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:35:45 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A3BB41065670; Tue, 25 Sep 2012 18:35:45 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 796348FC1E; Tue, 25 Sep 2012 18:35:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIZjm6054137; Tue, 25 Sep 2012 18:35:45 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIZjhG054133; Tue, 25 Sep 2012 18:35:45 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:35:45 GMT Message-Id: <201209251835.q8PIZjhG054133@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172058: security/nikto: Update to version 2.1.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:35:45 -0000 Synopsis: security/nikto: Update to version 2.1.5 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:35:45 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172058 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:35:51 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 104101065670; Tue, 25 Sep 2012 18:35:51 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D8F188FC15; Tue, 25 Sep 2012 18:35:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIZo1s054231; Tue, 25 Sep 2012 18:35:50 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIZobN054227; Tue, 25 Sep 2012 18:35:50 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:35:50 GMT Message-Id: <201209251835.q8PIZobN054227@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172059: security/secure_delete: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:35:51 -0000 Synopsis: security/secure_delete: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:35:50 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172059 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:35:56 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 242441065670; Tue, 25 Sep 2012 18:35:56 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EC0C68FC16; Tue, 25 Sep 2012 18:35:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIZtnh054328; Tue, 25 Sep 2012 18:35:55 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIZt35054323; Tue, 25 Sep 2012 18:35:55 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:35:55 GMT Message-Id: <201209251835.q8PIZt35054323@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172060: security/ssh-multiadd: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:35:56 -0000 Synopsis: security/ssh-multiadd: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:35:55 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172060 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:36:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3064F106566B; Tue, 25 Sep 2012 18:36:02 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 047578FC0C; Tue, 25 Sep 2012 18:36:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIa12k054424; Tue, 25 Sep 2012 18:36:01 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIa1DR054420; Tue, 25 Sep 2012 18:36:01 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:36:01 GMT Message-Id: <201209251836.q8PIa1DR054420@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172061: security/sslsniffer: Support PLIST_FILES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:36:02 -0000 Synopsis: security/sslsniffer: Support PLIST_FILES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:36:01 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172061 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:36:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 889D4106566C; Tue, 25 Sep 2012 18:36:07 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5CE388FC12; Tue, 25 Sep 2012 18:36:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIa73f054515; Tue, 25 Sep 2012 18:36:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIa7x3054510; Tue, 25 Sep 2012 18:36:07 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:36:07 GMT Message-Id: <201209251836.q8PIa7x3054510@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172062: security/sslwrap: Support PLIST_FILES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:36:07 -0000 Synopsis: security/sslwrap: Support PLIST_FILES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:36:06 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172062 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:36:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D1721065672; Tue, 25 Sep 2012 18:36:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 61A438FC15; Tue, 25 Sep 2012 18:36:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIaCni054607; Tue, 25 Sep 2012 18:36:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIaC21054603; Tue, 25 Sep 2012 18:36:12 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:36:12 GMT Message-Id: <201209251836.q8PIaC21054603@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172063: security/super: Support PORTEXAMPLES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:36:12 -0000 Synopsis: security/super: Support PORTEXAMPLES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:36:11 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172063 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:36:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 254471065670; Tue, 25 Sep 2012 18:36:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EEAD88FC15; Tue, 25 Sep 2012 18:36:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIaJDP054703; Tue, 25 Sep 2012 18:36:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIaJuN054699; Tue, 25 Sep 2012 18:36:19 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:36:19 GMT Message-Id: <201209251836.q8PIaJuN054699@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172064: security/xyssl: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:36:20 -0000 Synopsis: security/xyssl: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:36:19 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172064 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:36:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 779FA1065677; Tue, 25 Sep 2012 18:36:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 49DFD8FC12; Tue, 25 Sep 2012 18:36:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIaQ6x054791; Tue, 25 Sep 2012 18:36:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIaQ4n054787; Tue, 25 Sep 2012 18:36:26 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:36:26 GMT Message-Id: <201209251836.q8PIaQ4n054787@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172065: security/zombiezapper: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:36:26 -0000 Synopsis: security/zombiezapper: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:36:25 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172065 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:36:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AB99E1065696; Tue, 25 Sep 2012 18:36:32 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7FB898FC19; Tue, 25 Sep 2012 18:36:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIaWlf054878; Tue, 25 Sep 2012 18:36:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIaWYe054874; Tue, 25 Sep 2012 18:36:32 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:36:32 GMT Message-Id: <201209251836.q8PIaWYe054874@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172066: shells/esh: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:36:32 -0000 Synopsis: shells/esh: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:36:31 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172066 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:36:38 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E2A6C10656EF; Tue, 25 Sep 2012 18:36:38 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B6BC28FC1A; Tue, 25 Sep 2012 18:36:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIacLj054968; Tue, 25 Sep 2012 18:36:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIacKB054964; Tue, 25 Sep 2012 18:36:38 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:36:38 GMT Message-Id: <201209251836.q8PIacKB054964@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172067: sysutils/logmon: Support PORTEXAMPLES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:36:39 -0000 Synopsis: sysutils/logmon: Support PORTEXAMPLES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:36:38 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172067 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:36:44 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C92E610656DE; Tue, 25 Sep 2012 18:36:44 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9D2898FC1B; Tue, 25 Sep 2012 18:36:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIaild055057; Tue, 25 Sep 2012 18:36:44 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIaiI3055053; Tue, 25 Sep 2012 18:36:44 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:36:44 GMT Message-Id: <201209251836.q8PIaiI3055053@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172068: sysutils/nitrogen: Update to version 1.5.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:36:44 -0000 Synopsis: sysutils/nitrogen: Update to version 1.5.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:36:44 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172068 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:36:49 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B27621065674; Tue, 25 Sep 2012 18:36:49 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 809168FC18; Tue, 25 Sep 2012 18:36:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIanbb055146; Tue, 25 Sep 2012 18:36:49 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIanVn055142; Tue, 25 Sep 2012 18:36:49 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:36:49 GMT Message-Id: <201209251836.q8PIanVn055142@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172069: sysutils/unieject: Update to version 6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:36:49 -0000 Synopsis: sysutils/unieject: Update to version 6 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:36:49 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172069 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:36:54 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B1950106564A; Tue, 25 Sep 2012 18:36:54 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 86AD38FC21; Tue, 25 Sep 2012 18:36:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIasOA055239; Tue, 25 Sep 2012 18:36:54 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIasbI055235; Tue, 25 Sep 2012 18:36:54 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:36:54 GMT Message-Id: <201209251836.q8PIasbI055235@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172070: sysutils/wmflame: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:36:54 -0000 Synopsis: sysutils/wmflame: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:36:54 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172070 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:36:59 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E7621065670; Tue, 25 Sep 2012 18:36:59 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 635AB8FC12; Tue, 25 Sep 2012 18:36:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIaxCL055327; Tue, 25 Sep 2012 18:36:59 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIaxbZ055323; Tue, 25 Sep 2012 18:36:59 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:36:59 GMT Message-Id: <201209251836.q8PIaxbZ055323@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172071: x11-fonts/mgopen: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:36:59 -0000 Synopsis: x11-fonts/mgopen: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:36:58 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172071 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:37:04 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BFD001065673; Tue, 25 Sep 2012 18:37:04 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 931808FC18; Tue, 25 Sep 2012 18:37:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIb4if055420; Tue, 25 Sep 2012 18:37:04 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIb4Gj055416; Tue, 25 Sep 2012 18:37:04 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:37:04 GMT Message-Id: <201209251837.q8PIb4Gj055416@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172072: x11-wm/ede: Fix build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:37:04 -0000 Synopsis: x11-wm/ede: Fix build Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:37:04 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172072 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 18:37:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E3AA106566C; Tue, 25 Sep 2012 18:37:10 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E726F8FC15; Tue, 25 Sep 2012 18:37:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PIb9w2055508; Tue, 25 Sep 2012 18:37:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PIb9VZ055504; Tue, 25 Sep 2012 18:37:09 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 18:37:09 GMT Message-Id: <201209251837.q8PIb9VZ055504@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172073: x11-wm/treewm: Support CFLAGS properly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 18:37:10 -0000 Synopsis: x11-wm/treewm: Support CFLAGS properly Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 25 18:37:09 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172073 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 19:12:47 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C3C9106566B; Tue, 25 Sep 2012 19:12:47 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 70EA78FC14; Tue, 25 Sep 2012 19:12:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PJClkX089178; Tue, 25 Sep 2012 19:12:47 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PJCl1q089174; Tue, 25 Sep 2012 19:12:47 GMT (envelope-from crees) Date: Tue, 25 Sep 2012 19:12:47 GMT Message-Id: <201209251912.q8PJCl1q089174@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, crees@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/171866: sysutils/mcelog -- update to 1.0pre3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 19:12:47 -0000 Synopsis: sysutils/mcelog -- update to 1.0pre3 Responsible-Changed-From-To: freebsd-ports-bugs->crees Responsible-Changed-By: crees Responsible-Changed-When: Tue Sep 25 19:12:47 UTC 2012 Responsible-Changed-Why: I'll take it. I'm pretty sure you haven't added any new patchfiles here-- please let me know if I've missed one (preferably before I commit!) http://www.freebsd.org/cgi/query-pr.cgi?pr=171866 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 19:50:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C85F1065672 for ; Tue, 25 Sep 2012 19:50:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B6ED78FC12 for ; Tue, 25 Sep 2012 19:50:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PJo5ES018342 for ; Tue, 25 Sep 2012 19:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PJo5Dp018341; Tue, 25 Sep 2012 19:50:05 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 19:50:05 GMT Resent-Message-Id: <201209251950.q8PJo5Dp018341@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Olli Hauer Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA81E106566B for ; Tue, 25 Sep 2012 19:49:52 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B68478FC0A; Tue, 25 Sep 2012 19:49:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PJnq7X018290; Tue, 25 Sep 2012 19:49:52 GMT (envelope-from ohauer@freefall.freebsd.org) Received: (from ohauer@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PJnqpY018288; Tue, 25 Sep 2012 19:49:52 GMT (envelope-from ohauer) Message-Id: <201209251949.q8PJnqpY018288@freefall.freebsd.org> Date: Tue, 25 Sep 2012 19:49:52 GMT From: Olli Hauer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: r.neese@gmail.com Subject: ports/172074: [patch] www/fusionpbx remove dead code from Makefile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 19:50:06 -0000 >Number: 172074 >Category: ports >Synopsis: [patch] www/fusionpbx remove dead code from Makefile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 19:50:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: ohauer >Release: >Organization: >Environment: >Description: remove dead code from Makefile, PLIST_SUB variables are not used in pkg-plist >How-To-Repeat: $> grep ^% pkg-plist | grep -v ^%%WWWDIR >Fix: --- fusionpbx.diff begins here --- Index: Makefile =================================================================== --- Makefile (revision 304799) +++ Makefile (working copy) @@ -37,14 +37,6 @@ .include -.for opt in ${ALL_OPTIONS} -.if ${PORT_OPTIONS:M${opt}} -PLIST_SUB+= ${opt}="" -.else -PLIST_SUB+= ${opt}="@comment " -.endif -.endfor - .if ${PORT_OPTIONS:MPDOPGSQL} USE_PGSQL= yes USE_PHP+= pgsql pdo_pgsql --- fusionpbx.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 19:50:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9F48A106564A; Tue, 25 Sep 2012 19:50:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 276E78FC15; Tue, 25 Sep 2012 19:50:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PJoI4x020369; Tue, 25 Sep 2012 19:50:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PJoI2p020359; Tue, 25 Sep 2012 19:50:18 GMT (envelope-from edwin) Date: Tue, 25 Sep 2012 19:50:18 GMT Message-Id: <201209251950.q8PJoI2p020359@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172074: [patch] www/fusionpbx remove dead code from Makefile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 19:50:18 -0000 Synopsis: [patch] www/fusionpbx remove dead code from Makefile State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Sep 25 19:50:17 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172074 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 20:00:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 588E7106566C for ; Tue, 25 Sep 2012 20:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3457E8FC0C for ; Tue, 25 Sep 2012 20:00:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PK0IGN027198 for ; Tue, 25 Sep 2012 20:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PK0IjN027192; Tue, 25 Sep 2012 20:00:18 GMT (envelope-from gnats) Date: Tue, 25 Sep 2012 20:00:18 GMT Message-Id: <201209252000.q8PK0IjN027192@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/172074: [patch] www/fusionpbx remove dead code from Makefile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 20:00:18 -0000 The following reply was made to PR ports/172074; it has been noted by GNATS. From: Edwin Groothuis To: r.neese@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/172074: [patch] www/fusionpbx remove dead code from Makefile Date: Tue, 25 Sep 2012 19:50:14 UT Maintainer of www/fusionpbx, Please note that PR ports/172074 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/172074 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 20:08:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B968A1065674; Tue, 25 Sep 2012 20:08:09 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8E0728FC18; Tue, 25 Sep 2012 20:08:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PK895u035405; Tue, 25 Sep 2012 20:08:09 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PK89t6035401; Tue, 25 Sep 2012 20:08:09 GMT (envelope-from madpilot) Date: Tue, 25 Sep 2012 20:08:09 GMT Message-Id: <201209252008.q8PK89t6035401@freefall.freebsd.org> To: madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Cc: Subject: Re: ports/172009: games/xabacas: Update to version 7.7.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 20:08:09 -0000 Synopsis: games/xabacas: Update to version 7.7.0 Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Tue Sep 25 20:08:09 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172009 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 21:13:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 944A2106564A; Tue, 25 Sep 2012 21:13:11 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 682868FC15; Tue, 25 Sep 2012 21:13:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PLDBHD098602; Tue, 25 Sep 2012 21:13:11 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PLDB0c098598; Tue, 25 Sep 2012 21:13:11 GMT (envelope-from madpilot) Date: Tue, 25 Sep 2012 21:13:11 GMT Message-Id: <201209252113.q8PLDB0c098598@freefall.freebsd.org> To: madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Cc: Subject: Re: ports/171955: astro/gpscorrelate: Update to version 1.6.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 21:13:11 -0000 Synopsis: astro/gpscorrelate: Update to version 1.6.1 Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Tue Sep 25 21:13:10 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171955 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 25 23:50:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ACE56106566B for ; Tue, 25 Sep 2012 23:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6BC988FC14 for ; Tue, 25 Sep 2012 23:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8PNo8Rf035784 for ; Tue, 25 Sep 2012 23:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8PNo82o035783; Tue, 25 Sep 2012 23:50:08 GMT (envelope-from gnats) Resent-Date: Tue, 25 Sep 2012 23:50:08 GMT Resent-Message-Id: <201209252350.q8PNo82o035783@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jin-Sih Lin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0823A106564A for ; Tue, 25 Sep 2012 23:47:30 +0000 (UTC) (envelope-from root@deep.tw) Received: from deep.tw (220-134-39-129.HINET-IP.hinet.net [220.134.39.129]) by mx1.freebsd.org (Postfix) with ESMTP id 75C5C8FC1A for ; Tue, 25 Sep 2012 23:47:29 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id 022815CE7; Wed, 26 Sep 2012 07:47:21 +0800 (CST) Message-Id: <20120925234722.022815CE7@deep.tw> Date: Wed, 26 Sep 2012 07:47:21 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172076: [MAINTAINER] www/node: update to 0.8.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 23:50:08 -0000 >Number: 172076 >Category: ports >Synopsis: [MAINTAINER] www/node: update to 0.8.10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Sep 25 23:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jin-Sih Lin >Release: FreeBSD 10.0-CURRENT i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD deep.tw 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Aug 18 08:09:36 CST 2012 >Description: - Update to 0.8.10 Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- node-0.8.10.patch begins here --- diff -ruN --exclude=CVS ../node.orig/Makefile ./Makefile --- ../node.orig/Makefile 2012-09-15 10:35:02.000000000 +0800 +++ ./Makefile 2012-09-26 07:06:51.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= node -PORTVERSION= 0.8.9 +PORTVERSION= 0.8.10 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-v${PORTVERSION} diff -ruN --exclude=CVS ../node.orig/distinfo ./distinfo --- ../node.orig/distinfo 2012-09-15 10:35:02.000000000 +0800 +++ ./distinfo 2012-09-26 07:07:06.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (node-v0.8.9.tar.gz) = 320f06877c5e4b4dcc407c76c4d6dcf24384211c2ee22f8bc794a8ec898136ba -SIZE (node-v0.8.9.tar.gz) = 12146570 +SHA256 (node-v0.8.10.tar.gz) = ce495ab8fee58b4df49d46be2b08fabdd2fcb3880982aedda8e88751e2a2011b +SIZE (node-v0.8.10.tar.gz) = 11818602 --- node-0.8.10.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 00:20:38 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B8EAB106564A; Wed, 26 Sep 2012 00:20:38 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8CA4F8FC0C; Wed, 26 Sep 2012 00:20:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q0KcoU072531; Wed, 26 Sep 2012 00:20:38 GMT (envelope-from swills@freefall.freebsd.org) Received: (from swills@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q0Kcm0072519; Wed, 26 Sep 2012 00:20:38 GMT (envelope-from swills) Date: Wed, 26 Sep 2012 00:20:38 GMT Message-Id: <201209260020.q8Q0Kcm0072519@freefall.freebsd.org> To: swills@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: swills@FreeBSD.org Cc: Subject: Re: ports/172076: [MAINTAINER] www/node: update to 0.8.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 00:20:38 -0000 Synopsis: [MAINTAINER] www/node: update to 0.8.10 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: swills Responsible-Changed-When: Wed Sep 26 00:20:37 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172076 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 01:20:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6374E1065670 for ; Wed, 26 Sep 2012 01:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1996F8FC14 for ; Wed, 26 Sep 2012 01:20:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q1K5sb024239 for ; Wed, 26 Sep 2012 01:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q1K5rW024233; Wed, 26 Sep 2012 01:20:05 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 01:20:05 GMT Resent-Message-Id: <201209260120.q8Q1K5rW024233@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jan Beich Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A58A3106566B for ; Wed, 26 Sep 2012 01:18:15 +0000 (UTC) (envelope-from jbeich@tormail.org) Received: from outgoing.tormail.org (outgoing.tormail.org [82.221.96.22]) by mx1.freebsd.org (Postfix) with ESMTP id 4482B8FC08 for ; Wed, 26 Sep 2012 01:18:14 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=internal.tormail.org) by outgoing.tormail.org with esmtp (Exim 4.72) (envelope-from ) id 1TGgGS-0004T8-Rx for FreeBSD-gnats-submit@freebsd.org; Wed, 26 Sep 2012 05:18:13 +0400 Received: from jbeich by internal.tormail.org with local (Exim 4.63) (envelope-from ) id 1TGgEu-00072L-0j for FreeBSD-gnats-submit@freebsd.org; Wed, 26 Sep 2012 01:16:43 +0000 Message-Id: <1TGgEu-00072L-0j@internal.tormail.org> Date: Wed, 26 Sep 2012 06:16:06 +0500 From: Jan Beich To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172077: [patch] devel/gdb: drop dependency on devel/readline X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 01:20:06 -0000 >Number: 172077 >Category: ports >Synopsis: [patch] devel/gdb: drop dependency on devel/readline >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 01:20:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jan Beich >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: http://sourceware.org/git/?p=gdb.git;a=blobdiff;f=gdb/tui/tui-io.c;h=afcd9f9 >Description: Partially revert r289869. readline removal from base was met with flak[1]. [1] http://marc.info/?l=freebsd-current&m=132254304216015 >How-To-Repeat: >Fix: --- base_readline.diff begins here --- Index: devel/gdb/Makefile =================================================================== --- devel/gdb/Makefile (revision 304222) +++ devel/gdb/Makefile (working copy) @@ -39,9 +39,9 @@ MAN1= gdb${VER}.1 ONLY_FOR_ARCHS= i386 amd64 # untested elsewhere, might work -# Forcing to use readline.6 from ports (newer readline in FreeBSD world is not -# compatible anymore). -USE_READLINE= port +# renamed in readline 6.0 +CFLAGS+= -D_rl_echoing_p=readline_echoing_p +USE_READLINE= base OPTIONS_DEFINE= DEBUG EXPAT PYTHON THREADS GDB_LINK GDB_LINK_DESC= Create the gdb link --- base_readline.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 01:20:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A48A1106566C; Wed, 26 Sep 2012 01:20:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E40478FC12; Wed, 26 Sep 2012 01:20:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q1KHWb026144; Wed, 26 Sep 2012 01:20:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q1KHJn026132; Wed, 26 Sep 2012 01:20:17 GMT (envelope-from edwin) Date: Wed, 26 Sep 2012 01:20:17 GMT Message-Id: <201209260120.q8Q1KHJn026132@freefall.freebsd.org> To: jbeich@tormail.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172077: [patch] devel/gdb: drop dependency on devel/readline X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 01:20:18 -0000 Synopsis: [patch] devel/gdb: drop dependency on devel/readline State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Sep 26 01:20:17 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172077 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 01:30:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6DF2A106566C for ; Wed, 26 Sep 2012 01:30:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 57F608FC08 for ; Wed, 26 Sep 2012 01:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q1UEX7033147 for ; Wed, 26 Sep 2012 01:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q1UE9k033140; Wed, 26 Sep 2012 01:30:14 GMT (envelope-from gnats) Date: Wed, 26 Sep 2012 01:30:14 GMT Message-Id: <201209260130.q8Q1UE9k033140@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/172077: [patch] devel/gdb: drop dependency on devel/readline X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 01:30:14 -0000 The following reply was made to PR ports/172077; it has been noted by GNATS. From: Edwin Groothuis To: luca.pizzamiglio@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/172077: [patch] devel/gdb: drop dependency on devel/readline Date: Wed, 26 Sep 2012 01:20:14 UT Maintainer of devel/gdb, Please note that PR ports/172077 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/172077 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 02:00:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 287641065673 for ; Wed, 26 Sep 2012 02:00:34 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 010708FC14 for ; Wed, 26 Sep 2012 02:00:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q20Xvj061462 for ; Wed, 26 Sep 2012 02:00:33 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q20XSD061457; Wed, 26 Sep 2012 02:00:33 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 02:00:33 GMT Resent-Message-Id: <201209260200.q8Q20XSD061457@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kevin Zheng Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2055810656FB for ; Wed, 26 Sep 2012 01:57:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E66328FC0A for ; Wed, 26 Sep 2012 01:57:30 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q1vUA9050057 for ; Wed, 26 Sep 2012 01:57:30 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8Q1vUlH050056; Wed, 26 Sep 2012 01:57:30 GMT (envelope-from nobody) Message-Id: <201209260157.q8Q1vUlH050056@red.freebsd.org> Date: Wed, 26 Sep 2012 01:57:30 GMT From: Kevin Zheng To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172078: [patch] Fix distfile for multimedia/mplayer-skins X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 02:00:34 -0000 >Number: 172078 >Category: ports >Synopsis: [patch] Fix distfile for multimedia/mplayer-skins >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 02:00:33 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kevin Zheng >Release: 9.0-RELEASE-p3 >Organization: >Environment: FreeBSD sigma.local 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 01:47:53 UTC 2012 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update Clearlooks skin to upstream 1.5 by fixing Makefile.skins and distinfo. >How-To-Repeat: Install multimedia/mplayer-skins with SKIN_CLEARLOOKS set. It won't work, trust me. >Fix: Apply the attached patch. Patch attached with submission follows: diff -ruN /usr/ports/multimedia/mplayer-skins/Makefile.skins mplayer-skins/Makefile.skins --- /usr/ports/multimedia/mplayer-skins/Makefile.skins 2012-01-11 13:16:58.000000000 -0600 +++ mplayer-skins/Makefile.skins 2012-09-25 20:45:47.000000000 -0500 @@ -10,7 +10,7 @@ BLUECURVE_FILE= bluecurve-1.3 BLUEHEART_FILE= BlueHeart-1.5 CANARY_FILE= Canary-1.2 -CLEARLOOKS_FILE= Clearlooks-1.4 +CLEARLOOKS_FILE= Clearlooks-1.5 CORELIAN_FILE= Corelian-1.1 CORNERMP_AQUA_FILE= CornerMP-aqua-1.4 CORNERMP_FILE= CornerMP-1.2 diff -ruN /usr/ports/multimedia/mplayer-skins/distinfo mplayer-skins/distinfo --- /usr/ports/multimedia/mplayer-skins/distinfo 2012-01-11 13:16:58.000000000 -0600 +++ mplayer-skins/distinfo 2012-09-25 20:49:10.000000000 -0500 @@ -12,8 +12,8 @@ SIZE (mplayer-skins/BlueHeart-1.5.tar.bz2) = 281051 SHA256 (mplayer-skins/Canary-1.2.tar.bz2) = cb39f7d6685dfb49ca13e928969f71e5ecfcdd303fa540a46eb9ea9f154b1adf SIZE (mplayer-skins/Canary-1.2.tar.bz2) = 104013 -SHA256 (mplayer-skins/Clearlooks-1.4.tar.bz2) = 94a6be03b4e0069f71e157debb01a764793bb5e21b808fdb6dd16cb6c472f7c1 -SIZE (mplayer-skins/Clearlooks-1.4.tar.bz2) = 39574 +SHA256 (mplayer-skins/Clearlooks-1.5.tar.bz2) = 6db7a71e31562d0e6c82c592bc6c3b31369c327b7d937f55baffb057ec087d80 +SIZE (mplayer-skins/Clearlooks-1.4.tar.bz2) = 39579 SHA256 (mplayer-skins/Corelian-1.1.tar.bz2) = 60d523b2d24e547233c00d1425aa9ca49edf1c3b5e80f89b6a65464af7c1706e SIZE (mplayer-skins/Corelian-1.1.tar.bz2) = 284423 SHA256 (mplayer-skins/CornerMP-1.2.tar.bz2) = 3d4320a178f2f8103b8f86b05c421f891df1c86f81a72651e77633f3df63016a >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 02:00:46 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 879861065670; Wed, 26 Sep 2012 02:00:46 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5B34B8FC18; Wed, 26 Sep 2012 02:00:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q20kpq063141; Wed, 26 Sep 2012 02:00:46 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q20kAs063131; Wed, 26 Sep 2012 02:00:46 GMT (envelope-from edwin) Date: Wed, 26 Sep 2012 02:00:46 GMT Message-Id: <201209260200.q8Q20kAs063131@freefall.freebsd.org> To: kevinz5000@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172078: [patch] Fix distfile for multimedia/mplayer-skins X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 02:00:46 -0000 Synopsis: [patch] Fix distfile for multimedia/mplayer-skins State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Sep 26 02:00:45 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172078 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 02:10:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 839011065672 for ; Wed, 26 Sep 2012 02:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6E9EB8FC08 for ; Wed, 26 Sep 2012 02:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q2ACnS069729 for ; Wed, 26 Sep 2012 02:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q2ACce069724; Wed, 26 Sep 2012 02:10:12 GMT (envelope-from gnats) Date: Wed, 26 Sep 2012 02:10:12 GMT Message-Id: <201209260210.q8Q2ACce069724@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/172078: [patch] Fix distfile for multimedia/mplayer-skins X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 02:10:12 -0000 The following reply was made to PR ports/172078; it has been noted by GNATS. From: Edwin Groothuis To: thomas.e.zander@googlemail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/172078: [patch] Fix distfile for multimedia/mplayer-skins Date: Wed, 26 Sep 2012 02:00:42 UT Maintainer of multimedia/mplayer-skins, Please note that PR ports/172078 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/172078 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 04:10:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E72E6106566C for ; Wed, 26 Sep 2012 04:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A6F1A8FC0C for ; Wed, 26 Sep 2012 04:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q4A9c4077491 for ; Wed, 26 Sep 2012 04:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q4A9EK077485; Wed, 26 Sep 2012 04:10:09 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 04:10:09 GMT Resent-Message-Id: <201209260410.q8Q4A9EK077485@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jan Beich Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 60219106564A for ; Wed, 26 Sep 2012 04:02:12 +0000 (UTC) (envelope-from jbeich@tormail.org) Received: from outgoing.tormail.org (outgoing.tormail.org [82.221.96.22]) by mx1.freebsd.org (Postfix) with ESMTP id 042A68FC0A for ; Wed, 26 Sep 2012 04:02:11 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=internal.tormail.org) by outgoing.tormail.org with esmtp (Exim 4.72) (envelope-from ) id 1TGip7-0004jX-NK for FreeBSD-gnats-submit@freebsd.org; Wed, 26 Sep 2012 08:02:10 +0400 Received: from jbeich by internal.tormail.org with local (Exim 4.63) (envelope-from ) id 1TGino-000MW8-JC for FreeBSD-gnats-submit@freebsd.org; Wed, 26 Sep 2012 04:00:51 +0000 Message-Id: <1TGino-000MW8-JC@internal.tormail.org> Date: Wed, 26 Sep 2012 05:57:50 +0200 From: Jan Beich To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172079: [patch] bsd.port.mk: allow using base readline on 10.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 04:10:10 -0000 >Number: 172079 >Category: ports >Synopsis: [patch] bsd.port.mk: allow using base readline on 10.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 04:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jan Beich >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: blocks ports/172077 >Description: libreadline is still present on 10.0-CURRENT. Let's avoid using imaginary OSVERSION values. >How-To-Repeat: >Fix: --- base_readline.diff begins here --- Index: Mk/bsd.port.mk =================================================================== --- Mk/bsd.port.mk (revision 304639) +++ Mk/bsd.port.mk (working copy) @@ -1699,7 +1710,7 @@ MAKE_ENV+= ${b}="${${b}}" .endif .if defined(USE_READLINE) -.if ${USE_READLINE} == "port" || ${OSVERSION} > 1000000 +.if ${USE_READLINE} == "port" LIB_DEPENDS+= readline.6:${PORTSDIR}/devel/readline CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -lreadline --- base_readline.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 04:10:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7CAC106564A; Wed, 26 Sep 2012 04:10:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BAC0D8FC12; Wed, 26 Sep 2012 04:10:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q4AKta080005; Wed, 26 Sep 2012 04:10:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q4AKH2079994; Wed, 26 Sep 2012 04:10:20 GMT (envelope-from edwin) Date: Wed, 26 Sep 2012 04:10:20 GMT Message-Id: <201209260410.q8Q4AKH2079994@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172079: [patch] bsd.port.mk: allow using base readline on 10.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 04:10:21 -0000 Synopsis: [patch] bsd.port.mk: allow using base readline on 10.0 Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 26 04:10:20 UTC 2012 Responsible-Changed-Why: bsd.port.mk is portmgr territory (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172079 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 04:40:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 855131065679 for ; Wed, 26 Sep 2012 04:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B0FFE8FC08 for ; Wed, 26 Sep 2012 04:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q4e7OP006686 for ; Wed, 26 Sep 2012 04:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q4e7gl006671; Wed, 26 Sep 2012 04:40:07 GMT (envelope-from gnats) Date: Wed, 26 Sep 2012 04:40:07 GMT Message-Id: <201209260440.q8Q4e7gl006671@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/172074: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 04:40:08 -0000 The following reply was made to PR ports/172074; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/172074: commit references a PR Date: Wed, 26 Sep 2012 04:39:41 +0000 (UTC) Author: ohauer Date: Wed Sep 26 04:39:30 2012 New Revision: 304874 URL: http://svn.freebsd.org/changeset/ports/304874 Log: - remove dead code from Makefile PR: ports/172074 Submitted by: ohauer Approved by: Richard E Neese (maintainer) Modified: head/www/fusionpbx/Makefile Modified: head/www/fusionpbx/Makefile ============================================================================== --- head/www/fusionpbx/Makefile Wed Sep 26 03:18:26 2012 (r304873) +++ head/www/fusionpbx/Makefile Wed Sep 26 04:39:30 2012 (r304874) @@ -37,14 +37,6 @@ PDOMYSQL_DESC= Install MySQL PDO Connect .include -.for opt in ${ALL_OPTIONS} -.if ${PORT_OPTIONS:M${opt}} -PLIST_SUB+= ${opt}="" -.else -PLIST_SUB+= ${opt}="@comment " -.endif -.endfor - .if ${PORT_OPTIONS:MPDOPGSQL} USE_PGSQL= yes USE_PHP+= pgsql pdo_pgsql _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 05:09:50 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 47EAC106566B; Wed, 26 Sep 2012 05:09:50 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1B57A8FC08; Wed, 26 Sep 2012 05:09:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q59nkR031994; Wed, 26 Sep 2012 05:09:49 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q59nJc031990; Wed, 26 Sep 2012 05:09:49 GMT (envelope-from culot) Date: Wed, 26 Sep 2012 05:09:49 GMT Message-Id: <201209260509.q8Q59nJc031990@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/172054: security/find_zlib: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 05:09:50 -0000 Synopsis: security/find_zlib: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Wed Sep 26 05:09:49 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172054 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 05:10:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EAD121065674 for ; Wed, 26 Sep 2012 05:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C27A48FC1A for ; Wed, 26 Sep 2012 05:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q5AA8U032027 for ; Wed, 26 Sep 2012 05:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q5AAQL032026; Wed, 26 Sep 2012 05:10:10 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 05:10:10 GMT Resent-Message-Id: <201209260510.q8Q5AAQL032026@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexander Kojevnikov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A106106564A for ; Wed, 26 Sep 2012 05:09:38 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1A1278FC0C for ; Wed, 26 Sep 2012 05:09:38 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q59bBM048977 for ; Wed, 26 Sep 2012 05:09:37 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8Q59b33048976; Wed, 26 Sep 2012 05:09:37 GMT (envelope-from nobody) Message-Id: <201209260509.q8Q59b33048976@red.freebsd.org> Date: Wed, 26 Sep 2012 05:09:37 GMT From: Alexander Kojevnikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172081: [maintainer update] audio/spek 0.8.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 05:10:11 -0000 >Number: 172081 >Category: ports >Synopsis: [maintainer update] audio/spek 0.8.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 05:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Alexander Kojevnikov >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD alex-desktop 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 02:52:29 UTC 2012 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Attached patch updates audio/spek to 0.8.0 >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/dist/freebsd/Makefile b/dist/freebsd/Makefile index 1389616..23cedfd 100644 --- a/dist/freebsd/Makefile +++ b/dist/freebsd/Makefile @@ -6,22 +6,26 @@ # PORTNAME= spek -PORTVERSION= 0.7 -PORTREVISION= 3 +PORTVERSION= 0.8.0 CATEGORIES= audio -MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} +MASTER_SITES= http://cloud.github.com/downloads/alexkay/${PORTNAME}/ MAINTAINER= alexander@kojevnikov.com COMMENT= Acoustic spectrum analyser -LIB_DEPENDS= avcodec.1:${PORTSDIR}/multimedia/ffmpeg +LICENSE= GPLv3 + +LIB_DEPENDS= avcodec:${PORTSDIR}/multimedia/ffmpeg MAN1= spek.1 -USE_BZIP2= yes +USE_XZ= yes USE_GMAKE= yes -USE_GNOME= gtk20 desktopfileutils USE_GETTEXT= yes +USE_GNOME= desktopfileutils +USE_WX= 2.8+ +WX_UNICODE= yes +WX_CONF_ARGS= absolute GNU_CONFIGURE= yes INSTALLS_ICONS= yes MAKE_JOBS_SAFE= yes diff --git a/dist/freebsd/distinfo b/dist/freebsd/distinfo index 95cbfca..e4bad6c 100644 --- a/dist/freebsd/distinfo +++ b/dist/freebsd/distinfo @@ -1,2 +1,2 @@ -SHA256 (spek-0.7.tar.bz2) = 61fe1ce33e7570a6720c81fb377edc7a9d1c0f93b6eca27a387cfee5eaa323f4 -SIZE (spek-0.7.tar.bz2) = 383757 +SHA256 (spek-0.8.0.tar.xz) = 7597506deac687b8cd84f7c219793dfaa1f793380a3e79a5ca5d7a7faab990a1 +SIZE (spek-0.8.0.tar.xz) = 170768 diff --git a/dist/freebsd/pkg-descr b/dist/freebsd/pkg-descr index 9868026..85da933 100644 --- a/dist/freebsd/pkg-descr +++ b/dist/freebsd/pkg-descr @@ -1,4 +1,4 @@ Spek helps to analyse your audio files by showing their spectrogram. Spek supports all popular lossy and lossless audio file formats. -WWW: http://www.spek-project.org/ +WWW: http://spek-project.org/ diff --git a/dist/freebsd/pkg-plist b/dist/freebsd/pkg-plist index b309ecd..9de3d6a 100644 --- a/dist/freebsd/pkg-plist +++ b/dist/freebsd/pkg-plist @@ -6,14 +6,22 @@ share/icons/hicolor/24x24/apps/spek.png share/icons/hicolor/32x32/apps/spek.png share/icons/hicolor/48x48/apps/spek.png share/icons/hicolor/scalable/apps/spek.svg +share/locale/cs/LC_MESSAGES/spek.mo +share/locale/da/LC_MESSAGES/spek.mo share/locale/de/LC_MESSAGES/spek.mo +share/locale/eo/LC_MESSAGES/spek.mo share/locale/es/LC_MESSAGES/spek.mo share/locale/fr/LC_MESSAGES/spek.mo +share/locale/it/LC_MESSAGES/spek.mo +share/locale/ja/LC_MESSAGES/spek.mo share/locale/nl/LC_MESSAGES/spek.mo share/locale/pl/LC_MESSAGES/spek.mo +share/locale/pt_BR/LC_MESSAGES/spek.mo share/locale/ru/LC_MESSAGES/spek.mo share/locale/sv/LC_MESSAGES/spek.mo share/locale/uk/LC_MESSAGES/spek.mo +share/locale/zh_CN/LC_MESSAGES/spek.mo +share/locale/zh_TW/LC_MESSAGES/spek.mo @dirrmtry share/applications @dirrmtry share/icons/hicolor/16x16/apps @dirrmtry share/icons/hicolor/16x16 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 05:50:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6DCEE106566C for ; Wed, 26 Sep 2012 05:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 400A48FC0C for ; Wed, 26 Sep 2012 05:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q5o75J068811 for ; Wed, 26 Sep 2012 05:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q5o7ei068810; Wed, 26 Sep 2012 05:50:07 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 05:50:07 GMT Resent-Message-Id: <201209260550.q8Q5o7ei068810@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Attila Nagy Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5786F106564A for ; Wed, 26 Sep 2012 05:49:28 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 43D0D8FC12 for ; Wed, 26 Sep 2012 05:49:28 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q5nRee014832 for ; Wed, 26 Sep 2012 05:49:27 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8Q5nRb7014831; Wed, 26 Sep 2012 05:49:27 GMT (envelope-from nobody) Message-Id: <201209260549.q8Q5nRb7014831@red.freebsd.org> Date: Wed, 26 Sep 2012 05:49:27 GMT From: Attila Nagy To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172082: maintainer update: mail/dovecot2 and mail/dovecot2-pigeonhole X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 05:50:07 -0000 >Number: 172082 >Category: ports >Synopsis: maintainer update: mail/dovecot2 and mail/dovecot2-pigeonhole >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 05:50:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Attila Nagy >Release: >Organization: >Environment: >Description: Upgrade dovecot2 to 2.1.10 (http://dovecot.markmail.org/thread/7ymmjyl5ra7dzvr5) and dovecot2-pigeonhole to 0.3.3 (http://dovecot.markmail.org/thread/e3g4abor5vuf6z63) >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN dovecot2.orig/Makefile dovecot2/Makefile --- dovecot2.orig/Makefile 2012-09-04 11:34:31.177510000 +0200 +++ dovecot2/Makefile 2012-09-26 06:57:25.277831632 +0200 @@ -6,7 +6,7 @@ # PORTNAME= dovecot -PORTVERSION= 2.1.8 +PORTVERSION= 2.1.10 CATEGORIES= mail ipv6 MASTER_SITES= http://www.dovecot.org/releases/${PORTVERSION:R}/ diff -ruN dovecot2.orig/distinfo dovecot2/distinfo --- dovecot2.orig/distinfo 2012-07-03 08:03:51.947509000 +0200 +++ dovecot2/distinfo 2012-09-26 06:58:28.559222072 +0200 @@ -1,2 +1,2 @@ -SHA256 (dovecot-2.1.8.tar.gz) = 48807384f815072cf5a9c8a94726b4179433d4a3dd35f33cbe8db3a7880b000d -SIZE (dovecot-2.1.8.tar.gz) = 3807008 +SHA256 (dovecot-2.1.10.tar.gz) = 8acc99c2a7e8b598aef2fef443c5fb6779099e57573f86a1eaa2b8479d0becb9 +SIZE (dovecot-2.1.10.tar.gz) = 3843490 diff -ruN dovecot2.orig/pkg-plist dovecot2/pkg-plist --- dovecot2.orig/pkg-plist 2012-07-23 14:46:51.847499000 +0200 +++ dovecot2/pkg-plist 2012-09-26 07:10:50.266747342 +0200 @@ -43,11 +43,13 @@ include/dovecot/config-parser.h include/dovecot/config-request.h include/dovecot/config.h +include/dovecot/connection.h include/dovecot/crc32.h include/dovecot/cydir-storage.h include/dovecot/cydir-sync.h include/dovecot/data-stack.h include/dovecot/db-checkpassword.h +include/dovecot/db-dict.h include/dovecot/db-ldap.h include/dovecot/db-passwd-file.h include/dovecot/db-sql.h @@ -163,6 +165,7 @@ include/dovecot/istream-seekable.h include/dovecot/istream-tee.h include/dovecot/istream.h +include/dovecot/json-parser.h include/dovecot/lda-settings.h include/dovecot/lib-signals.h include/dovecot/lib.h @@ -412,6 +415,9 @@ lib/dovecot/lib20_replication_plugin.a lib/dovecot/lib20_replication_plugin.la lib/dovecot/lib20_replication_plugin.so +lib/dovecot/lib20_mailbox_alias_plugin.a +lib/dovecot/lib20_mailbox_alias_plugin.la +lib/dovecot/lib20_mailbox_alias_plugin.so lib/dovecot/lib20_mail_log_plugin.a lib/dovecot/lib20_mail_log_plugin.la lib/dovecot/lib20_mail_log_plugin.so diff -ruN dovecot2-pigeonhole.orig/Makefile dovecot2-pigeonhole/Makefile --- dovecot2-pigeonhole.orig/Makefile 2012-07-23 14:46:51.847499000 +0200 +++ dovecot2-pigeonhole/Makefile 2012-09-26 06:58:10.916965605 +0200 @@ -6,8 +6,8 @@ # PORTNAME= dovecot-pigeonhole -PORTVERSION= 0.3.1 -PORTREVISION= 2 +PORTVERSION= 0.3.3 +#PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= http://www.rename-it.nl/dovecot/${DOVECOTVERSION}/ DISTNAME= ${PORTNAME:C/-/-${DOVECOTVERSION}-/}-${PORTVERSION} diff -ruN dovecot2-pigeonhole.orig/distinfo dovecot2-pigeonhole/distinfo --- dovecot2-pigeonhole.orig/distinfo 2012-05-29 15:07:32.637152000 +0200 +++ dovecot2-pigeonhole/distinfo 2012-09-26 06:58:33.030533702 +0200 @@ -1,2 +1,2 @@ -SHA256 (dovecot-2.1-pigeonhole-0.3.1.tar.gz) = e95d86c5cd912c9a7e180414ffd5eee52e1b5dc8abef3d5762b950d1de86b5c7 -SIZE (dovecot-2.1-pigeonhole-0.3.1.tar.gz) = 1084148 +SHA256 (dovecot-2.1-pigeonhole-0.3.3.tar.gz) = 1d581f6292c6e760b26a06193a0af266ba3b6f3a0431e6617fcf6e1c84f7dd0e +SIZE (dovecot-2.1-pigeonhole-0.3.3.tar.gz) = 1078559 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 06:30:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26B5C106566B for ; Wed, 26 Sep 2012 06:30:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D918C8FC0C for ; Wed, 26 Sep 2012 06:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q6UBQt003833 for ; Wed, 26 Sep 2012 06:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q6UBlo003828; Wed, 26 Sep 2012 06:30:11 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 06:30:11 GMT Resent-Message-Id: <201209260630.q8Q6UBlo003828@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F2C0106564A for ; Wed, 26 Sep 2012 06:22:33 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 4ABED8FC0C for ; Wed, 26 Sep 2012 06:22:33 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q6MWXm064778 for ; Wed, 26 Sep 2012 06:22:32 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8Q6MWTU064776; Wed, 26 Sep 2012 06:22:32 GMT (envelope-from nobody) Message-Id: <201209260622.q8Q6MWTU064776@red.freebsd.org> Date: Wed, 26 Sep 2012 06:22:32 GMT From: Dmitry To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172083: print/ghostscript9 configurable dependency for graphics/svgalib [patch] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 06:30:12 -0000 >Number: 172083 >Category: ports >Synopsis: print/ghostscript9 configurable dependency for graphics/svgalib [patch] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 06:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dmitry >Release: 9.1-PRERELEASE >Organization: - >Environment: FreeBSD *** 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0 r240914: *** root@***:/usr/obj/usr/src/sys/GENERIC_ amd64 >Description: configurable dependency for graphics/svgalib >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2012-09-05 01:05:49.000000000 +0600 +++ Makefile 2012-09-26 12:04:20.000000000 +0600 @@ -74,8 +74,8 @@ SUB_LIST= DATADIR=${DATADIR} PORTVERSION=${PORTVERSION} PKGMESSAGE= ${WRKDIR}/pkg-message -OPTIONS_DEFINE= A4SIZE CUPS FONTCONFIG ICONV LIBPAPER GTK2 X11 -OPTIONS_DEFAULT= CUPS FONTCONFIG ICONV LIBPAPER X11 +OPTIONS_DEFINE= A4SIZE CUPS FONTCONFIG ICONV LIBPAPER GTK2 SVGALIB X11 +OPTIONS_DEFAULT= CUPS FONTCONFIG ICONV LIBPAPER SVGALIB X11 A4SIZE_DESC= Set A4 (not Letter) as the default paper size FONTCONFIG_DESC=Enable fontconfig support NO_OPTIONS_SORT=yes --- files/Makefile.drivers_post.orig 2012-09-05 01:05:49.000000000 +0600 +++ files/Makefile.drivers_post 2012-09-26 12:03:33.000000000 +0600 @@ -51,7 +51,7 @@ .undef _VGA_DEVS .for D in ${VGA_DEVS} -.if ${PORT_OPTIONS:MGS_${D}} +.if ${PORT_OPTIONS:MSVGALIB} && ${PORT_OPTIONS:MGS_${D}} .if ${ARCH:Mamd64} || ${ARCH:Mi386} _VGA_DEVS+= ${D} .else >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 06:30:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 31DAF106566C; Wed, 26 Sep 2012 06:30:35 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 056038FC0C; Wed, 26 Sep 2012 06:30:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q6UYWe005733; Wed, 26 Sep 2012 06:30:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q6UYS0005728; Wed, 26 Sep 2012 06:30:34 GMT (envelope-from edwin) Date: Wed, 26 Sep 2012 06:30:34 GMT Message-Id: <201209260630.q8Q6UYS0005728@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, doceng@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172083: print/ghostscript9 configurable dependency for graphics/svgalib [patch] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 06:30:35 -0000 Synopsis: print/ghostscript9 configurable dependency for graphics/svgalib [patch] Responsible-Changed-From-To: freebsd-ports-bugs->doceng Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 26 06:30:33 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172083 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 06:50:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C24E1065686 for ; Wed, 26 Sep 2012 06:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 645078FC12 for ; Wed, 26 Sep 2012 06:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q6oATJ026771 for ; Wed, 26 Sep 2012 06:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q6oA7K026770; Wed, 26 Sep 2012 06:50:10 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 06:50:10 GMT Resent-Message-Id: <201209260650.q8Q6oA7K026770@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dominic Fandrey Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A45A5106566B for ; Wed, 26 Sep 2012 06:45:35 +0000 (UTC) (envelope-from kamikaze@bsdforen.de) Received: from mail.server1.bsdforen.de (bsdforen.de [82.193.243.81]) by mx1.freebsd.org (Postfix) with ESMTP id 5CC0D8FC16 for ; Wed, 26 Sep 2012 06:45:34 +0000 (UTC) Received: from mobileKamikaze.norad (HSI-KBW-134-3-231-194.hsi14.kabel-badenwuerttemberg.de [134.3.231.194]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.server1.bsdforen.de (Postfix) with ESMTPSA id EA6867E8CB for ; Wed, 26 Sep 2012 08:45:33 +0200 (CEST) Message-Id: <5062A48C.7050309@bsdforen.de> Date: Wed, 26 Sep 2012 08:45:32 +0200 From: Dominic Fandrey To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172084: New ioquake3-devel and iourbanterror source release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dominic Fandrey List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 06:50:10 -0000 >Number: 172084 >Category: ports >Synopsis: New ioquake3-devel and iourbanterror source release >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 06:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dominic Fandrey >Release: RELENG_9 >Organization: private >Environment: System: FreeBSD mobileKamikaze.norad 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0: Thu Sep 20 02:16:43 CEST 2012 root@mobileKamikaze.norad:/usr/obj/HP6510b-9/amd64/usr/src/sys/HP6510b-9 amd64 >Description: Update to the latest ioq3 SVN: - > 50 bug fixes - Adds r_mode -2 to use the desktop resolution >How-To-Repeat: >Fix: --------------040901050700040600090503 Content-Type: text/plain; charset=UTF-8; name="patch-ports-games-ioquake3.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-ports-games-ioquake3.txt" diff -Nur ports/games/ioquake3-devel.orig/Makefile ports/games/ioquake3-devel/Makefile --- ports/games/ioquake3-devel.orig/Makefile 2012-09-25 20:07:52.000000000 +0200 +++ ports/games/ioquake3-devel/Makefile 2012-09-25 20:22:20.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME?= ioquake3-devel DISTVERSION?= 1.36_SVN${SVNREVISION} -PORTREVISION?= 1 +PORTREVISION?= 0 MASTER_SITES?= ftp://deponie.yamagi.org/freebsd/distfiles/ioquake3/ \ http://deponie.yamagi.org/freebsd/distfiles/ioquake3/ @@ -20,7 +20,7 @@ PATCHDIR?= ${WRKDIR}/freebsd-patchset/ PKGMESSAGE?= ${.CURDIR}/../${PORTNAME}/pkg-message -SVNREVISION?= 2244 +SVNREVISION?= 2318 BINSUFFIX?= -devel HAS_DLRENDERER?= yes diff -Nur ports/games/ioquake3-devel.orig/distinfo ports/games/ioquake3-devel/distinfo --- ports/games/ioquake3-devel.orig/distinfo 2012-09-25 20:07:52.000000000 +0200 +++ ports/games/ioquake3-devel/distinfo 2012-09-25 20:19:51.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (ioquake3-devel-1.36_SVN2244.zip) = a7ade108c015a1aa572082900a9995371d7853d6953226ef93bdfad9e46583fb -SIZE (ioquake3-devel-1.36_SVN2244.zip) = 5650901 +SHA256 (ioquake3-devel-1.36_SVN2318.zip) = 5e82c2108425ef3ce7de463ea924b8b83e6d84b38a60c4561195b4d37ab76c15 +SIZE (ioquake3-devel-1.36_SVN2318.zip) = 5657343 --------------040901050700040600090503-- >Release-Note: >Audit-Trail: >Unformatted: This is a multi-part message in MIME format. --------------040901050700040600090503 Content-Type: text/plain; charset=ascii; format=flowed Content-Transfer-Encoding: 7bit From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 08:10:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D26C106564A for ; Wed, 26 Sep 2012 08:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1D7E78FC16 for ; Wed, 26 Sep 2012 08:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q8A9kl004860 for ; Wed, 26 Sep 2012 08:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q8A9Lw004859; Wed, 26 Sep 2012 08:10:09 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 08:10:09 GMT Resent-Message-Id: <201209260810.q8Q8A9Lw004859@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, HASHI Hiroaki Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28F18106564A for ; Wed, 26 Sep 2012 08:08:47 +0000 (UTC) (envelope-from hashiz@stenmark.meridiani.jp) Received: from msagw.biglobe.ne.jp (bsac42420.tk.mesh.ad.jp [133.205.103.2]) by mx1.freebsd.org (Postfix) with ESMTP id C8CFD8FC15 for ; Wed, 26 Sep 2012 08:08:45 +0000 (UTC) Received: from tomba.meridiani.jp (FL1-119-240-151-39.chb.mesh.ad.jp [119.240.151.39]) by smtp-gw.biglobe.ne.jp id QAAB85CD6702; Wed, 26 Sep 2012 16:12:45 +0900 (JST) Received: from stenmark.meridiani.jp (stenmark.meridiani.jp [192.168.1.2]) by tomba.meridiani.jp (8.14.5/8.14.5) with ESMTP id q8Q7Cjks022752 for ; Wed, 26 Sep 2012 16:12:45 +0900 (JST) (envelope-from hashiz@stenmark.meridiani.jp) Received: from stenmark.meridiani.jp (localhost.meridiani.jp [127.0.0.1]) by stenmark.meridiani.jp (8.14.5/8.14.5) with ESMTP id q8Q7CirN014978 for ; Wed, 26 Sep 2012 16:12:44 +0900 (JST) (envelope-from hashiz@stenmark.meridiani.jp) Received: (from hashiz@localhost) by stenmark.meridiani.jp (8.14.5/8.14.5/Submit) id q8Q7Ch7r014977; Wed, 26 Sep 2012 16:12:43 +0900 (JST) (envelope-from hashiz) Message-Id: <201209260712.q8Q7Ch7r014977@stenmark.meridiani.jp> Date: Wed, 26 Sep 2012 16:12:43 +0900 (JST) From: HASHI Hiroaki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172085: [ports] security/sudo can't build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 08:10:10 -0000 >Number: 172085 >Category: ports >Synopsis: [ports] security/sudo can't build >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 08:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: HASHI Hiroaki >Release: FreeBSD 9.1-PRERELEASE i386 >Organization: >Environment: System: FreeBSD stenmark.meridiani.jp 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #40 r240796M: Sat Sep 22 12:36:20 JST 2012 root@stenmark.meridiani.jp:/usr/obj/usr/src/sys/STENMARK i386 >Description: can't build security/sudo 1.8.6p3 >How-To-Repeat: cd /usr/ports/security/sudo make build - snip - libtool: link: cc -o sudoreplay getdate.o sudoreplay.o error.o -Wl,-z -Wl,relro -pie .libs/timestr.o -lgcc -L/usr/local/lib /usr/local/lib/libintl.so /usr/local/lib/libiconv.so -lz ../../common/.libs /libcommon.a ../../compat/.libs/libreplace.a -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/loca l/lib getdate.o: In function `yylex': getdate.c:(.text+0x254): undefined reference to `__stack_chk_fail_local' sudoreplay.o: In function `.L120': sudoreplay.c:(.text+0xbc6): undefined reference to `__stack_chk_fail_local' sudoreplay.o: In function `find_sessions': sudoreplay.c:(.text+0x193c): undefined reference to `__stack_chk_fail_local' ../../common/.libs/libcommon.a(sudo_debug.o): In function `sudo_debug_write2': sudo_debug.c:(.text+0x450): undefined reference to `__stack_chk_fail_local' ../../common/.libs/libcommon.a(term.o): In function `term_copy': term.c:(.text+0x128): undefined reference to `__stack_chk_fail_local' ../../common/.libs/libcommon.a(term.o):term.c:(.text+0x569): more undefined references to `__stack_chk_fail_local' follow *** [sudoreplay] Error code 1 libtool: compile: cc -c -I../../include -I../.. -I. -I. -I../.. -DLIBDIR=\"/usr/local/lib\" -O2 -pipe -I/usr/local/include -fno-strict-aliasing -fvisibility=hidden -fstack-protector -D_BSD_SOURCE -D_PATH_SUDOERS=\"/usr/local/etc/sudoers\" -DSUDOERS_UID=0 -DSUDOERS_GID=0 -DSUDOERS_MODE=0440 -DLOCALEDIR=\"/usr/local/share/locale\" ./toke.c -fPIE -o toke.o >/dev/null 2>&1 1 error *** [all] Error code 2 1 error *** [do-build] Error code 1 Stop in /usr/ports/security/sudo. *** [build] Error code 1 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 08:10:53 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EB07C106566B; Wed, 26 Sep 2012 08:10:53 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BFA458FC16; Wed, 26 Sep 2012 08:10:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8Q8Arfp012877; Wed, 26 Sep 2012 08:10:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8Q8ArYj012873; Wed, 26 Sep 2012 08:10:53 GMT (envelope-from edwin) Date: Wed, 26 Sep 2012 08:10:53 GMT Message-Id: <201209260810.q8Q8ArYj012873@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wxs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172085: [ports] security/sudo can't build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 08:10:54 -0000 Synopsis: [ports] security/sudo can't build Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 26 08:10:53 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172085 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 10:19:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1DE51065673; Wed, 26 Sep 2012 10:19:28 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A56558FC0A; Wed, 26 Sep 2012 10:19:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QAJSlK027343; Wed, 26 Sep 2012 10:19:28 GMT (envelope-from bapt@freefall.freebsd.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QAJSs5027339; Wed, 26 Sep 2012 10:19:28 GMT (envelope-from bapt) Date: Wed, 26 Sep 2012 10:19:28 GMT Message-Id: <201209261019.q8QAJSs5027339@freefall.freebsd.org> To: andrnils@gmail.com, bapt@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bapt@FreeBSD.org Cc: Subject: Re: ports/171943: Build failures due to missing glproto.pc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 10:19:28 -0000 Synopsis: Build failures due to missing glproto.pc State-Changed-From-To: open->closed State-Changed-By: bapt State-Changed-When: Wed Sep 26 10:19:28 UTC 2012 State-Changed-Why: Duplicate of ports/169701 and partially fixed by: r304878 http://www.freebsd.org/cgi/query-pr.cgi?pr=171943 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 11:30:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C6B8D1065676 for ; Wed, 26 Sep 2012 11:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7F1448FC0A for ; Wed, 26 Sep 2012 11:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QBU91R089898 for ; Wed, 26 Sep 2012 11:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QBU9oa089897; Wed, 26 Sep 2012 11:30:09 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 11:30:09 GMT Resent-Message-Id: <201209261130.q8QBU9oa089897@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kazuyoshi Kamitsukasa Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 550391065673 for ; Wed, 26 Sep 2012 11:26:58 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 40DF68FC15 for ; Wed, 26 Sep 2012 11:26:58 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QBQwQ3080382 for ; Wed, 26 Sep 2012 11:26:58 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8QBQwgZ080381; Wed, 26 Sep 2012 11:26:58 GMT (envelope-from nobody) Message-Id: <201209261126.q8QBQwgZ080381@red.freebsd.org> Date: Wed, 26 Sep 2012 11:26:58 GMT From: Kazuyoshi Kamitsukasa To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172088: japanese/ibus-mozc can not be compiled. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 11:30:09 -0000 >Number: 172088 >Category: ports >Synopsis: japanese/ibus-mozc can not be compiled. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 11:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kazuyoshi Kamitsukasa >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD bsd1 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: japanese/ibus-mozc can not be compiled. >How-To-Repeat: Compile japanese/ibus-mozc. >Fix: Modify japanese/mozc-server/Makefile. Patch attached with submission follows: --- japanese/mozc-server/Makefile.orig 2012-09-26 20:01:59.000000000 +0900 +++ japanese/mozc-server/Makefile 2012-09-26 20:03:40.000000000 +0900 @@ -175,7 +175,7 @@ PLIST_DIRS+= ${DATADIR_REL}/icons ${DATADIR_REL} do-build-ibus_mozc: - ${BUILD_MOZC_CMD} build -c ${BUILD_MODE} -j ${MAKE_JOBS_NUMBER} + ${BUILD_MOZC_CMD} build -c ${BUILD_MODE} -j ${MAKE_JOBS_NUMBER} \ unix/ibus/ibus.gyp:ibus_mozc do-install-ibus_mozc: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 11:30:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB4A81065670; Wed, 26 Sep 2012 11:30:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9D3048FC1B; Wed, 26 Sep 2012 11:30:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QBUMcB091386; Wed, 26 Sep 2012 11:30:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QBUM0l091376; Wed, 26 Sep 2012 11:30:22 GMT (envelope-from edwin) Date: Wed, 26 Sep 2012 11:30:22 GMT Message-Id: <201209261130.q8QBUM0l091376@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, daichi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172088: japanese/ibus-mozc can not be compiled. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 11:30:23 -0000 Synopsis: japanese/ibus-mozc can not be compiled. Responsible-Changed-From-To: freebsd-ports-bugs->daichi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 26 11:30:21 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172088 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 11:32:31 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2E5E1065670; Wed, 26 Sep 2012 11:32:30 +0000 (UTC) (envelope-from jase@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C5C5D8FC0A; Wed, 26 Sep 2012 11:32:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QBWU4b099620; Wed, 26 Sep 2012 11:32:30 GMT (envelope-from jase@freefall.freebsd.org) Received: (from jase@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QBWUT7099616; Wed, 26 Sep 2012 12:32:30 +0100 (BST) (envelope-from jase) Date: Wed, 26 Sep 2012 12:32:30 +0100 (BST) Message-Id: <201209261132.q8QBWUT7099616@freefall.freebsd.org> To: jase@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jase@FreeBSD.org From: jase@FreeBSD.org Cc: Subject: Re: ports/172082: maintainer update: mail/dovecot2 and mail/dovecot2-pigeonhole X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 11:32:31 -0000 Synopsis: maintainer update: mail/dovecot2 and mail/dovecot2-pigeonhole Responsible-Changed-From-To: freebsd-ports-bugs->jase Responsible-Changed-By: jase Responsible-Changed-When: Wed 26 Sep 2012 12:32:29 BST Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172082 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 12:30:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3BF6F1065670 for ; Wed, 26 Sep 2012 12:30:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0DB358FC0C for ; Wed, 26 Sep 2012 12:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QCUGr8047976 for ; Wed, 26 Sep 2012 12:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QCUG6K047967; Wed, 26 Sep 2012 12:30:16 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 12:30:16 GMT Resent-Message-Id: <201209261230.q8QCUG6K047967@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kubilay Kocak Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 40424106566B for ; Wed, 26 Sep 2012 12:25:23 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 10CB78FC0A for ; Wed, 26 Sep 2012 12:25:22 +0000 (UTC) Received: by pbbrp8 with SMTP id rp8so2156278pbb.13 for ; Wed, 26 Sep 2012 05:25:22 -0700 (PDT) Received: by 10.68.226.100 with SMTP id rr4mr1951179pbc.143.1348662322470; Wed, 26 Sep 2012 05:25:22 -0700 (PDT) Received: from freebsd-9-amd64.localdomain (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPS id w4sm1846310pav.27.2012.09.26.05.25.19 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 26 Sep 2012 05:25:21 -0700 (PDT) Received: by freebsd-9-amd64.localdomain (Postfix, from userid 1001) id 8987639FDF; Wed, 26 Sep 2012 22:25:16 +1000 (EST) Message-Id: <20120926122516.8987639FDF@freebsd-9-amd64.localdomain> Date: Wed, 26 Sep 2012 22:25:16 +1000 (EST) From: Kubilay Kocak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gd@rambler-co.ru Subject: ports/172090: [PATCH] databases/py-hiredis: Build and link against system/port hiredis.so (not WRKSRC/vendor) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 12:30:17 -0000 >Number: 172090 >Category: ports >Synopsis: [PATCH] databases/py-hiredis: Build and link against system/port hiredis.so (not WRKSRC/vendor) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 12:30:16 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kubilay Kocak >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD freebsd-9-amd64 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Sat Jul 7 21:26:56 EST >Description: The upstream distfile for this port bundles the hiredis source files in WRKSRC/vendor and doesnt actually build or link against the LIB_DEPENDS declared in the Makefile. This PR patches setup.py to link against hiredis.so as installed by the databases/hiredis port. The approach is: - Remove the 'lib' section in setup.py that builds hiredis.so - Point include_dirs to ${LOCALBASE} instead of WRKSRC/vendor - Add library_dirs to 'ext' section to point it to where hiredis.so lives While I'm here: whitespace alignment ====[QA]==== portlint: looks fine. porttest: clean redports: https://redports.org/buildarchive/20120925120310-64334/ confirm linking: databases/py-hiredis/work/hiredis-0.1.1/build/lib.freebsd-9.0-RELEASE-p3-amd64-2.7/hiredis] ldd ./hiredis.so ./hiredis.so: libhiredis.so.0.10 => /usr/local/lib/libhiredis.so.0.10 (0x801203000) libc.so.7 => /lib/libc.so.7 (0x80084a000) ============ Added file(s): - files/patch-setup.py Port maintainer (gd@rambler-co.ru) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- py27-hiredis-0.1.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/databases/py-hiredis/Makefile ./Makefile --- /usr/ports/databases/py-hiredis/Makefile 2012-06-05 12:35:55.000000000 +1000 +++ ./Makefile 2012-09-25 21:38:48.000000000 +1000 @@ -18,8 +18,8 @@ LIB_DEPENDS= hiredis:${PORTSDIR}/databases/hiredis -USE_PYTHON= yes -USE_PYDISTUTILS=yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes PLIST_FILES= %%PYTHON_SITELIBDIR%%/hiredis/__init__.py \ %%PYTHON_SITELIBDIR%%/hiredis/__init__.pyc \ @@ -30,4 +30,7 @@ %%PYTHON_SITELIBDIR%%/hiredis/version.pyo PLIST_DIRS= %%PYTHON_SITELIBDIR%%/hiredis +post-patch: + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/${PYSETUP} + .include diff -ruN --exclude=CVS /usr/ports/databases/py-hiredis/files/patch-setup.py ./files/patch-setup.py --- /usr/ports/databases/py-hiredis/files/patch-setup.py 1970-01-01 10:00:00.000000000 +1000 +++ ./files/patch-setup.py 2012-09-25 21:54:09.000000000 +1000 @@ -0,0 +1,26 @@ +--- ./setup.py.orig 2012-04-18 04:54:11.000000000 +1000 ++++ ./setup.py 2012-09-25 21:54:06.000000000 +1000 +@@ -20,13 +20,10 @@ + if self.distribution.has_ext_modules(): + self.run_command('build_ext') + +-lib = ("hiredis", { +- "sources": ["vendor/hiredis/%s.c" % src for src in ("hiredis", "net", "sds")], +- "include_dirs": ["vendor/hiredis"]}) +- + ext = Extension("hiredis.hiredis", + sources=glob.glob("src/*.c"), +- include_dirs=["src", "vendor"], ++ include_dirs=["src", "%%LOCALBASE%%/include"], ++ library_dirs=["%%LOCALBASE%%/lib"], + libraries=["hiredis"]) + + setup( +@@ -39,7 +36,6 @@ + keywords=["Redis"], + license="BSD", + packages=["hiredis"], +- libraries=[lib], + ext_modules=[ext], + + # Override "install_lib" command --- py27-hiredis-0.1.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 12:30:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86904106566C; Wed, 26 Sep 2012 12:30:30 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 58E438FC17; Wed, 26 Sep 2012 12:30:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QCUUNm049848; Wed, 26 Sep 2012 12:30:30 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QCUU7q049840; Wed, 26 Sep 2012 12:30:30 GMT (envelope-from edwin) Date: Wed, 26 Sep 2012 12:30:30 GMT Message-Id: <201209261230.q8QCUU7q049840@freefall.freebsd.org> To: koobs.freebsd@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172090: [PATCH] databases/py-hiredis: Build and link against system/port hiredis.so (not WRKSRC/vendor) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 12:30:30 -0000 Synopsis: [PATCH] databases/py-hiredis: Build and link against system/port hiredis.so (not WRKSRC/vendor) State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Sep 26 12:30:29 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172090 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 12:40:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7D526106564A for ; Wed, 26 Sep 2012 12:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 62E0E8FC16 for ; Wed, 26 Sep 2012 12:40:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QCe6D8058565 for ; Wed, 26 Sep 2012 12:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QCe6hL058557; Wed, 26 Sep 2012 12:40:06 GMT (envelope-from gnats) Date: Wed, 26 Sep 2012 12:40:06 GMT Message-Id: <201209261240.q8QCe6hL058557@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/172090: [PATCH] databases/py-hiredis: Build and link against system/port hiredis.so (not WRKSRC/vendor) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 12:40:06 -0000 The following reply was made to PR ports/172090; it has been noted by GNATS. From: Edwin Groothuis To: gd@rambler-co.ru Cc: bug-followup@FreeBSD.org Subject: Re: ports/172090: [PATCH] databases/py-hiredis: Build and link against system/port hiredis.so (not WRKSRC/vendor) Date: Wed, 26 Sep 2012 12:30:25 UT Maintainer of databases/py-hiredis, Please note that PR ports/172090 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/172090 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 12:50:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A165B1065678 for ; Wed, 26 Sep 2012 12:50:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8B2AF8FC19 for ; Wed, 26 Sep 2012 12:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QCoChm067415 for ; Wed, 26 Sep 2012 12:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QCoCVh067405; Wed, 26 Sep 2012 12:50:12 GMT (envelope-from gnats) Date: Wed, 26 Sep 2012 12:50:12 GMT Message-Id: <201209261250.q8QCoCVh067405@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Denis Generalov Cc: Subject: Re: ports/172090: [PATCH] databases/py-hiredis: Build and link against system/port hiredis.so (not WRKSRC/vendor) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Denis Generalov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 12:50:12 -0000 The following reply was made to PR ports/172090; it has been noted by GNATS. From: Denis Generalov To: bug-followup@FreeBSD.org Cc: Edwin Groothuis Subject: Re: ports/172090: [PATCH] databases/py-hiredis: Build and link against system/port hiredis.so (not WRKSRC/vendor) Date: Wed, 26 Sep 2012 16:41:06 +0400 On Wed, 26 Sep 2012 12:30:25 UT Edwin Groothuis wrote: > Maintainer of databases/py-hiredis, > > Please note that PR ports/172090 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/172090 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org Looks good for me. -- Denis Generalov From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 12:51:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87D6D106566B; Wed, 26 Sep 2012 12:51:23 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5B5CB8FC12; Wed, 26 Sep 2012 12:51:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QCpNlq075122; Wed, 26 Sep 2012 12:51:23 GMT (envelope-from zeising@freefall.freebsd.org) Received: (from zeising@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QCpNBo075118; Wed, 26 Sep 2012 12:51:23 GMT (envelope-from zeising) Date: Wed, 26 Sep 2012 12:51:23 GMT Message-Id: <201209261251.q8QCpNBo075118@freefall.freebsd.org> To: zeising@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, zeising@FreeBSD.org From: zeising@FreeBSD.org Cc: Subject: Re: ports/172081: [maintainer update] audio/spek 0.8.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 12:51:23 -0000 Synopsis: [maintainer update] audio/spek 0.8.0 Responsible-Changed-From-To: freebsd-ports-bugs->zeising Responsible-Changed-By: zeising Responsible-Changed-When: Wed Sep 26 12:51:22 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172081 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 14:10:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC6581065672 for ; Wed, 26 Sep 2012 14:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C5A968FC14 for ; Wed, 26 Sep 2012 14:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QEA2ua038630 for ; Wed, 26 Sep 2012 14:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QEA2FF038629; Wed, 26 Sep 2012 14:10:02 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 14:10:02 GMT Resent-Message-Id: <201209261410.q8QEA2FF038629@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, HU Dong Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24F94106564A for ; Wed, 26 Sep 2012 14:03:09 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1004C8FC15 for ; Wed, 26 Sep 2012 14:03:09 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QE38TK054697 for ; Wed, 26 Sep 2012 14:03:08 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8QE38Ij054686; Wed, 26 Sep 2012 14:03:08 GMT (envelope-from nobody) Message-Id: <201209261403.q8QE38Ij054686@red.freebsd.org> Date: Wed, 26 Sep 2012 14:03:08 GMT From: HU Dong To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172093: chinese/fcitx fixes a startup warning X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 14:10:03 -0000 >Number: 172093 >Category: ports >Synopsis: chinese/fcitx fixes a startup warning >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 14:10:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: HU Dong >Release: 9.0 release i386 >Organization: None >Environment: FreeBSD hostname 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: fcitx would report 2 warnings when started due to misconfigured file path in xkb.c. *** I/O warning: failed to load external entity "/usr/share/X11/xkb/rules/base.xml" I/O warning: failed to load external entity "/usr/share/X11/xkb/rules/base.extras.xml" >How-To-Repeat: kill all fcitx process, then execute fcitx from any terminal emulator. >Fix: see the attatched patch Patch attached with submission follows: diff -ruN fcitx.bak/files/patch-src__module__xkb__xkb.c fcitx/files/patch-src__module__xkb__xkb.c --- fcitx.bak/files/patch-src__module__xkb__xkb.c 1970-01-01 08:00:00.000000000 +0800 +++ fcitx/files/patch-src__module__xkb__xkb.c 2012-09-26 21:51:22.000000000 +0800 @@ -0,0 +1,20 @@ +--- ./src/module/xkb/xkb.c.orig 2012-09-26 21:43:54.000000000 +0800 ++++ ./src/module/xkb/xkb.c 2012-09-26 21:47:31.000000000 +0800 +@@ -45,7 +45,7 @@ + #include "rules.h" + + #ifndef XKB_RULES_XML_FILE +-#define XKB_RULES_XML_FILE "/usr/share/X11/xkb/rules/evdev.xml" ++#define XKB_RULES_XML_FILE "/usr/local/share/X11/xkb/rules/evdev.xml" + #endif + + #define GROUP_CHANGE_MASK \ +@@ -205,7 +205,7 @@ + } + + if( xkbParentDir == NULL || strlen(xkbParentDir) == 0 ) { +- xkbParentDir = strdup("/usr/share/X11"); ++ xkbParentDir = strdup("/usr/local/share/X11"); + } + + asprintf(&rulesFile, "%s/xkb/rules/%s.xml", xkbParentDir, rulesName); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 14:10:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2EEE1106566C; Wed, 26 Sep 2012 14:10:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 025928FC15; Wed, 26 Sep 2012 14:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QEADpN040531; Wed, 26 Sep 2012 14:10:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QEADVw040523; Wed, 26 Sep 2012 14:10:13 GMT (envelope-from edwin) Date: Wed, 26 Sep 2012 14:10:13 GMT Message-Id: <201209261410.q8QEADVw040523@freefall.freebsd.org> To: itechbear@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172093: chinese/fcitx fixes a startup warning X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 14:10:14 -0000 Synopsis: chinese/fcitx fixes a startup warning State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Sep 26 14:10:13 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172093 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 14:20:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D31B10656E1 for ; Wed, 26 Sep 2012 14:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 680888FC15 for ; Wed, 26 Sep 2012 14:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QEK80F049101 for ; Wed, 26 Sep 2012 14:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QEK8l7049090; Wed, 26 Sep 2012 14:20:08 GMT (envelope-from gnats) Date: Wed, 26 Sep 2012 14:20:08 GMT Message-Id: <201209261420.q8QEK8l7049090@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/172093: chinese/fcitx fixes a startup warning X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 14:20:08 -0000 The following reply was made to PR ports/172093; it has been noted by GNATS. From: Edwin Groothuis To: lichray@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/172093: chinese/fcitx fixes a startup warning Date: Wed, 26 Sep 2012 14:10:10 UT Maintainer of chinese/fcitx, Please note that PR ports/172093 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/172093 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 14:35:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 13B0B106566C; Wed, 26 Sep 2012 14:35:29 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D9D8A8FC19; Wed, 26 Sep 2012 14:35:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QEZS9M067037; Wed, 26 Sep 2012 14:35:28 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QEZSec067033; Wed, 26 Sep 2012 14:35:28 GMT (envelope-from rm) Date: Wed, 26 Sep 2012 14:35:28 GMT Message-Id: <201209261435.q8QEZSec067033@freefall.freebsd.org> To: gd@rambler-co.ru, rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/172090: [PATCH] databases/py-hiredis: Build and link against system/port hiredis.so (not WRKSRC/vendor) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 14:35:29 -0000 Synopsis: [PATCH] databases/py-hiredis: Build and link against system/port hiredis.so (not WRKSRC/vendor) Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Wed Sep 26 14:35:27 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172090 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 15:02:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 86AEE106564A; Wed, 26 Sep 2012 15:02:10 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5A0948FC0A; Wed, 26 Sep 2012 15:02:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QF2Aw7092417; Wed, 26 Sep 2012 15:02:10 GMT (envelope-from zeising@freefall.freebsd.org) Received: (from zeising@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QF2AKC092413; Wed, 26 Sep 2012 15:02:10 GMT (envelope-from zeising) Date: Wed, 26 Sep 2012 15:02:10 GMT Message-Id: <201209261502.q8QF2AKC092413@freefall.freebsd.org> To: zeising@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, zeising@FreeBSD.org From: zeising@FreeBSD.org Cc: Subject: Re: ports/172077: [patch] devel/gdb: drop dependency on devel/readline X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 15:02:10 -0000 Synopsis: [patch] devel/gdb: drop dependency on devel/readline Responsible-Changed-From-To: freebsd-ports-bugs->zeising Responsible-Changed-By: zeising Responsible-Changed-When: Wed Sep 26 15:02:09 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172077 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 17:30:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F3F51065687 for ; Wed, 26 Sep 2012 17:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EB5F08FC20 for ; Wed, 26 Sep 2012 17:30:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QHU5Kk019805 for ; Wed, 26 Sep 2012 17:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QHU5hA019802; Wed, 26 Sep 2012 17:30:05 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 17:30:05 GMT Resent-Message-Id: <201209261730.q8QHU5hA019802@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Grzegorz Blach Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E71961065672 for ; Wed, 26 Sep 2012 17:22:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B94E78FC12 for ; Wed, 26 Sep 2012 17:22:19 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QHMIf0092475 for ; Wed, 26 Sep 2012 17:22:18 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8QHMI2W092474; Wed, 26 Sep 2012 17:22:18 GMT (envelope-from nobody) Message-Id: <201209261722.q8QHMI2W092474@red.freebsd.org> Date: Wed, 26 Sep 2012 17:22:18 GMT From: Grzegorz Blach To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172094: mail/p5-Dancer-Plugin-Email: Update to 1.0000 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 17:30:06 -0000 >Number: 172094 >Category: ports >Synopsis: mail/p5-Dancer-Plugin-Email: Update to 1.0000 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 17:30:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Grzegorz Blach >Release: 9.1-RC1 >Organization: >Environment: FreeBSD silver.nine 9.1-RC1 FreeBSD 9.1-RC1 #7 r240316: Mon Sep 10 19:53:24 CEST 2012 magik@silver.nine:/usr/obj/usr/src/sys/SILVER amd64 >Description: Port mail/p5-Dancer-Plugin-Email updated to 1.0000 Changes: http://api.metacpan.org/source/IRONCAMEL/Dancer-Plugin-Email-1.0000/CHANGES >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN mail/p5-Dancer-Plugin-Email/Makefile mail/p5-Dancer-Plugin-Email/Makefile --- mail/p5-Dancer-Plugin-Email/Makefile 2012-06-10 20:42:01.000000000 +0200 +++ mail/p5-Dancer-Plugin-Email/Makefile 2012-09-26 17:21:55.000000000 +0200 @@ -1,12 +1,7 @@ -# New ports collection makefile for: Dancer-Plugin-Email -# Date created: 30 Dec 2010 -# Whom: Grzegorz Blach -# # $FreeBSD: ports/mail/p5-Dancer-Plugin-Email/Makefile,v 1.4 2012/06/10 18:42:01 swills Exp $ -# PORTNAME= Dancer-Plugin-Email -PORTVERSION= 0.1300 +PORTVERSION= 1.0000 CATEGORIES= mail perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:IRONCAMEL @@ -30,7 +25,6 @@ PERL_CONFIGURE= yes -MAN3= Dancer::Plugin::README.3 \ - Dancer::Plugin::Email.3 +MAN3= Dancer::Plugin::Email.3 .include diff -ruN mail/p5-Dancer-Plugin-Email/distinfo mail/p5-Dancer-Plugin-Email/distinfo --- mail/p5-Dancer-Plugin-Email/distinfo 2011-07-20 13:15:13.000000000 +0200 +++ mail/p5-Dancer-Plugin-Email/distinfo 2012-09-26 17:21:55.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (Dancer-Plugin-Email-0.1300.tar.gz) = db9bde9f2b724f47f263f78796531537d2f8c79d61125b6c7c09606a5f3296ef -SIZE (Dancer-Plugin-Email-0.1300.tar.gz) = 13554 +SHA256 (Dancer-Plugin-Email-1.0000.tar.gz) = 259eac4859b8c93ab0901fd5a81abc398a0610a1edc083238d40fdb7b9d80a7a +SIZE (Dancer-Plugin-Email-1.0000.tar.gz) = 14201 diff -ruN mail/p5-Dancer-Plugin-Email/pkg-plist mail/p5-Dancer-Plugin-Email/pkg-plist --- mail/p5-Dancer-Plugin-Email/pkg-plist 2011-07-20 13:15:13.000000000 +0200 +++ mail/p5-Dancer-Plugin-Email/pkg-plist 2012-09-26 17:21:55.000000000 +0200 @@ -1,6 +1,5 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Dancer/Plugin/Email/.packlist %%SITE_PERL%%/Dancer/Plugin/Email.pm -%%SITE_PERL%%/Dancer/Plugin/README.pod @dirrmtry %%SITE_PERL%%/Dancer/Plugin @dirrmtry %%SITE_PERL%%/Dancer @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Dancer/Plugin/Email >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 17:30:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B9941065678; Wed, 26 Sep 2012 17:30:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1EFC98FC08; Wed, 26 Sep 2012 17:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QHUGPJ021411; Wed, 26 Sep 2012 17:30:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QHUGRM021400; Wed, 26 Sep 2012 17:30:16 GMT (envelope-from edwin) Date: Wed, 26 Sep 2012 17:30:16 GMT Message-Id: <201209261730.q8QHUGRM021400@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172094: mail/p5-Dancer-Plugin-Email: Update to 1.0000 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 17:30:17 -0000 Synopsis: mail/p5-Dancer-Plugin-Email: Update to 1.0000 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 26 17:30:16 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172094 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 18:30:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 161541065687 for ; Wed, 26 Sep 2012 18:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DC37C8FC18 for ; Wed, 26 Sep 2012 18:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QIU8UX073717 for ; Wed, 26 Sep 2012 18:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QIU8fP073714; Wed, 26 Sep 2012 18:30:08 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 18:30:08 GMT Resent-Message-Id: <201209261830.q8QIU8fP073714@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Rusty Nejdl Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D35CF106564A for ; Wed, 26 Sep 2012 18:28:55 +0000 (UTC) (envelope-from rnejdl@tethys.ringofsaturn.com) Received: from tethys.ringofsaturn.com (tethys.ringofsaturn.com [71.252.219.43]) by mx1.freebsd.org (Postfix) with ESMTP id 8A9F38FC0A for ; Wed, 26 Sep 2012 18:28:55 +0000 (UTC) Received: from ASSP.nospam (localhost [127.0.0.1]) by tethys.ringofsaturn.com (8.14.5/8.14.5) with ESMTP id q8QISnYf007377 for ; Wed, 26 Sep 2012 13:28:49 -0500 (CDT) (envelope-from rnejdl@tethys.ringofsaturn.com) Received: from anyhost.local ([127.0.0.1] helo=anyhost.local) by ASSP.nospam with ESMTPS(AES256-SHA) (ASSP 1.9); 26 Sep 2012 13:28:48 -0500 Received: (from rnejdl@localhost) by tethys.ringofsaturn.com (8.14.5/8.14.5/Submit) id q8QISm1b007376; Wed, 26 Sep 2012 13:28:48 -0500 (CDT) (envelope-from rnejdl) Message-Id: Date: Wed, 26 Sep 2012 13:28:48 -0500 (CDT) From: Rusty Nejdl To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172095: Update port games/wesnoth to latest stable version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rusty Nejdl List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 18:30:09 -0000 >Number: 172095 >Category: ports >Synopsis: Update port games/wesnoth to latest stable version >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 18:30:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Rusty Nejdl >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD tethys.ringofsaturn.com 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0: Sun Sep 23 15:41:42 CDT 2012 root@tethys.ringofsaturn.com:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This diff updates the wesnoth port that I maintain to the latest stable version, 1.10.4. A changelog can be found here: http://svn.gna.org/viewcvs/*checkout*/wesnoth/tags/1.10.4/players_changelog Updates include: Version 1.10.4: * Campaigns: * A Tale of Two Brothers: * Fixed bug #19949: Turns left counter initially incorrect when objectives change and turn limit is extended. * Sceptre of Fire: * Keep recall list at end of scenario 7. * Under the Burning Suns: * Taking the ring of speed is now optional. * Language and i18n: * Updated translations: British English, Chinese (Simplified). Chinese (Traditional), French, Galician, German, Greek, Hungarian, Japanese, Latin, Lithuanian, Old English, Russian, Serbian, Slovak, Spanish, Ukrainian. * Terrain: * Improve appearance of sand near dirt with transitions. * User interface: * Trying to initiate movement (or an attack) before previous movement is finished no longer unselects the current unit (bug #19734). (The new movement command is still deliberately ignored.) * Fixed bug #19783: Disable commands while WML menu items are executing. * Fixed bug #19533: Both damage tooltips now take into account local factors. >How-To-Repeat: >Fix: --- wesnoth-1.10.4.diff begins here --- diff -ruN wesnoth/Makefile wesnoth.new/Makefile --- wesnoth/Makefile 2012-07-10 12:56:16.000000000 -0500 +++ wesnoth.new/Makefile 2012-09-26 11:29:53.000000000 -0500 @@ -6,8 +6,7 @@ # PORTNAME= wesnoth -PORTVERSION= 1.10.3 -PORTREVISION= 2 +PORTVERSION= 1.10.4 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}/${PORTNAME}-${PORTVERSION} \ http://files.wesnoth.org/ diff -ruN wesnoth/distinfo wesnoth.new/distinfo --- wesnoth/distinfo 2012-06-10 11:08:50.000000000 -0500 +++ wesnoth.new/distinfo 2012-09-26 11:35:03.000000000 -0500 @@ -1,2 +1,2 @@ -SHA256 (wesnoth-1.10.3.tar.bz2) = b348f99c0ef810fb1f59b5e6ac6f0bb376922edb2552f4a11eb03b5cc658da78 -SIZE (wesnoth-1.10.3.tar.bz2) = 342168933 +SHA256 (wesnoth-1.10.4.tar.bz2) = 97131daf6e52175abe1c84ff55dbbf0f6b102b99f29d32490f5e89ee02cfebc3 +SIZE (wesnoth-1.10.4.tar.bz2) = 342665460 --- wesnoth-1.10.4.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 18:30:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4DB8A106566B; Wed, 26 Sep 2012 18:30:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1F5858FC1A; Wed, 26 Sep 2012 18:30:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QIULPo075635; Wed, 26 Sep 2012 18:30:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QIULiY075629; Wed, 26 Sep 2012 18:30:21 GMT (envelope-from edwin) Date: Wed, 26 Sep 2012 18:30:21 GMT Message-Id: <201209261830.q8QIULiY075629@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172095: Update port games/wesnoth to latest stable version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 18:30:22 -0000 Synopsis: Update port games/wesnoth to latest stable version Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Wed Sep 26 18:30:20 UTC 2012 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172095 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 18:58:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E143A1065675; Wed, 26 Sep 2012 18:58:18 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B639C8FC1E; Wed, 26 Sep 2012 18:58:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QIwIPt000909; Wed, 26 Sep 2012 18:58:18 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QIwIpg000905; Wed, 26 Sep 2012 18:58:18 GMT (envelope-from culot) Date: Wed, 26 Sep 2012 18:58:18 GMT Message-Id: <201209261858.q8QIwIpg000905@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/172095: Update port games/wesnoth to latest stable version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 18:58:19 -0000 Synopsis: Update port games/wesnoth to latest stable version Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Wed Sep 26 18:58:18 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172095 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 19:27:36 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 54C5D106566C; Wed, 26 Sep 2012 19:27:36 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 283788FC0A; Wed, 26 Sep 2012 19:27:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QJRa7q027872; Wed, 26 Sep 2012 19:27:36 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QJRa6X027868; Wed, 26 Sep 2012 14:27:36 -0500 (CDT) (envelope-from bdrewery) Date: Wed, 26 Sep 2012 14:27:36 -0500 (CDT) Message-Id: <201209261927.q8QJRa6X027868@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/171743: security/openvpn-devel: update to latest snapshot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 19:27:36 -0000 Synopsis: security/openvpn-devel: update to latest snapshot Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Wed Sep 26 14:27:35 CDT 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171743 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 19:27:39 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FEE8106566B; Wed, 26 Sep 2012 19:27:39 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 431D58FC08; Wed, 26 Sep 2012 19:27:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QJRdwW027937; Wed, 26 Sep 2012 19:27:39 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QJRdOg027933; Wed, 26 Sep 2012 14:27:39 -0500 (CDT) (envelope-from bdrewery) Date: Wed, 26 Sep 2012 14:27:39 -0500 (CDT) Message-Id: <201209261927.q8QJRdOg027933@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/171738: security/openvpn-beta: update to 2.3-beta1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 19:27:39 -0000 Synopsis: security/openvpn-beta: update to 2.3-beta1 Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Wed Sep 26 14:27:38 CDT 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171738 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 20:30:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E40B3106564A for ; Wed, 26 Sep 2012 20:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BCFE68FC08 for ; Wed, 26 Sep 2012 20:30:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QKU7Ca082298 for ; Wed, 26 Sep 2012 20:30:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QKU7WS082296; Wed, 26 Sep 2012 20:30:07 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 20:30:07 GMT Resent-Message-Id: <201209262030.q8QKU7WS082296@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jonathan Chen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 652B4106566C for ; Wed, 26 Sep 2012 20:28:14 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 380E88FC15 for ; Wed, 26 Sep 2012 20:28:14 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QKSDbX011903 for ; Wed, 26 Sep 2012 20:28:13 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8QKSDV4011902; Wed, 26 Sep 2012 20:28:13 GMT (envelope-from nobody) Message-Id: <201209262028.q8QKSDV4011902@red.freebsd.org> Date: Wed, 26 Sep 2012 20:28:13 GMT From: Jonathan Chen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172097: Release maintainership of java/java3d X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 20:30:08 -0000 >Number: 172097 >Category: ports >Synopsis: Release maintainership of java/java3d >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 20:30:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jonathan Chen >Release: >Organization: >Environment: >Description: Please release this back to the ports pool. I haven't used this port for a long time. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 20:32:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EB62F1065762; Wed, 26 Sep 2012 20:32:02 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BEDC08FC15; Wed, 26 Sep 2012 20:32:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QKW2HT092129; Wed, 26 Sep 2012 20:32:02 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QKW2Co092125; Wed, 26 Sep 2012 20:32:02 GMT (envelope-from jgh) Date: Wed, 26 Sep 2012 20:32:02 GMT Message-Id: <201209262032.q8QKW2Co092125@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/172097: Release maintainership of java/java3d X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 20:32:03 -0000 Synopsis: Release maintainership of java/java3d Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Wed Sep 26 20:32:01 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172097 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 20:40:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE66D1065673 for ; Wed, 26 Sep 2012 20:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A1C158FC15 for ; Wed, 26 Sep 2012 20:40:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QKe5Wn094110 for ; Wed, 26 Sep 2012 20:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QKe5Gn094104; Wed, 26 Sep 2012 20:40:05 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 20:40:05 GMT Resent-Message-Id: <201209262040.q8QKe5Gn094104@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas-Martin Seck Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8B02C1065678 for ; Wed, 26 Sep 2012 20:35:14 +0000 (UTC) (envelope-from tmseck@netcologne.de) Received: from cc-smtpout1.netcologne.de (cc-smtpout1.netcologne.de [IPv6:2001:4dd0:100:1062:25:2:0:1]) by mx1.freebsd.org (Postfix) with ESMTP id D905A8FC15 for ; Wed, 26 Sep 2012 20:35:13 +0000 (UTC) Received: from cc-smtpin3.netcologne.de (cc-smtpin3.netcologne.de [89.1.8.203]) by cc-smtpout1.netcologne.de (Postfix) with ESMTP id AB5AD12AFD for ; Wed, 26 Sep 2012 22:35:12 +0200 (CEST) Received: from wcfields.tmseck.homedns.org (xdsl-89-0-99-105.netcologne.de [89.0.99.105]) by cc-smtpin3.netcologne.de (Postfix) with ESMTPSA id 972A311DA6 for ; Wed, 26 Sep 2012 22:35:12 +0200 (CEST) Received: by wcfields.tmseck.homedns.org (Postfix, from userid 1001) id 3618F130C6B; Wed, 26 Sep 2012 22:35:12 +0200 (CEST) Message-Id: <20120926203512.3618F130C6B@wcfields.tmseck.homedns.org> Date: Wed, 26 Sep 2012 22:35:12 +0200 (CEST) From: Thomas-Martin Seck To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172098: [Maintainer] www/squid31: update to 3.1.21 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Thomas-Martin Seck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 20:40:06 -0000 >Number: 172098 >Category: ports >Synopsis: [Maintainer] www/squid31: update to 3.1.21 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 20:40:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Thomas-Martin Seck >Release: FreeBSD 8.3-RELEASE amd64 >Organization: a private site in Germany >Environment: FreeBSD ports collection as of Septemer 26, 2012. >Description: Update to 3.1.21. Removed file: files/patch-configure >How-To-Repeat: >Fix: Apply this patch: Index: Makefile =================================================================== --- Makefile (.../www/squid31) (Revision 2000) +++ Makefile (.../local/squid31) (Revision 2000) @@ -90,7 +90,7 @@ LATEST_LINK= squid31 -SQUID_STABLE_VER= 20 +SQUID_STABLE_VER= 21 CONFLICTS_INSTALL= squid-2.[0-9].* squid-3.[^1].* cacheboy-[0-9]* lusca-head-[0-9]* GNU_CONFIGURE= yes Index: distinfo =================================================================== --- distinfo (.../www/squid31) (Revision 2000) +++ distinfo (.../local/squid31) (Revision 2000) @@ -1,2 +1,2 @@ -SHA256 (squid3.1/squid-3.1.20.tar.bz2) = 33cc4d73a1ce523d341a339e2c2df896a51225d7dbd3488d0945a113c908d84c -SIZE (squid3.1/squid-3.1.20.tar.bz2) = 2559610 +SHA256 (squid3.1/squid-3.1.21.tar.bz2) = eb9e26ebc2f7d992d135a1212540d46ebced9ceb4a74972ee0065477c1dc2e25 +SIZE (squid3.1/squid-3.1.21.tar.bz2) = 2559469 Index: files/patch-configure =================================================================== --- files/patch-configure (.../www/squid31) (Revision 2000) +++ files/patch-configure (.../local/squid31) (Revision 2000) @@ -1,23 +0,0 @@ -Correct two configure tests that fail whenn g++ is used instead of gcc. ---- configure.orig 2010-05-30 16:00:03.000000000 +0200 -+++ configure 2010-05-30 16:00:33.000000000 +0200 -@@ -48547,7 +48547,10 @@ - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ - -+#include /* for setresuid(2) on FreeBSD */ -+#include /* for perror(3) on FreeBSD */ - #include -+#include /* for setresuid(2) on FreeBSD */ - int main(int argc, char **argv) { - if(setresuid(-1,-1,-1)) { - perror("setresuid:"); -@@ -48632,7 +48635,7 @@ - int main(int argc, char **argv) - { - int size = 20; -- char *str = malloc(size); -+ char *str = (char *)malloc(size); - memset(str, 'x', size); - strnstr(str, "fubar", size); - return 0; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 21:10:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C865B106566C for ; Wed, 26 Sep 2012 21:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B30E98FC17 for ; Wed, 26 Sep 2012 21:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QLA6rD019908 for ; Wed, 26 Sep 2012 21:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QLA6vK019897; Wed, 26 Sep 2012 21:10:06 GMT (envelope-from gnats) Date: Wed, 26 Sep 2012 21:10:06 GMT Message-Id: <201209262110.q8QLA6vK019897@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Zhihao Yuan Cc: Subject: Re: ports/172093: chinese/fcitx fixes a startup warning X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Zhihao Yuan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 21:10:06 -0000 The following reply was made to PR ports/172093; it has been noted by GNATS. From: Zhihao Yuan To: bug-followup@FreeBSD.org, itechbear@gmail.com Cc: Subject: Re: ports/172093: chinese/fcitx fixes a startup warning Date: Wed, 26 Sep 2012 16:09:40 -0500 Hi, I don't know how to produce this problem but the patch is correct. Please commit it. And, committer, could you do me a favor? There is a tiny problem in the pkg-plist -- the entry "qtim" should be "libqtim". Please change it at the same time. Thanks. -- Zhihao Yuan, nickname lichray The best way to predict the future is to invent it. ___________________________________________________ 4BSD -- http://4bsd.biz/ From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 21:30:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 382D0106567D for ; Wed, 26 Sep 2012 21:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 088198FC22 for ; Wed, 26 Sep 2012 21:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QLU1ks037701 for ; Wed, 26 Sep 2012 21:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QLU1i8037697; Wed, 26 Sep 2012 21:30:01 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 21:30:01 GMT Resent-Message-Id: <201209262130.q8QLU1i8037697@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Rusty Nejdl Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B6081065670 for ; Wed, 26 Sep 2012 21:24:40 +0000 (UTC) (envelope-from rnejdl@tethys.ringofsaturn.com) Received: from tethys.ringofsaturn.com (tethys.ringofsaturn.com [71.252.219.43]) by mx1.freebsd.org (Postfix) with ESMTP id 46CF18FC08 for ; Wed, 26 Sep 2012 21:24:40 +0000 (UTC) Received: from ASSP.nospam (localhost [127.0.0.1]) by tethys.ringofsaturn.com (8.14.5/8.14.5) with ESMTP id q8QLOdml076986 for ; Wed, 26 Sep 2012 16:24:39 -0500 (CDT) (envelope-from rnejdl@tethys.ringofsaturn.com) Received: from anyhost.local ([127.0.0.1] helo=anyhost.local) by ASSP.nospam with ESMTPS(AES256-SHA) (ASSP 1.9); 26 Sep 2012 16:24:38 -0500 Received: (from rnejdl@localhost) by tethys.ringofsaturn.com (8.14.5/8.14.5/Submit) id q8QLOchn076985; Wed, 26 Sep 2012 16:24:38 -0500 (CDT) (envelope-from rnejdl) Message-Id: Date: Wed, 26 Sep 2012 16:24:38 -0500 (CDT) From: Rusty Nejdl To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172099: Update port deskutils/calibre to 0.8.70 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rusty Nejdl List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 21:30:02 -0000 >Number: 172099 >Category: ports >Synopsis: Update port deskutils/calibre to 0.8.70 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 21:30:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Rusty Nejdl >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD tethys.ringofsaturn.com 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0: Sun Sep 23 15:41:42 CDT 2012 root@tethys.ringofsaturn.com:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update port deskutils/calibre from 0.8.68 to 0.8.70. A changelog can be found at: http://calibre-ebook.com/whats-new >How-To-Repeat: >Fix: --- calibre-0.8.70.diff begins here --- diff -ruN calibre/Makefile calibre.new/Makefile --- calibre/Makefile 2012-09-09 22:49:52.000000000 -0500 +++ calibre.new/Makefile 2012-09-26 16:14:52.000000000 -0500 @@ -6,7 +6,7 @@ # PORTNAME= calibre -PORTVERSION= 0.8.68 +PORTVERSION= 0.8.70 CATEGORIES= deskutils python MASTER_SITES= SF/${PORTNAME}/${PORTVERSION}/ diff -ruN calibre/distinfo calibre.new/distinfo --- calibre/distinfo 2012-09-09 22:49:52.000000000 -0500 +++ calibre.new/distinfo 2012-09-26 16:15:06.000000000 -0500 @@ -1,2 +1,2 @@ -SHA256 (calibre-0.8.68.tar.xz) = dd5f6ce36d0a013e3043abf543a86f8eac0f842e8c97d702960e1ff9e0bf4b04 -SIZE (calibre-0.8.68.tar.xz) = 26852296 +SHA256 (calibre-0.8.70.tar.xz) = 2f1cc5270f19d9912b73467f7356fb3a27a52714ad3e3198e1d93293d1e55b89 +SIZE (calibre-0.8.70.tar.xz) = 26931608 diff -ruN calibre/pkg-plist calibre.new/pkg-plist --- calibre/pkg-plist 2012-09-09 22:49:52.000000000 -0500 +++ calibre.new/pkg-plist 2012-09-26 16:20:30.000000000 -0500 @@ -84,6 +84,7 @@ lib/calibre/calibre/devices/misc.py lib/calibre/calibre/devices/mtp/books.py lib/calibre/calibre/devices/mtp/__init__.py +lib/calibre/calibre/devices/mtp/defaults.py lib/calibre/calibre/devices/mtp/driver.py lib/calibre/calibre/devices/mtp/test.py lib/calibre/calibre/devices/mtp/base.py @@ -627,6 +628,7 @@ lib/calibre/calibre/gui2/device_drivers/configwidget.py lib/calibre/calibre/gui2/device_drivers/configwidget_ui.py lib/calibre/calibre/gui2/device_drivers/mtp_config.py +lib/calibre/calibre/gui2/device_drivers/mtp_folder_browser.py lib/calibre/calibre/gui2/dialogs/__init__.py lib/calibre/calibre/gui2/dialogs/add_empty_book.py lib/calibre/calibre/gui2/dialogs/add_from_isbn.py @@ -745,6 +747,7 @@ lib/calibre/calibre/gui2/preferences/email_ui.py lib/calibre/calibre/gui2/preferences/emailp.py lib/calibre/calibre/gui2/preferences/history.py +lib/calibre/calibre/gui2/preferences/ignored_devices.py lib/calibre/calibre/gui2/preferences/keyboard.py lib/calibre/calibre/gui2/preferences/look_feel.py lib/calibre/calibre/gui2/preferences/look_feel_ui.py @@ -792,7 +795,6 @@ lib/calibre/calibre/gui2/store/stores/amazon_es_plugin.py lib/calibre/calibre/gui2/store/stores/amazon_fr_plugin.py lib/calibre/calibre/gui2/store/stores/amazon_it_plugin.py -lib/calibre/calibre/gui2/store/stores/beam_ebooks_de_plugin.py lib/calibre/calibre/gui2/store/stores/biblio_plugin.py lib/calibre/calibre/gui2/store/stores/ebookpoint_plugin.py lib/calibre/calibre/gui2/store/stores/ebooksgratuits_plugin.py @@ -1221,7 +1223,7 @@ share/applications/calibre-gui.desktop share/applications/calibre-lrfviewer.desktop share/applications/calibre-ebook-viewer.desktop -share/mime/packages/calibre-mimetypes +share/mime/packages/calibre-mimetypes.xml share/icons/hicolor/128x128/apps/calibre-viewer.png share/icons/hicolor/128x128/mimetypes/application-lrf.png share/icons/hicolor/128x128/mimetypes/gnome-mime-application-lrf.png @@ -1336,7 +1338,7 @@ %%DATADIR%%/images/devices/itunes.png %%DATADIR%%/images/devices/kindle.jpg %%DATADIR%%/images/devices/nook.jpg -%%DATADIR%%/images/devices/galaxy_s3.png +%%DATADIR%%/images/devices/tablet.png %%DATADIR%%/images/dialog_error.png %%DATADIR%%/images/dialog_information.png %%DATADIR%%/images/dialog_question.png @@ -1392,6 +1394,8 @@ %%DATADIR%%/images/mail.png %%DATADIR%%/images/merge_books.png %%DATADIR%%/images/metadata.png +%%DATADIR%%/images/mimetypes/azw2.png +%%DATADIR%%/images/mimetypes/azw3.png %%DATADIR%%/images/mimetypes/bmp.png %%DATADIR%%/images/mimetypes/computer.png %%DATADIR%%/images/mimetypes/dir.png @@ -1412,6 +1416,7 @@ %%DATADIR%%/images/mimetypes/rtf.png %%DATADIR%%/images/mimetypes/snb.png %%DATADIR%%/images/mimetypes/svg.png +%%DATADIR%%/images/mimetypes/tpz.png %%DATADIR%%/images/mimetypes/txt.png %%DATADIR%%/images/mimetypes/unknown.png %%DATADIR%%/images/mimetypes/zero.png --- calibre-0.8.70.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 21:30:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8BE9F1065670; Wed, 26 Sep 2012 21:30:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 611108FC25; Wed, 26 Sep 2012 21:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QLUFw4039596; Wed, 26 Sep 2012 21:30:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QLUFIu039584; Wed, 26 Sep 2012 21:30:15 GMT (envelope-from edwin) Date: Wed, 26 Sep 2012 21:30:15 GMT Message-Id: <201209262130.q8QLUFIu039584@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172099: Update port deskutils/calibre to 0.8.70 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 21:30:15 -0000 Synopsis: Update port deskutils/calibre to 0.8.70 Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Wed Sep 26 21:30:14 UTC 2012 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172099 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 21:35:44 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 02969106566C; Wed, 26 Sep 2012 21:35:44 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CAB0E8FC14; Wed, 26 Sep 2012 21:35:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QLZhcG048213; Wed, 26 Sep 2012 21:35:43 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QLZh8n048209; Wed, 26 Sep 2012 16:35:43 -0500 (CDT) (envelope-from bdrewery) Date: Wed, 26 Sep 2012 16:35:43 -0500 (CDT) Message-Id: <201209262135.q8QLZh8n048209@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/172099: Update port deskutils/calibre to 0.8.70 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 21:35:44 -0000 Synopsis: Update port deskutils/calibre to 0.8.70 Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Wed Sep 26 16:35:43 CDT 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172099 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 22:00:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 671B7106566B for ; Wed, 26 Sep 2012 22:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 26F458FC0C for ; Wed, 26 Sep 2012 22:00:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QM0HwF065392 for ; Wed, 26 Sep 2012 22:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QM0GmR065391; Wed, 26 Sep 2012 22:00:16 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 22:00:16 GMT Resent-Message-Id: <201209262200.q8QM0GmR065391@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Pinter Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 47BAC106566B for ; Wed, 26 Sep 2012 21:57:03 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 325F38FC18 for ; Wed, 26 Sep 2012 21:57:03 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QLv2UL061284 for ; Wed, 26 Sep 2012 21:57:02 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8QLv2FB061283; Wed, 26 Sep 2012 21:57:02 GMT (envelope-from nobody) Message-Id: <201209262157.q8QLv2FB061283@red.freebsd.org> Date: Wed, 26 Sep 2012 21:57:02 GMT From: Oliver Pinter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172100: [PATCH] xdm build error with clang-cpp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 22:00:17 -0000 >Number: 172100 >Category: ports >Synopsis: [PATCH] xdm build error with clang-cpp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 22:00:16 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Pinter >Release: FreeBSD 10-CURRENT >Organization: >Environment: FreeBSD pandora-test 10.0-CURRENT FreeBSD 10.0-CURRENT #2 r+e17c996: Tue Sep 25 20:02:51 CEST 2012 root@pandora-test:/usr/obj/usr/src/sys/OP amd64 >Description: XDM build error (broken autoconf preprocessor test) when using clang as base c compiler (WITH_CLANG_IS_CC= in src.conf) >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/x11/xdm/Makefile b/x11/xdm/Makefile index 51dbe09..4372ec8 100644 --- a/x11/xdm/Makefile +++ b/x11/xdm/Makefile @@ -28,6 +28,16 @@ OPTIONS= XDMSHELL "Install xdmshell" off .include +# XXX unbreak build with clang as CC +CPP_check!= ${CPP} --version | tr -d '()' +.if ${CPP_check:Mclang} +.if exists(/usr/bin/gcpp) +CONFIGURE_ENV+= ac_cv_path_RAWCPP="gcpp" +.else +BROKEN= does not build without gcc cpp +.endif +.endif + .if defined(WITH_XDMSHELL) CONFIGURE_ARGS+=--enable-xdmshell MAN1+= xdmshell.1 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 22:00:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E4A04106566C for ; Wed, 26 Sep 2012 22:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A46198FC14 for ; Wed, 26 Sep 2012 22:00:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QM0H1b065418 for ; Wed, 26 Sep 2012 22:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QM0HP9065417; Wed, 26 Sep 2012 22:00:17 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 22:00:17 GMT Resent-Message-Id: <201209262200.q8QM0HP9065417@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Pinter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C57C31065670 for ; Wed, 26 Sep 2012 21:58:03 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B0B588FC08 for ; Wed, 26 Sep 2012 21:58:03 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QLw35Q061389 for ; Wed, 26 Sep 2012 21:58:03 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8QLw3Ma061388; Wed, 26 Sep 2012 21:58:03 GMT (envelope-from nobody) Message-Id: <201209262158.q8QLw3Ma061388@red.freebsd.org> Date: Wed, 26 Sep 2012 21:58:03 GMT From: Oliver Pinter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172101: [PATCH] imake build error with clang-cpp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 22:00:18 -0000 >Number: 172101 >Category: ports >Synopsis: [PATCH] imake build error with clang-cpp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 22:00:17 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Pinter >Release: FreeBSD 10-CURRENT >Organization: >Environment: FreeBSD pandora-test 10.0-CURRENT FreeBSD 10.0-CURRENT #2 r+e17c996: Tue Sep 25 20:02:51 CEST 2012 root@pandora-test:/usr/obj/usr/src/sys/OP amd64 >Description: imake build error (broken autoconf preprocessor test) when using clang as base c compiler (WITH_CLANG_IS_CC= in src.conf) >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/devel/imake/Makefile b/devel/imake/Makefile index 22ef025..c2f5f19 100644 --- a/devel/imake/Makefile +++ b/devel/imake/Makefile @@ -43,13 +43,16 @@ post-patch: # clang's cpp destroys whitespace, particularly hard tabs in makefiles, # which is fatal for imake. -.if defined(CC) && ${CC} == "clang" -BUILD_DEPENDS+= ucpp:${PORTSDIR}/devel/ucpp -RUN_DEPENDS+= ucpp:${PORTSDIR}/devel/ucpp -CONFIGURE_ENV+= ac_cv_path_RAWCPP="ucpp -s" +CPP_check!= ${CPP} --version | tr -d '()' +.if ${CPP_check:Mclang} +.if exists(/usr/bin/gcpp) +CONFIGURE_ENV+= ac_cv_path_RAWCPP="gcpp" post-build: ${REINPLACE_CMD} -e 's|^configdirspec= *|configdirspec=|' ${WRKSRC}/xmkmf +.else +BROKEN= does not build without gcc cpp +.endif .endif .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 22:10:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6EAF91065675 for ; Wed, 26 Sep 2012 22:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2DA518FC14 for ; Wed, 26 Sep 2012 22:10:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QMA5px074146 for ; Wed, 26 Sep 2012 22:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QMA5MT074145; Wed, 26 Sep 2012 22:10:05 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 22:10:05 GMT Resent-Message-Id: <201209262210.q8QMA5MT074145@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Pinter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9794E1065673 for ; Wed, 26 Sep 2012 22:01:58 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 8364F8FC0A for ; Wed, 26 Sep 2012 22:01:58 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QM1wRZ061869 for ; Wed, 26 Sep 2012 22:01:58 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8QM1wEM061868; Wed, 26 Sep 2012 22:01:58 GMT (envelope-from nobody) Message-Id: <201209262201.q8QM1wEM061868@red.freebsd.org> Date: Wed, 26 Sep 2012 22:01:58 GMT From: Oliver Pinter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172102: [PATCH] gccmakedep build error with clang-cpp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 22:10:05 -0000 >Number: 172102 >Category: ports >Synopsis: [PATCH] gccmakedep build error with clang-cpp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 22:10:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Pinter >Release: FreeBSD 10-CURRENT >Organization: >Environment: FreeBSD pandora-test 10.0-CURRENT FreeBSD 10.0-CURRENT #2 r+e17c996: Tue Sep 25 20:02:51 CEST 2012 root@pandora-test:/usr/obj/usr/src/sys/OP amd64 >Description: gccmakedep build error (broken autoconf preprocessor test) when using clang as base c compiler (WITH_CLANG_IS_CC= in src.conf) >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/devel/gccmakedep/Makefile b/devel/gccmakedep/Makefile index b55bebf..f504b37 100644 --- a/devel/gccmakedep/Makefile +++ b/devel/gccmakedep/Makefile @@ -18,4 +18,14 @@ MAN1= gccmakedep.1 PLIST_FILES= bin/gccmakedep +# XXX unbreak build with clang as CC +CPP_check!= ${CPP} --version | tr -d '()' +.if ${CPP_check:Mclang} +.if exists(/usr/bin/gcpp) +CONFIGURE_ENV+= ac_cv_path_RAWCPP="gcpp" +.else +BROKEN= does not build without gcc cpp +.endif +.endif + .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 22:10:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F31151065678 for ; Wed, 26 Sep 2012 22:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8FDFC8FC16 for ; Wed, 26 Sep 2012 22:10:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QMA5de074163 for ; Wed, 26 Sep 2012 22:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QMA5h0074162; Wed, 26 Sep 2012 22:10:05 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 22:10:05 GMT Resent-Message-Id: <201209262210.q8QMA5h0074162@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Pinter Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3050B106566C for ; Wed, 26 Sep 2012 22:07:29 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1C33D8FC14 for ; Wed, 26 Sep 2012 22:07:29 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QM7SVx077716 for ; Wed, 26 Sep 2012 22:07:28 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8QM7SFU077715; Wed, 26 Sep 2012 22:07:28 GMT (envelope-from nobody) Message-Id: <201209262207.q8QM7SFU077715@red.freebsd.org> Date: Wed, 26 Sep 2012 22:07:28 GMT From: Oliver Pinter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172103: [PATCH] fix kdebase3 build with clang (->insert) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 22:10:06 -0000 >Number: 172103 >Category: ports >Synopsis: [PATCH] fix kdebase3 build with clang (->insert) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 22:10:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Pinter >Release: FreeBSD 10-CURRENT >Organization: >Environment: FreeBSD pandora-test 10.0-CURRENT FreeBSD 10.0-CURRENT #2 r+e17c996: Tue Sep 25 20:02:51 CEST 2012 root@pandora-test:/usr/obj/usr/src/sys/OP amd64 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: commit 8eee76bce908416a7dbecaa714de7e6a8330390c Author: Oliver Pinter Date: Wed Sep 26 01:26:04 2012 +0200 added clang buildfix for kdebase3 Signed-off-by: Oliver Pinter diff --git a/x11/kdebase3/files/patch-20120526111938-kdebase3-clang.diff b/x11/kdebase3/files/patch-20120526111938-kdebase3-clang.diff new file mode 100644 index 0000000..38517f5 --- /dev/null +++ b/x11/kdebase3/files/patch-20120526111938-kdebase3-clang.diff @@ -0,0 +1,29 @@ +--- ./kicker/applets/launcher/easyvector.h.orig 2012-05-26 11:11:24.000000000 +0200 ++++ ./kicker/applets/launcher/easyvector.h 2012-05-26 11:12:38.000000000 +0200 +@@ -87,7 +87,7 @@ + template < class VALUE, bool CHECKINDEX > + void EasyVector< VALUE, CHECKINDEX >::eraseAt(Index index) + { _checkIndex(index); +- erase(this->begin()+index); ++ this->erase(this->begin()+index); + } + + +@@ -108,7 +108,7 @@ + this->push_back(value); + return; + } +- insert(this->begin()+index,value); ++ this->insert(this->begin()+index,value); + } + + +@@ -116,7 +116,7 @@ + void EasyVector< VALUE, CHECKINDEX >::insertAt(EasyVector< VALUE, CHECKINDEX >::Index index,const EasyVector< VALUE, CHECKINDEX > &v) + { index=_convertInsertIndex(index); + _checkInsertIndex(index); +- insert(this->begin()+index,v.begin(),v.end()); ++ this->insert(this->begin()+index,v.begin(),v.end()); + } + + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 22:10:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 22D581065679 for ; Wed, 26 Sep 2012 22:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EFADE8FC18 for ; Wed, 26 Sep 2012 22:10:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QMA57E074218 for ; Wed, 26 Sep 2012 22:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QMA5rg074211; Wed, 26 Sep 2012 22:10:05 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 22:10:05 GMT Resent-Message-Id: <201209262210.q8QMA5rg074211@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Pinter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D40A1065670 for ; Wed, 26 Sep 2012 22:09:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 2EE348FC19 for ; Wed, 26 Sep 2012 22:09:32 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QM9WZt077918 for ; Wed, 26 Sep 2012 22:09:32 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8QM9VVO077917; Wed, 26 Sep 2012 22:09:31 GMT (envelope-from nobody) Message-Id: <201209262209.q8QM9VVO077917@red.freebsd.org> Date: Wed, 26 Sep 2012 22:09:31 GMT From: Oliver Pinter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172104: [PATCH] fix kdebase3 build with clang (crypto.cpp) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 22:10:06 -0000 >Number: 172104 >Category: ports >Synopsis: [PATCH] fix kdebase3 build with clang (crypto.cpp) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 22:10:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Pinter >Release: FreeBSD 10-CURRENT >Organization: >Environment: FreeBSD pandora-test 10.0-CURRENT FreeBSD 10.0-CURRENT #2 r+e17c996: Tue Sep 25 20:02:51 CEST 2012 root@pandora-test:/usr/obj/usr/src/sys/OP amd64 >Description: crypto.cpp:2329:8: error: assigning to 'SSL_METHOD *' (aka 'ssl_method_st *') from incompatible type 'const SSL_METHOD *' (aka 'const ssl_method_st *') meth = SSLv2_client_method(); ^ ~~~~~~~~~~~~~~~~~~~~~ crypto.cpp:2341:8: error: assigning to 'SSL_CIPHER *' (aka 'ssl_cipher_st *') from incompatible type 'const SSL_CIPHER *' (aka 'const ssl_cipher_st *') sc = (meth->get_cipher)(i); ^ ~~~~~~~~~~~~~~~~~~~~~ crypto.cpp:2358:8: error: assigning to 'SSL_METHOD *' (aka 'ssl_method_st *') from incompatible type 'const SSL_METHOD *' (aka 'const ssl_method_st *') meth = SSLv3_client_method(); ^ ~~~~~~~~~~~~~~~~~~~~~ crypto.cpp:2369:8: error: assigning to 'SSL_CIPHER *' (aka 'ssl_cipher_st *') from incompatible type 'const SSL_CIPHER *' (aka 'const ssl_cipher_st *') sc = (meth->get_cipher)(i); ^ ~~~~~~~~~~~~~~~~~~~~~ >How-To-Repeat: >Fix: Patch attached with submission follows: --- kdebase-3.5.10/kcontrol/crypto/crypto.cpp.orig 2006-10-01 19:31:49.000000000 +0200 +++ kdebase-3.5.10/kcontrol/crypto/crypto.cpp 2012-09-26 02:33:32.000000000 +0200 @@ -2326,7 +2326,7 @@ SSLv2Box->clear(); SSLv3Box->clear(); - meth = SSLv2_client_method(); + meth = (SSL_METHOD *)SSLv2_client_method(); SSLeay_add_ssl_algorithms(); ctx = SSL_CTX_new(meth); if (ctx == NULL) return false; @@ -2338,7 +2338,7 @@ for (i=0; ; i++) { int j, k; SSL_CIPHER *sc; - sc = (meth->get_cipher)(i); + sc = (SSL_CIPHER *)(meth->get_cipher)(i); if (!sc) break; // Leak of sc*? @@ -2355,7 +2355,7 @@ if (ssl) SSL_free(ssl); // We repeat for SSLv3 - meth = SSLv3_client_method(); + meth = (SSL_METHOD *)SSLv3_client_method(); SSLeay_add_ssl_algorithms(); ctx = SSL_CTX_new(meth); if (ctx == NULL) return false; @@ -2366,7 +2366,7 @@ for (i=0; ; i++) { int j, k; SSL_CIPHER *sc; - sc = (meth->get_cipher)(i); + sc = (SSL_CIPHER *)(meth->get_cipher)(i); if (!sc) break; // Leak of sc*? >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 23:50:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA486106564A for ; Wed, 26 Sep 2012 23:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9E34F8FC0A for ; Wed, 26 Sep 2012 23:50:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QNo5CS065230 for ; Wed, 26 Sep 2012 23:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QNo5ck065229; Wed, 26 Sep 2012 23:50:05 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 23:50:05 GMT Resent-Message-Id: <201209262350.q8QNo5ck065229@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Rusty Nejdl Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8FBBC106564A for ; Wed, 26 Sep 2012 23:41:07 +0000 (UTC) (envelope-from rnejdl@tethys.ringofsaturn.com) Received: from tethys.ringofsaturn.com (tethys.ringofsaturn.com [71.252.219.43]) by mx1.freebsd.org (Postfix) with ESMTP id 4BB478FC14 for ; Wed, 26 Sep 2012 23:41:06 +0000 (UTC) Received: from ASSP.nospam (localhost [127.0.0.1]) by tethys.ringofsaturn.com (8.14.5/8.14.5) with ESMTP id q8QNf6f1089731 for ; Wed, 26 Sep 2012 18:41:06 -0500 (CDT) (envelope-from rnejdl@tethys.ringofsaturn.com) Received: from anyhost.local ([127.0.0.1] helo=anyhost.local) by ASSP.nospam with ESMTPS(AES256-SHA) (ASSP 1.9); 26 Sep 2012 18:41:05 -0500 Received: (from rnejdl@localhost) by tethys.ringofsaturn.com (8.14.5/8.14.5/Submit) id q8QNf53P089730; Wed, 26 Sep 2012 18:41:05 -0500 (CDT) (envelope-from rnejdl) Message-Id: Date: Wed, 26 Sep 2012 18:41:05 -0500 (CDT) From: Rusty Nejdl To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172105: Update www/mozplugger to 1.14.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rusty Nejdl List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 23:50:05 -0000 >Number: 172105 >Category: ports >Synopsis: Update www/mozplugger to 1.14.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 23:50:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Rusty Nejdl >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD tethys.ringofsaturn.com 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0: Sun Sep 23 15:41:42 CDT 2012 root@tethys.ringofsaturn.com:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This updates mozplugger to 1.14.6. The previous diff file I sent in was bad because I diffed against a non cleaned original version of the port. >How-To-Repeat: >Fix: --- mozplugger-1.14.6.diff begins here --- diff -ruN mozplugger/Makefile mozplugger.new/Makefile --- mozplugger/Makefile 2011-03-09 02:47:34.000000000 -0600 +++ mozplugger.new/Makefile 2012-09-26 15:35:13.000000000 -0500 @@ -6,21 +6,21 @@ # PORTNAME= mozplugger -PORTVERSION= 1.14.3 +PORTVERSION= 1.14.6 CATEGORIES= www MASTER_SITES= http://mozplugger.mozdev.org/files/ MAINTAINER= rnejdl@ringofsaturn.com COMMENT= Framework for loading web content in external viewers +GNU_CONFIGURE= yes USE_XORG= x11 xt MAN7= mozplugger.7 SUB_FILES= pkg-message -ALL_TARGET= freebsd -MAKE_ENV= WEBPLUGINS_DIR="${WEBPLUGINS_DIR}" USE_WEBPLUGINS= native WEBPLUGINS_FILES=mozplugger.so +MAKE_ENV= WEBPLUGINS_DIR="${WEBPLUGINS_DIR}" .include .include "${PORTSDIR}/www/firefox/Makefile.webplugins" diff -ruN mozplugger/distinfo mozplugger.new/distinfo --- mozplugger/distinfo 2011-03-03 16:52:17.000000000 -0600 +++ mozplugger.new/distinfo 2012-09-26 11:35:52.000000000 -0500 @@ -1,2 +1,2 @@ -SHA256 (mozplugger-1.14.3.tar.gz) = 2d56f0b224768276b9872499002cfed402ef86ef5c43af70e3466d8aece232f1 -SIZE (mozplugger-1.14.3.tar.gz) = 135099 +SHA256 (mozplugger-1.14.6.tar.gz) = 3fd73b51d1c0b1c310cecac90155a86ef59c748dff677df542e39282ea7ecba7 +SIZE (mozplugger-1.14.6.tar.gz) = 140735 diff -ruN mozplugger/files/patch-Makefile mozplugger.new/files/patch-Makefile --- mozplugger/files/patch-Makefile 2011-03-08 10:37:48.000000000 -0600 +++ mozplugger.new/files/patch-Makefile 1969-12-31 18:00:00.000000000 -0600 @@ -1,73 +0,0 @@ ---- Makefile.orig 2011-03-03 15:40:49.000000000 -0600 -+++ Makefile 2011-03-08 10:37:12.000000000 -0600 -@@ -1,5 +1,5 @@ - # Where is your Xwindows located? --X11=/usr/X11R6 -+X11=${LOCALBASE} - - # - # For building rpms -@@ -7,9 +7,9 @@ - - # - # For installing --prefix=/usr --sysconfdir=/etc --exec_prefix= -+prefix=${PREFIX} -+sysconfdir=${prefix}/etc -+exec_prefix=${PREFIX} - - # On 64 bit arch change libprefix to lib64 - libprefix=/lib -@@ -20,7 +20,7 @@ - RPMDIR=/usr/src/RPM - - # Choose compiler --CC=gcc -+CC?=gcc - LD=gcc - BINFORMAT=bin - -@@ -74,10 +74,10 @@ - ${MAKE} all CC=cc LD=ld XLDFLAGS='-expect_unresolved "*" -shared -msym -O3' - - freebsd-aout: -- ${MAKE} all CC=gcc XCFLAGS='-fPIC -aout' LD=gcc XLDFLAGS='-shared -aout' -+ ${MAKE} all CC=${CC} XCFLAGS='-fPIC -aout' LD=gcc XLDFLAGS='-shared -aout' - - freebsd: -- ${MAKE} all CC=gcc XCFLAGS=-fPIC LD=gcc XLDFLAGS=-shared X11=/usr/X11R6/ -+ ${MAKE} all CC=${CC} XCFLAGS=-fPIC LD=gcc XLDFLAGS=-shared X11=${LOCALBASE} - - openbsd: - ${MAKE} all CC=gcc XCFLAGS=-fPIC LD=gcc XLDFLAGS=-shared X11=/usr/X11R6/ -@@ -122,7 +122,7 @@ - mozplugger-controller \ - mozplugger-linker - --DEFINES= -DXP_UNIX -DVERSION=\"$(VERSION)\" -D$(BUILD) -DSYSCONFDIR=\"${sysconfdir}\" #-D__amd64__ -+DEFINES= -DXP_UNIX -DVERSION=\"$(VERSION)\" -DPREFIX=\"$(prefix)\" -D$(BUILD) -DSYSCONFDIR=\"${sysconfdir}\" #-D__amd64__ - INCLUDES= -Inpapi/include -I$(X11)/include - RPM_OPT_FLAGS ?= -O2 - COMMON_CFLAGS=$(RPM_OPT_FLAGS) $(INCLUDES) $(DEFINES) -@@ -202,15 +202,15 @@ - - install: - -@mkdir -p $(exec_prefix)/bin -- -@mkdir -p $(prefix)$(libprefix)/mozilla/plugins -- -@mkdir -p $(exec_prefix)/share/man/man7 -+ -@mkdir -p $(root)${WEBPLUGINS_DIR} -+ -@mkdir -p $(root)$(prefix)/man/man7 - -@mkdir -p ${sysconfdir} - cp mozplugger-helper $(exec_prefix)/bin/ - cp mozplugger-controller $(exec_prefix)/bin/ - cp mozplugger-linker $(exec_prefix)/bin/ -- cp mozplugger.so $(prefix)$(libprefix)/mozilla/plugins/ -+ cp mozplugger.so $(root)${WEBPLUGINS_DIR} - cp mozpluggerrc ${sysconfdir}/ -- cp mozplugger.7 $(exec_prefix)/share/man/man7/ -+ cp mozplugger.7 $(root)$(prefix)/man/man7/ - - mozplugger.tar.gz: $(BASE_FILES) $(SOURCE_FILES) - @( DIR=`pwd`;\ diff -ruN mozplugger/files/patch-Makefile.in mozplugger.new/files/patch-Makefile.in --- mozplugger/files/patch-Makefile.in 1969-12-31 18:00:00.000000000 -0600 +++ mozplugger.new/files/patch-Makefile.in 2012-09-26 15:46:11.000000000 -0500 @@ -0,0 +1,44 @@ +--- Makefile.in.orig 2012-09-26 15:43:37.000000000 -0500 ++++ Makefile.in 2012-09-26 15:46:01.000000000 -0500 +@@ -22,7 +22,7 @@ + RPMDIR=/usr/src/RPM + + # Choose compiler +-CC=@CC@ ++CC?=@CC@ + MKDIR=mkdir -p + + SOURCE_FILES=mozplugger.c \ +@@ -161,21 +161,20 @@ + + install: + -@install -d @bindir@ +- -@install -d $(prefix)$(libprefix)/mozilla/plugins ++ -@install -d $(root)${WEBPLUGINS_DIR} + -@install -d @mandir@/man7 + -@install -d @sysconfdir@ + install mozplugger-helper @bindir@ + install mozplugger-controller @bindir@ + install mozplugger-linker @bindir@ +- for a in ${PLUGINDIRS}; do install mozplugger.so $$a ; done +-# cp mozplugger.so $(prefix)$(libprefix)/mozilla/plugins/ ++ cp mozplugger.so $(root)${WEBPLUGINS_DIR} + install $(srcdir)/mozpluggerrc @sysconfdir@ + install $(srcdir)/mozplugger.7 @mandir@/man7/ + + uninstall: + rm -f @mandir@/man7/mozplugger.7 + rm -f @sysconfdir@/mozpluggerrc +- for target in ${PLUGINDIRS}; do rm -f $${target}/mozplugger.so; done ++ rm -f $(root)${WEBPLUGINS_DIR}/mozplugger.so + rm -f @bindir@/mozplugger-linker + rm -f @bindir@/mozplugger-controller + rm -f @bindir@/mozplugger-helper +@@ -183,6 +182,7 @@ + -rmdir @mandir@/man7 + -rmdir @mandir@ + -rmdir @bindir@ ++ -rmdir $(root)${WEBPLUGINS_DIR} + + MOZ_PACKAGE=mozplugger-@PACKAGE_VERSION@ + --- mozplugger-1.14.6.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 23:50:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A7D881065675 for ; Wed, 26 Sep 2012 23:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 67CD98FC15 for ; Wed, 26 Sep 2012 23:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QNoAip065790 for ; Wed, 26 Sep 2012 23:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QNoAqn065784; Wed, 26 Sep 2012 23:50:10 GMT (envelope-from gnats) Resent-Date: Wed, 26 Sep 2012 23:50:10 GMT Resent-Message-Id: <201209262350.q8QNoAqn065784@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mauricio Herrera Cuadra Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A5B6106566C for ; Wed, 26 Sep 2012 23:42:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 85E0B8FC0C for ; Wed, 26 Sep 2012 23:42:54 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QNgsen027435 for ; Wed, 26 Sep 2012 23:42:54 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8QNgsGL027434; Wed, 26 Sep 2012 23:42:54 GMT (envelope-from nobody) Message-Id: <201209262342.q8QNgsGL027434@red.freebsd.org> Date: Wed, 26 Sep 2012 23:42:54 GMT From: Mauricio Herrera Cuadra To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172106: [maintainer update] Update p5-Devel-TraceUse to 2.08 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 23:50:10 -0000 >Number: 172106 >Category: ports >Synopsis: [maintainer update] Update p5-Devel-TraceUse to 2.08 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 26 23:50:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Mauricio Herrera Cuadra >Release: FreeBSD 9.0-STABLE amd64 >Organization: Intelligenomes >Environment: FreeBSD freebsd9-vm.ultratrail.intelligenomes.com 9.0-STABLE FreeBSD 9.0-STABLE #0: Tue Feb 14 06:34:15 CST 2012 root@freebsd9-vm.ultratrail.inte lligenomes.com:/usr/obj/usr/src/sys/freebsd9-vm amd64 >Description: This patch updates port devel/p5-Devel-TraceUse from 2.06 to 2.08 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN p5-Devel-TraceUse.bak/Makefile p5-Devel-TraceUse/Makefile --- p5-Devel-TraceUse.bak/Makefile 2012-02-19 08:43:16.000000000 -0600 +++ p5-Devel-TraceUse/Makefile 2012-09-26 04:42:32.000000000 -0500 @@ -6,7 +6,7 @@ # PORTNAME= Devel-TraceUse -PORTVERSION= 2.06 +PORTVERSION= 2.08 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff -ruN p5-Devel-TraceUse.bak/distinfo p5-Devel-TraceUse/distinfo --- p5-Devel-TraceUse.bak/distinfo 2012-02-19 08:43:16.000000000 -0600 +++ p5-Devel-TraceUse/distinfo 2012-09-26 04:44:00.000000000 -0500 @@ -1,2 +1,2 @@ -SHA256 (Devel-TraceUse-2.06.tar.gz) = 3fd1aa1367e9b40c076153be8df7851ebbb871ed0b7e42f117d2bfee9ba3b449 -SIZE (Devel-TraceUse-2.06.tar.gz) = 12650 +SHA256 (Devel-TraceUse-2.08.tar.gz) = f46e17bebaf53d4582d8c383b6187590fe43b5e016d76601120ff7e12f27ee8a +SIZE (Devel-TraceUse-2.08.tar.gz) = 13431 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 26 23:50:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5215D106566C; Wed, 26 Sep 2012 23:50:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 254318FC16; Wed, 26 Sep 2012 23:50:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8QNoHoS066918; Wed, 26 Sep 2012 23:50:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8QNoGGf066908; Wed, 26 Sep 2012 23:50:17 GMT (envelope-from edwin) Date: Wed, 26 Sep 2012 23:50:17 GMT Message-Id: <201209262350.q8QNoGGf066908@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172105: Update www/mozplugger to 1.14.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2012 23:50:17 -0000 Synopsis: Update www/mozplugger to 1.14.6 Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Wed Sep 26 23:50:16 UTC 2012 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172105 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 00:50:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5784F106566C for ; Thu, 27 Sep 2012 00:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F0C58FC15 for ; Thu, 27 Sep 2012 00:50:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R0o5Lv025552 for ; Thu, 27 Sep 2012 00:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8R0o5ps025551; Thu, 27 Sep 2012 00:50:05 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 00:50:05 GMT Resent-Message-Id: <201209270050.q8R0o5ps025551@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1132D1065673; Thu, 27 Sep 2012 00:49:57 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (unknown [IPv6:2a03:6f00:1::5c35:743c]) by mx1.freebsd.org (Postfix) with ESMTP id 95CAE8FC12; Thu, 27 Sep 2012 00:49:56 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.76) (envelope-from ) id 1TH2Ic-0005LG-If; Thu, 27 Sep 2012 04:49:54 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id CC7C5B84D; Thu, 27 Sep 2012 04:49:53 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id ACF241DB; Thu, 27 Sep 2012 04:49:53 +0400 (MSK) Message-Id: <20120927004953.ACF241DB@hades.panopticon> Date: Thu, 27 Sep 2012 04:49:53 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: wxs@FreeBSD.org Subject: ports/172107: [PATCH] security/sudo: does not link on i386 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 00:50:05 -0000 >Number: 172107 >Category: ports >Synopsis: [PATCH] security/sudo: does not link on i386 >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 00:50:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Wed Jun 13 17:39:20 MSK 2012 >Description: sudo doesn't link on FreeBSD 8,9 i386 (but builds fine on FreeBSD 7 and amd64). --- /bin/sh ../../libtool --mode=link cc -o sudoreplay getdate.o sudoreplay.o error.o -lgcc -L/usr/local/lib -lintl -Wl,-z,relro -pie timestr.lo -lz ../../common/libcommon.la ../../compat/libreplace.la /bin/sh ../../libtool --mode=link cc -o libparsesudoers.la alias.lo audit.lo defaults.lo gram.lo match.lo match_addr.lo pwutil.lo timestr.lo toke.lo toke_util.lo redblack.lo -no-install libtool: link: cc -o sudoreplay getdate.o sudoreplay.o error.o -Wl,-z -Wl,relro -pie .libs/timestr.o -lgcc -L/usr/local/lib /usr/local/lib/libintl.so /usr/local/lib/libiconv.so -lz ../../common/.libs/libcommon.a ../../compat/.libs/libreplace.a -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib libtool: link: ar cru .libs/libparsesudoers.a .libs/alias.o .libs/audit.o .libs/defaults.o .libs/gram.o .libs/match.o .libs/match_addr.o .libs/pwutil.o .libs/timestr.o .libs/toke.o .libs/toke_util.o .libs/redblack.o libtool: link: ranlib .libs/libparsesudoers.a libtool: link: ( cd ".libs" && rm -f "libparsesudoers.la" && ln -s "../libparsesudoers.la" "libparsesudoers.la" ) /bin/sh ../../libtool --tag=disable-static --mode=link cc -lgcc -L/usr/local/lib -lintl -Wl,-z,relro -Wc,-fstack-protector -o sudoers.la sudo_auth.lo pam.lo boottime.lo check.lo env.lo goodpath.lo group_plugin.lo find_path.lo interfaces.lo logging.lo logwrap.lo parse.lo set_perms.lo sudoers.lo sudo_nss.lo iolog.lo iolog_path.lo bsm_audit.lo plugin_error.lo libparsesudoers.la -lbsm -lutil -lpam ../../common/libcommon.la ../../compat/libreplace.la -lz -module -avoid-version -rpath /usr/local/libexec getdate.o: In function `yylex': getdate.c:(.text+0x1eb): undefined reference to `__stack_chk_fail_local' sudoreplay.o: In function `.L120': sudoreplay.c:(.text+0xbc6): undefined reference to `__stack_chk_fail_local' sudoreplay.o: In function `find_sessions': sudoreplay.c:(.text+0x1874): undefined reference to `__stack_chk_fail_local' ../../common/.libs/libcommon.a(sudo_debug.o): In function `sudo_debug_write2': sudo_debug.c:(.text+0x450): undefined reference to `__stack_chk_fail_local' ../../common/.libs/libcommon.a(term.o): In function `term_copy': term.c:(.text+0x128): undefined reference to `__stack_chk_fail_local' ../../common/.libs/libcommon.a(term.o):term.c:(.text+0x569): more undefined references to `__stack_chk_fail_local' follow *** Error code 1 libtool: link: cc -shared -fPIC -DPIC .libs/sudo_auth.o .libs/pam.o .libs/boottime.o .libs/check.o .libs/env.o .libs/goodpath.o .libs/group_plugin.o .libs/find_path.o .libs/interfaces.o .libs/logging.o .libs/logwrap.o .libs/parse.o .libs/set_perms.o .libs/sudoers.o .libs/sudo_nss.o .libs/iolog.o .libs/iolog_path.o .libs/bsm_audit.o .libs/plugin_error.o -Wl,--whole-archive ./.libs/libparsesudoers.a ../../common/.libs/libcommon.a ../../compat/.libs/libreplace.a -Wl,--no-whole-archive -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib -lgcc -L/usr/local/lib /usr/local/lib/libintl.so /usr/local/lib/libiconv.so -lbsm -lutil -lpam -lz -Wl,-z -Wl,relro -fstack-protector -Wl,-soname -Wl,sudoers.so -o .libs/sudoers.so libtool: link: ( cd ".libs" && rm -f "sudoers.la" && ln -s "../sudoers.la" "sudoers.la" ) 1 error *** Error code 2 1 error *** Error code 1 Stop in /a/ports/security/sudo. ================================================================ build of /usr/ports/security/sudo ended at Wed Sep 26 22:27:34 UTC 2012 --- Full log: http://people.freebsd.org/~amdmi3/sudo-1.8.6.p3.log Port maintainer (wxs@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 00:50:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CBDD81065678; Thu, 27 Sep 2012 00:50:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9F6ED8FC0A; Thu, 27 Sep 2012 00:50:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R0oGx6027352; Thu, 27 Sep 2012 00:50:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8R0oGCq027344; Thu, 27 Sep 2012 00:50:16 GMT (envelope-from edwin) Date: Thu, 27 Sep 2012 00:50:16 GMT Message-Id: <201209270050.q8R0oGCq027344@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wxs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172107: [PATCH] security/sudo: does not link on i386 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 00:50:16 -0000 Synopsis: [PATCH] security/sudo: does not link on i386 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 27 00:50:15 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172107 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 01:20:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FA2C106564A for ; Thu, 27 Sep 2012 01:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0A8188FC12 for ; Thu, 27 Sep 2012 01:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R1K7PL053234 for ; Thu, 27 Sep 2012 01:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8R1K7lm053224; Thu, 27 Sep 2012 01:20:07 GMT (envelope-from gnats) Date: Thu, 27 Sep 2012 01:20:07 GMT Message-Id: <201209270120.q8R1K7lm053224@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jan Beich Cc: Subject: Re: ports/172100: [PATCH] xdm build error with clang-cpp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jan Beich List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 01:20:08 -0000 The following reply was made to PR ports/172100; it has been noted by GNATS. From: Jan Beich To: Oliver Pinter Cc: bug-followup@FreeBSD.org Subject: Re: ports/172100: [PATCH] xdm build error with clang-cpp Date: Wed, 26 Sep 2012 17:58:22 -0700 --=-=-= Content-Type: text/plain Content-Disposition: inline Here's the same apporach taken by ports/166373. From a brief review clang-cpp damage is mostly cosmetic. I don't use xdm nor have /usr/bin/gcpp on my box but do have /usr/local/bin/cpp47 from lang/gcc47 (pulled as Fortran dependency). --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=clang-cpp.diff Index: x11/xdm/Makefile =================================================================== --- x11/xdm/Makefile (revision 304222) +++ x11/xdm/Makefile (working copy) @@ -38,6 +39,8 @@ PLIST_SUB+= XDMSHELL="@comment " .endif post-patch: + @${REINPLACE_CMD} 's/test.*-traditional.*;/true;/' \ + ${WRKSRC}/configure @${REINPLACE_CMD} -e "s|XDMCONFIGDIR/|${PREFIX}/lib/X11/xdm/|" \ -e "s|XDMSCRIPTDIR/|${PREFIX}/lib/X11/xdm/|" \ ${WRKSRC}/config/xdm-config.cpp \ Index: x11/xdm/files/patch-config-Xresources.cpp =================================================================== --- x11/xdm/files/patch-config-Xresources.cpp (revision 0) +++ x11/xdm/files/patch-config-Xresources.cpp (working copy) @@ -0,0 +1,14 @@ +--- config/Xresources.cpp~ ++++ config/Xresources.cpp +@@ -60,9 +60,9 @@ xlogin*hiColor: black + XHASHendif + #ifdef XPM + XHASHif PLANES >= 8 +-xlogin*logoFileName: BITMAPDIR/**//XDM_PIXMAP ++xlogin*logoFileName: BITMAPDIR/XDM_PIXMAP + XHASHelse +-xlogin*logoFileName: BITMAPDIR/**//XDM_BWPIXMAP ++xlogin*logoFileName: BITMAPDIR/XDM_BWPIXMAP + XHASHendif + xlogin*useShape: true + xlogin*logoPadding: 10 --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=whitespace-encoded.diff Content-Transfer-Encoding: quoted-printable Content-Description: preprocessed for viewing with diff-refine-hunk --- config/Xreset cpp47 +++ config/Xreset clang-cpp @@ -1,4 +1,6 @@\$ +\$ +\$ #!/bin/sh\$ #=C2=B7Deregister=C2=B7a=C2=B7login.=C2=B7(Derived=C2=B7from=C2=B7TakeCons= ole=C2=B7as=C2=B7follows:)\$ #\$ -/usr/local/bin/sessreg=C2=B7-d=C2=B7-w=C2=B7/var/log/wtmp=C2=B7-u=C2=B7/va= r/run/utmp=C2=B7\^I-x=C2=B7/usr/local/lib/X11/xdm/Xservers=C2=B7-l=C2=B7$DI= SPLAY=C2=B7-h=C2=B7""=C2=B7$USER\$ +/usr/local/bin/sessreg=C2=B7-d=C2=B7-w=C2=B7/var/log/wtmp=C2=B7-u=C2=B7/va= r/run/utmp=C2=B7-x=C2=B7/usr/local/lib/X11/xdm/Xservers=C2=B7-l=C2=B7$DISPL= AY=C2=B7-h=C2=B7""=C2=B7$USER\$ --- config/Xresources cpp47 +++ config/Xresources clang-cpp @@ -1,19 +1,21 @@\$ +\$ +\$ Xcursor.theme:=C2=B7whiteglass\$ \$ \$ \$ xlogin*login.translations:=C2=B7#override=C2=B7\\\$ -\^ICtrlR:=C2=B7abort-display()\\n\\\$ -\^IF1:=C2=B7set-session-argument(failsafe)=C2=B7finish-field()\\n\\\$ -\^IDelete:=C2=B7delete-character()\\n\\\$ -\^ILeft:=C2=B7move-backward-character()\\n\\\$ -\^IRight:=C2=B7move-forward-character()\\n\\\$ -\^IHome:=C2=B7move-to-begining()\\n\\\$ -\^IEnd:=C2=B7move-to-end()\\n\\\$ -\^ICtrlKP_Enter:=C2=B7set-session-argument(failsafe)=C2=B7finish-fiel= d()\\n\\\$ -\^IKP_Enter:=C2=B7set-session-argument()=C2=B7finish-field()\\n\\\$ -\^ICtrlReturn:=C2=B7set-session-argument(failsafe)=C2=B7finish-field(= )\\n\\\$ -\^IReturn:=C2=B7set-session-argument()=C2=B7finish-field()\$ +=C2=B7CtrlR:=C2=B7abort-display()\\n\\\$ +=C2=B7F1:=C2=B7set-session-argument(failsafe)=C2=B7finish-field()\\n\= \\$ +=C2=B7Delete:=C2=B7delete-character()\\n\\\$ +=C2=B7Left:=C2=B7move-backward-character()\\n\\\$ +=C2=B7Right:=C2=B7move-forward-character()\\n\\\$ +=C2=B7Home:=C2=B7move-to-begining()\\n\\\$ +=C2=B7End:=C2=B7move-to-end()\\n\\\$ +=C2=B7CtrlKP_Enter:=C2=B7set-session-argument(failsafe)=C2=B7finish-f= ield()\\n\\\$ +=C2=B7KP_Enter:=C2=B7set-session-argument()=C2=B7finish-field()\\n\\\$ +=C2=B7CtrlReturn:=C2=B7set-session-argument(failsafe)=C2=B7finish-fie= ld()\\n\\\$ +=C2=B7Return:=C2=B7set-session-argument()=C2=B7finish-field()\$ \$ xlogin*greeting:=C2=B7Welcome=C2=B7to=C2=B7CLIENTHOST\$ xlogin*namePrompt:=C2=B7\\040\\040\\040\\040\\040\\040\\040Login:\$ @@ -24,19 +26,19 @@ xlogin*greetFont: -adobe-helvetica-bold-\$ xlogin*font:=C2=B7-adobe-helvetica-medium-r-normal--18-180-75-75-p-98-iso8= 859-1\$ xlogin*promptFont:=C2=B7-adobe-helvetica-bold-r-normal--18-180-75-75-p-103= -iso8859-1\$ xlogin*failFont:=C2=B7-adobe-helvetica-bold-r-normal--18-180-75-75-p-103-i= so8859-1\$ -xlogin*greetFace:\^ISerif-24:bold:italic\$ -xlogin*face:=C2=B7\^I\^IHelvetica-18\$ -xlogin*promptFace:=C2=B7\^IHelvetica-18:bold\$ -xlogin*failFace:=C2=B7\^IHelvetica-18:bold\$ +xlogin*greetFace:=C2=B7Serif-24:bold:italic\$ +xlogin*face:=C2=B7Helvetica-18\$ +xlogin*promptFace:=C2=B7Helvetica-18:bold\$ +xlogin*failFace:=C2=B7Helvetica-18:bold\$ #else\$ xlogin*greetFont:=C2=B7-adobe-helvetica-bold-o-normal--17-120-100-100-p-92= -iso8859-1\$ xlogin*font:=C2=B7-adobe-helvetica-medium-r-normal--12-120-75-75-p-67-iso8= 859-1\$ xlogin*promptFont:=C2=B7-adobe-helvetica-bold-r-normal--12-120-75-75-p-70-= iso8859-1\$ xlogin*failFont:=C2=B7-adobe-helvetica-bold-o-normal--14-140-75-75-p-82-is= o8859-1\$ -xlogin*greetFace:\^ISerif-18:bold:italic\$ -xlogin*face:\^I\^IHelvetica-12\$ -xlogin*promptFace:\^IHelvetica-12:bold\$ -xlogin*failFace:\^IHelvetica-14:bold\$ +xlogin*greetFace:=C2=B7Serif-18:bold:italic\$ +xlogin*face:=C2=B7Helvetica-12\$ +xlogin*promptFace:=C2=B7Helvetica-12:bold\$ +xlogin*failFace:=C2=B7Helvetica-14:bold\$ #endif\$ \$ #ifdef=C2=B7COLOR\$ @@ -60,23 +62,23 @@ xlogin*hiColor: black\$ #endif\$ \$ #if=C2=B7PLANES=C2=B7>=3D=C2=B78\$ -xlogin*logoFileName:=C2=B7/usr/local/lib/X11/xdm/pixmaps/xorg.xpm\$ +xlogin*logoFileName:=C2=B7/usr/local/lib/X11/xdm/pixmaps=C2=B7/xorg.xpm\$ #else\$ -xlogin*logoFileName:=C2=B7/usr/local/lib/X11/xdm/pixmaps/xorg-bw.xpm\$ +xlogin*logoFileName:=C2=B7/usr/local/lib/X11/xdm/pixmaps=C2=B7/xorg-bw.xpm= \$ #endif\$ xlogin*useShape:=C2=B7true\$ xlogin*logoPadding:=C2=B710\$ \$ \$ -XConsole.text.geometry:\^I480x130\$ -XConsole.verbose:\^Itrue\$ -XConsole*iconic:\^Itrue\$ -XConsole*font:\^I\^Ifixed\$ -\$ -Chooser*geometry:\^I\^I700x500+300+200\$ -Chooser*allowShellResize:\^Ifalse\$ -Chooser*viewport.forceBars:\^Itrue\$ -Chooser*label.font:\^I\^I*-new=C2=B7century=C2=B7schoolbook-bold-i-normal-= *-240-*\$ -Chooser*label.label:\^I\^IXDMCP=C2=B7Host=C2=B7Menu=C2=B7from=C2=B7CLIENTH= OST\$ -Chooser*list.font:\^I\^I-*-*-medium-r-normal-*-*-230-*-*-c-*-iso8859-1\$ -Chooser*Command.font:\^I\^I*-new=C2=B7century=C2=B7schoolbook-bold-r-norma= l-*-180-*\$ +XConsole.text.geometry:=C2=B7480x130\$ +XConsole.verbose:=C2=B7true\$ +XConsole*iconic:=C2=B7true\$ +XConsole*font:=C2=B7fixed\$ +\$ +Chooser*geometry:=C2=B7700x500+300+200\$ +Chooser*allowShellResize:=C2=B7false\$ +Chooser*viewport.forceBars:=C2=B7true\$ +Chooser*label.font:=C2=B7*-new=C2=B7century=C2=B7schoolbook-bold-i-normal-= *-240-*\$ +Chooser*label.label:=C2=B7XDMCP=C2=B7Host=C2=B7Menu=C2=B7from=C2=B7CLIENTH= OST\$ +Chooser*list.font:=C2=B7-*-*-medium-r-normal-*-*-230-*-*-c-*-iso8859-1\$ +Chooser*Command.font:=C2=B7*-new=C2=B7century=C2=B7schoolbook-bold-r-norma= l-*-180-*\$ --- config/Xservers cpp47 +++ config/Xservers clang-cpp @@ -1,12 +1,14 @@\$ +\$ +\$ #\$ #=C2=B7Xservers=C2=B7file,=C2=B7workstation=C2=B7prototype\$ #\$ #=C2=B7This=C2=B7file=C2=B7should=C2=B7contain=C2=B7an=C2=B7entry=C2=B7to= =C2=B7start=C2=B7the=C2=B7server=C2=B7on=C2=B7the\$ #=C2=B7local=C2=B7display;=C2=B7if=C2=B7you=C2=B7have=C2=B7more=C2=B7than= =C2=B7one=C2=B7display=C2=B7(not=C2=B7screen),\$ -#=C2=B7you=C2=B7can=C2=B7add=C2=B7entries=C2=B7to=C2=B7the=C2=B7list=C2=B7= (one=C2=B7per=C2=B7line).=C2=B7=C2=B7If=C2=B7you=C2=B7also\$ +#=C2=B7you=C2=B7can=C2=B7add=C2=B7entries=C2=B7to=C2=B7the=C2=B7list=C2=B7= (one=C2=B7per=C2=B7line).=C2=B7If=C2=B7you=C2=B7also\$ #=C2=B7have=C2=B7some=C2=B7X=C2=B7terminals=C2=B7connected=C2=B7which=C2= =B7do=C2=B7not=C2=B7support=C2=B7XDMCP,\$ -#=C2=B7you=C2=B7can=C2=B7add=C2=B7them=C2=B7here=C2=B7as=C2=B7well.=C2=B7= =C2=B7Each=C2=B7X=C2=B7terminal=C2=B7line=C2=B7should\$ +#=C2=B7you=C2=B7can=C2=B7add=C2=B7them=C2=B7here=C2=B7as=C2=B7well.=C2=B7E= ach=C2=B7X=C2=B7terminal=C2=B7line=C2=B7should\$ #=C2=B7look=C2=B7like:\$ -#\^IXTerminalName:0=C2=B7foreign\$ +#=C2=B7XTerminalName:0=C2=B7foreign\$ #\$ :0=C2=B7local=C2=B7/usr/local/bin/X=C2=B7:0=C2=B7\$ --- config/Xservers.ws cpp47 +++ config/Xservers.ws clang-cpp @@ -1,12 +1,14 @@\$ +\$ +\$ #\$ #=C2=B7Xservers=C2=B7file,=C2=B7workstation=C2=B7prototype\$ #\$ #=C2=B7This=C2=B7file=C2=B7should=C2=B7contain=C2=B7an=C2=B7entry=C2=B7to= =C2=B7start=C2=B7the=C2=B7server=C2=B7on=C2=B7the\$ #=C2=B7local=C2=B7display;=C2=B7if=C2=B7you=C2=B7have=C2=B7more=C2=B7than= =C2=B7one=C2=B7display=C2=B7(not=C2=B7screen),\$ -#=C2=B7you=C2=B7can=C2=B7add=C2=B7entries=C2=B7to=C2=B7the=C2=B7list=C2=B7= (one=C2=B7per=C2=B7line).=C2=B7=C2=B7If=C2=B7you=C2=B7also\$ +#=C2=B7you=C2=B7can=C2=B7add=C2=B7entries=C2=B7to=C2=B7the=C2=B7list=C2=B7= (one=C2=B7per=C2=B7line).=C2=B7If=C2=B7you=C2=B7also\$ #=C2=B7have=C2=B7some=C2=B7X=C2=B7terminals=C2=B7connected=C2=B7which=C2= =B7do=C2=B7not=C2=B7support=C2=B7XDMCP,\$ -#=C2=B7you=C2=B7can=C2=B7add=C2=B7them=C2=B7here=C2=B7as=C2=B7well.=C2=B7= =C2=B7Each=C2=B7X=C2=B7terminal=C2=B7line=C2=B7should\$ +#=C2=B7you=C2=B7can=C2=B7add=C2=B7them=C2=B7here=C2=B7as=C2=B7well.=C2=B7E= ach=C2=B7X=C2=B7terminal=C2=B7line=C2=B7should\$ #=C2=B7look=C2=B7like:\$ -#\^IXTerminalName:0=C2=B7foreign\$ +#=C2=B7XTerminalName:0=C2=B7foreign\$ #\$ :0=C2=B7local=C2=B7/usr/local/bin/X=C2=B7:0=C2=B7\$ --- config/Xsession cpp47 +++ config/Xsession clang-cpp @@ -1,3 +1,5 @@\$ +\$ +\$ #!/bin/sh\$ #\$ \$ @@ -6,28 +8,28 @@\$ errfile=3D"$HOME/.xsession-errors"\$ if=C2=B7(=C2=B7umask=C2=B7077=C2=B7&&=C2=B7cp=C2=B7/dev/null=C2=B7"$errfil= e"=C2=B72>=C2=B7/dev/null=C2=B7)\$ then\$ -\^Iexec=C2=B7>=C2=B7"$errfile"=C2=B72>&1\$ +=C2=B7exec=C2=B7>=C2=B7"$errfile"=C2=B72>&1\$ else\$ \$ -\^Imktemp=3D/usr/bin/mktemp\$ -\^Ifor=C2=B7errfile=C2=B7in=C2=B7"${TMPDIR-/tmp}/xses-$USER"=C2=B7"/tmp/xs= es-$USER"\$ -\^Ido\$ -\^I\^Iif=C2=B7ef=3D"$(=C2=B7umask=C2=B7077=C2=B7&&=C2=B7$mktemp=C2=B7"$err= file.XXXXXX"=C2=B72>=C2=B7/dev/null)"\$ -\^I\^Ithen\$ -\^I\^I\^Iexec=C2=B7>=C2=B7"$ef"=C2=B72>&1\$ -\^I\^I\^Imv=C2=B7"$ef"=C2=B7"$errfile"=C2=B72>=C2=B7/dev/null\$ -\^I\^I\^Ibreak\$ -\^I\^Ifi\$ -\^Idone\$ +=C2=B7mktemp=3D/usr/bin/mktemp\$ +=C2=B7for=C2=B7errfile=C2=B7in=C2=B7"${TMPDIR-/tmp}/xses-$USER"=C2=B7"/tmp= /xses-$USER"\$ +=C2=B7do\$ +=C2=B7=C2=B7if=C2=B7ef=3D"$(=C2=B7umask=C2=B7077=C2=B7&&=C2=B7$mktemp=C2= =B7"$errfile.XXXXXX"=C2=B72>=C2=B7/dev/null)"\$ +=C2=B7=C2=B7then\$ +=C2=B7=C2=B7=C2=B7exec=C2=B7>=C2=B7"$ef"=C2=B72>&1\$ +=C2=B7=C2=B7=C2=B7mv=C2=B7"$ef"=C2=B7"$errfile"=C2=B72>=C2=B7/dev/null\$ +=C2=B7=C2=B7=C2=B7break\$ +=C2=B7=C2=B7fi\$ +=C2=B7done\$ fi\$ \$ case=C2=B7$#=C2=B7in\$ 1)\$ -\^Icase=C2=B7$1=C2=B7in\$ -\^Ifailsafe)\$ -\^I\^Iexec=C2=B7/usr/local/bin/xterm=C2=B7-geometry=C2=B780x24-0-0\$ -\^I\^I;;\$ -\^Iesac\$ +=C2=B7case=C2=B7$1=C2=B7in\$ +=C2=B7failsafe)\$ +=C2=B7=C2=B7exec=C2=B7/usr/local/bin/xterm=C2=B7-geometry=C2=B780x24-0-0\$ +=C2=B7=C2=B7;;\$ +=C2=B7esac\$ esac\$ \$ #=C2=B7The=C2=B7startup=C2=B7script=C2=B7is=C2=B7not=C2=B7intended=C2=B7to= =C2=B7have=C2=B7arguments.\$ @@ -36,14 +38,14 @@ startup=3D$HOME/.xsession\$ resources=3D$HOME/.Xresources\$ \$ if=C2=B7[=C2=B7-s=C2=B7"$startup"=C2=B7];=C2=B7then\$ -\^Iif=C2=B7[=C2=B7-x=C2=B7"$startup"=C2=B7];=C2=B7then\$ -\^I\^Iexec=C2=B7"$startup"\$ -\^Ielse\$ -\^I\^Iexec=C2=B7/bin/sh=C2=B7"$startup"\$ -\^Ifi\$ +=C2=B7if=C2=B7[=C2=B7-x=C2=B7"$startup"=C2=B7];=C2=B7then\$ +=C2=B7=C2=B7exec=C2=B7"$startup"\$ +=C2=B7else\$ +=C2=B7=C2=B7exec=C2=B7/bin/sh=C2=B7"$startup"\$ +=C2=B7fi\$ else\$ -\^Iif=C2=B7[=C2=B7-r=C2=B7"$resources"=C2=B7];=C2=B7then\$ -\^I\^I/usr/local/bin/xrdb=C2=B7-load=C2=B7"$resources"\$ -\^Ifi\$ -\^Iexec=C2=B7/usr/local/bin/xsm\$ +=C2=B7if=C2=B7[=C2=B7-r=C2=B7"$resources"=C2=B7];=C2=B7then\$ +=C2=B7=C2=B7/usr/local/bin/xrdb=C2=B7-load=C2=B7"$resources"\$ +=C2=B7fi\$ +=C2=B7exec=C2=B7/usr/local/bin/xsm\$ fi\$ --- config/Xstartup cpp47 +++ config/Xstartup clang-cpp @@ -1,4 +1,6 @@\$ +\$ +\$ #!/bin/sh\$ #=C2=B7Register=C2=B7a=C2=B7login=C2=B7(derived=C2=B7from=C2=B7GiveConsole= =C2=B7as=C2=B7follows:)\$ #\$ -exec=C2=B7/usr/local/bin/sessreg=C2=B7=C2=B7-a=C2=B7-w=C2=B7/var/log/wtmp= =C2=B7-u=C2=B7/var/run/utmp=C2=B7\^I-x=C2=B7/usr/local/lib/X11/xdm/Xservers= =C2=B7-l=C2=B7$DISPLAY=C2=B7-h=C2=B7""=C2=B7$USER\$ +exec=C2=B7/usr/local/bin/sessreg=C2=B7-a=C2=B7-w=C2=B7/var/log/wtmp=C2=B7-= u=C2=B7/var/run/utmp=C2=B7-x=C2=B7/usr/local/lib/X11/xdm/Xservers=C2=B7-l= =C2=B7$DISPLAY=C2=B7-h=C2=B7""=C2=B7$USER\$ --- config/xdm-config cpp47 +++ config/xdm-config clang-cpp @@ -1,3 +1,5 @@\$ +\$ +\$ !\$ !\$ !\$ @@ -9,31 +11,31 @@\$ \$ \$ \$ -DisplayManager.authDir:\^I/var/lib/xdm\$ -DisplayManager.errorLogFile:\^I/var/log/xdm.log\$ -DisplayManager.pidFile:\^I\^I/var/run/xdm.pid\$ -DisplayManager.keyFile:\^I\^I/usr/local/lib/X11/xdm/xdm-keys\$ -DisplayManager.servers:\^I\^I/usr/local/lib/X11/xdm/Xservers\$ -DisplayManager.accessFile:\^I/usr/local/lib/X11/xdm/Xaccess\$ -DisplayManager*resources:\^I/usr/local/lib/X11/xdm/Xresources\$ -DisplayManager.willing:\^I\^Isu=C2=B7-m=C2=B7nobody=C2=B7-s=C2=B7/bin/sh= =C2=B7-c=C2=B7/usr/local/lib/X11/xdm/Xwilling\$ +DisplayManager.authDir:=C2=B7/var/lib/xdm\$ +DisplayManager.errorLogFile:=C2=B7/var/log/xdm.log\$ +DisplayManager.pidFile:=C2=B7/var/run/xdm.pid\$ +DisplayManager.keyFile:=C2=B7/usr/local/lib/X11/xdm/xdm-keys\$ +DisplayManager.servers:=C2=B7/usr/local/lib/X11/xdm/Xservers\$ +DisplayManager.accessFile:=C2=B7/usr/local/lib/X11/xdm/Xaccess\$ +DisplayManager*resources:=C2=B7/usr/local/lib/X11/xdm/Xresources\$ +DisplayManager.willing:=C2=B7su=C2=B7-m=C2=B7nobody=C2=B7-s=C2=B7/bin/sh= =C2=B7-c=C2=B7/usr/local/lib/X11/xdm/Xwilling\$ !=C2=B7All=C2=B7displays=C2=B7should=C2=B7use=C2=B7authorization,=C2=B7but= =C2=B7we=C2=B7cannot=C2=B7be=C2=B7sure\$ !=C2=B7X=C2=B7terminals=C2=B7may=C2=B7not=C2=B7be=C2=B7configured=C2=B7tha= t=C2=B7way,=C2=B7so=C2=B7they=C2=B7will=C2=B7require\$ !=C2=B7individual=C2=B7resource=C2=B7settings.\$ -DisplayManager*authorize:\^Itrue\$ +DisplayManager*authorize:=C2=B7true\$ !\$ -DisplayManager*chooser:\^I\^I/usr/local/lib/X11/xdm/chooser\$ -DisplayManager*startup:\^I\^I/usr/local/lib/X11/xdm/Xstartup\$ -DisplayManager*session:\^I\^I/usr/local/lib/X11/xdm/Xsession\$ -DisplayManager*reset:\^I\^I/usr/local/lib/X11/xdm/Xreset\$ -DisplayManager*authComplain:\^Itrue\$ +DisplayManager*chooser:=C2=B7/usr/local/lib/X11/xdm/chooser\$ +DisplayManager*startup:=C2=B7/usr/local/lib/X11/xdm/Xstartup\$ +DisplayManager*session:=C2=B7/usr/local/lib/X11/xdm/Xsession\$ +DisplayManager*reset:=C2=B7/usr/local/lib/X11/xdm/Xreset\$ +DisplayManager*authComplain:=C2=B7true\$ !=C2=B7The=C2=B7following=C2=B7three=C2=B7resources=C2=B7set=C2=B7up=C2=B7= display=C2=B7:0=C2=B7as=C2=B7the=C2=B7console.\$ -DisplayManager._0.setup:\^I/usr/local/lib/X11/xdm/Xsetup_0\$ -DisplayManager._0.startup:\^I/usr/local/lib/X11/xdm/GiveConsole\$ -DisplayManager._0.reset:\^I/usr/local/lib/X11/xdm/TakeConsole\$ +DisplayManager._0.setup:=C2=B7/usr/local/lib/X11/xdm/Xsetup_0\$ +DisplayManager._0.startup:=C2=B7/usr/local/lib/X11/xdm/GiveConsole\$ +DisplayManager._0.reset:=C2=B7/usr/local/lib/X11/xdm/TakeConsole\$ \$ -DisplayManager*loginmoveInterval:\^I10\$ +DisplayManager*loginmoveInterval:=C2=B710\$ \$ !=C2=B7SECURITY:=C2=B7do=C2=B7not=C2=B7listen=C2=B7for=C2=B7XDMCP=C2=B7or= =C2=B7Chooser=C2=B7requests\$ !=C2=B7Comment=C2=B7out=C2=B7this=C2=B7line=C2=B7if=C2=B7you=C2=B7want=C2= =B7to=C2=B7manage=C2=B7X=C2=B7terminals=C2=B7with=C2=B7xdm\$ -DisplayManager.requestPort:\^I0\$ +DisplayManager.requestPort:=C2=B70\$ --=-=-=-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 03:50:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 738BA106566B for ; Thu, 27 Sep 2012 03:50:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 441B68FC0A for ; Thu, 27 Sep 2012 03:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R3oBa7088643 for ; Thu, 27 Sep 2012 03:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8R3oBUd088638; Thu, 27 Sep 2012 03:50:11 GMT (envelope-from gnats) Date: Thu, 27 Sep 2012 03:50:11 GMT Message-Id: <201209270350.q8R3oBUd088638@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jan Beich Cc: Subject: Re: ports/172100: [PATCH] xdm build error with clang-cpp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jan Beich List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 03:50:12 -0000 The following reply was made to PR ports/172100; it has been noted by GNATS. From: Jan Beich To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/172100: [PATCH] xdm build error with clang-cpp Date: Thu, 27 Sep 2012 14:41:16 +1100 --=-=-= Content-Type: text/plain Content-Disposition: inline Oops, extra newlines before shebang in scripts are hazardous. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=clang-cpp.diff Index: x11/xdm/Makefile =================================================================== --- x11/xdm/Makefile (revision 304222) +++ x11/xdm/Makefile (working copy) @@ -38,6 +39,8 @@ PLIST_SUB+= XDMSHELL="@comment " .endif post-patch: + @${REINPLACE_CMD} 's/test.*-traditional.*;/true;/' \ + ${WRKSRC}/configure @${REINPLACE_CMD} -e "s|XDMCONFIGDIR/|${PREFIX}/lib/X11/xdm/|" \ -e "s|XDMSCRIPTDIR/|${PREFIX}/lib/X11/xdm/|" \ ${WRKSRC}/config/xdm-config.cpp \ Index: x11/xdm/files/patch-config-Makefile.in =================================================================== --- x11/xdm/files/patch-config-Makefile.in (revision 0) +++ x11/xdm/files/patch-config-Makefile.in (working copy) @@ -0,0 +1,10 @@ +--- config/Makefile.in~ ++++ config/Makefile.in +@@ -297,6 +297,7 @@ WCHAR32_FLAGS = -DWCHAR32=@WCHAR32@ + # Allow XHASH to always be substituted, even in cases where XCOMM isn't. + CPP_SED_MAGIC = $(SED) -e '/^\# *[0-9][0-9]* *.*$$/d' \ + -e '/^\#line *[0-9][0-9]* *.*$$/d' \ ++ -e '/^$$/d' \ + -e '/^[ ]*XCOMM$$/s/XCOMM/\#/' \ + -e '/^[ ]*XCOMM[^a-zA-Z0-9_]/s/XCOMM/\#/' \ + -e '/^[ ]*XHASH/s/XHASH/\#/' \ Index: x11/xdm/files/patch-config-Xresources.cpp =================================================================== --- x11/xdm/files/patch-config-Xresources.cpp (revision 0) +++ x11/xdm/files/patch-config-Xresources.cpp (working copy) @@ -0,0 +1,14 @@ +--- config/Xresources.cpp~ ++++ config/Xresources.cpp +@@ -60,9 +60,9 @@ xlogin*hiColor: black + XHASHendif + #ifdef XPM + XHASHif PLANES >= 8 +-xlogin*logoFileName: BITMAPDIR/**//XDM_PIXMAP ++xlogin*logoFileName: BITMAPDIR/XDM_PIXMAP + XHASHelse +-xlogin*logoFileName: BITMAPDIR/**//XDM_BWPIXMAP ++xlogin*logoFileName: BITMAPDIR/XDM_BWPIXMAP + XHASHendif + xlogin*useShape: true + xlogin*logoPadding: 10 --=-=-=-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 04:00:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3D8EB106566C for ; Thu, 27 Sep 2012 04:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CCB4E8FC0A for ; Thu, 27 Sep 2012 04:00:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R40HsL096364 for ; Thu, 27 Sep 2012 04:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8R40H7h096357; Thu, 27 Sep 2012 04:00:17 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 04:00:17 GMT Resent-Message-Id: <201209270400.q8R40H7h096357@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 164E51065670 for ; Thu, 27 Sep 2012 03:55:57 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (unknown [IPv6:2a03:6f00:1::5c35:743c]) by mx1.freebsd.org (Postfix) with ESMTP id 984F18FC12 for ; Thu, 27 Sep 2012 03:55:56 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.76) (envelope-from ) id 1TH5Cd-0005Uc-4F for FreeBSD-gnats-submit@freebsd.org; Thu, 27 Sep 2012 07:55:55 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 6E76DB84D for ; Thu, 27 Sep 2012 07:55:54 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 2E909201; Thu, 27 Sep 2012 07:55:54 +0400 (MSK) Message-Id: <20120927035554.2E909201@hades.panopticon> Date: Thu, 27 Sep 2012 07:55:54 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172108: [PATCH] graphics/ilmbase: libIlmThread is not linked with pthread library X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 04:00:18 -0000 >Number: 172108 >Category: ports >Synopsis: [PATCH] graphics/ilmbase: libIlmThread is not linked with pthread library >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 04:00:17 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Wed Jun 13 17:39:20 MSK 2012 >Description: After recent update of ilmbase and OpenEXR, at least one dependent port (graphics/nvidia-texture-tools) was broken: http://people.freebsd.org/~amdmi3/nvidia-texture-tools-2.0.8.1_1.log this happened because libIlmImf is no longer linked with thread library ilmbase-1.0.1/OpenEXR-1.6.1: % ldd /usr/local/lib/libIlmImf.so /usr/local/lib/libIlmImf.so: libthr.so.3 => /lib/libthr.so.3 (0x8012c2000) <--- gone after update libz.so.6 => /lib/libz.so.6 (0x8014e3000) libImath.so.6 => /usr/local/lib/libImath.so.6 (0x8016f8000) libHalf.so.6 => /usr/local/lib/libHalf.so.6 (0x8018fd000) libIlmThread.so.6 => /usr/local/lib/libIlmThread.so.6 (0x801b3f000) libIex.so.6 => /usr/local/lib/libIex.so.6 (0x801d46000) libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x801f5d000) libm.so.5 => /lib/libm.so.5 (0x80225a000) libc.so.7 => /lib/libc.so.7 (0x800848000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x80247b000) ilmbase-1.0.2/OpenEXR-1.7.0: /usr/local/lib/libIlmImf.so: libz.so.6 => /lib/libz.so.6 (0x8012d9000) libImath.so.6 => /usr/local/lib/libImath.so.6 (0x8014ee000) libHalf.so.6 => /usr/local/lib/libHalf.so.6 (0x8016f3000) libIlmThread.so.6 => /usr/local/lib/libIlmThread.so.6 (0x801935000) libIex.so.6 => /usr/local/lib/libIex.so.6 (0x801b3c000) libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x801d53000) libm.so.5 => /lib/libm.so.5 (0x802050000) libc.so.7 => /lib/libc.so.7 (0x800848000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x802271000) But the problem is actually in libIlmThread, which is not linked with libthr in both old and new versions: /usr/local/lib/libIlmThread.so: libIex.so.6 => /usr/local/lib/libIex.so.6 (0x801207000) libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x80141e000) libm.so.5 => /lib/libm.so.5 (0x801727000) libc.so.7 => /lib/libc.so.7 (0x800848000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x801948000) With that, any linking with it or other library using it without explicit -pthread will fail: % echo 'int main(){}' > test.c && gcc test.c -L/usr/local/lib -lIlmThread /usr/local/lib/libIlmThread.so: undefined reference to `pthread_create' And why it's not linked with libthr is somehow related to libtool black magic, as though link command which produces this library does have -pthread argument: libtool: link: c++ -fPIC -DPIC -shared -nostdlib /usr/lib/crti.o /usr/lib/crtbeginS.o .libs/IlmThreadPool.o .libs/IlmThread.o .libs/IlmThreadSemaphore.o .libs/IlmThreadMutex.o .libs/IlmThreadPosix.o .libs/IlmThreadSemaphorePosix.o .libs/IlmThreadSemaphorePosixCompat.o .libs/IlmThreadMutexPosix.o -Wl,-rpath -Wl,/usr/home/amdmi3/projects/freebsd/ports/graphics/ilmbase/work/ilmbase-1.0.2/Iex/.libs -Wl,-rpath -Wl,/home/amdmi3/projects/freebsd/ports/graphics/ilmbase/prefix/lib ../Iex/.libs/libIex.so -L/usr/lib -lstdc++ -lm -lc -lgcc_s /usr/lib/crtendS.o /usr/lib/crtn.o -O2 -march=nocona -pthread -pthread -pthread -Wl,-soname -Wl,libIlmThread.so.6 -o .libs/libIlmThread.so.6 the resulting library is not linked with libthr. If the command is (manually) changed to `normal' way of creating a shared library c++ -fPIC -DPIC -shared .libs/IlmThreadPool.o .libs/IlmThread.o .libs/IlmThreadSemaphore.o .libs/IlmThreadMutex.o .libs/IlmThreadPosix.o .libs/IlmThreadSemaphorePosix.o .libs/IlmThreadSemaphorePosixCompat.o .libs/IlmThreadMutexPosix.o -Wl,-rpath -Wl,/usr/home/amdmi3/projects/freebsd/ports/graphics/ilmbase/work/ilmbase-1.0.2/Iex/.libs -Wl,-rpath -Wl,/home/amdmi3/projects/freebsd/ports/graphics/ilmbase/prefix/lib ../Iex/.libs/libIex.so -L/usr/lib -lstdc++ -lm -O2 -march=nocona -pthread -pthread -pthread -Wl,-soname -Wl,libIlmThread.so.6 -o .libs/libIlmThread.so.6_ it produces correct library: % ldd .libs/libIlmThread.so.6 .libs/libIlmThread.so.6_ .libs/libIlmThread.so.6: libIex.so.6 => /usr/home/amdmi3/projects/freebsd/ports/graphics/ilmbase/work/ilmbase-1.0.2/Iex/.libs/libIex.so.6 (0x801207000) libstdc++.so.6 => /usr/local/lib/gcc46/libstdc++.so.6 (0x80141e000) libm.so.5 => /lib/libm.so.5 (0x80171b000) libc.so.7 => /lib/libc.so.7 (0x800848000) libgcc_s.so.1 => /usr/local/lib/gcc46/libgcc_s.so.1 (0x80193c000) .libs/libIlmThread.so.6_: libIex.so.6 => /usr/home/amdmi3/projects/freebsd/ports/graphics/ilmbase/work/ilmbase-1.0.2/Iex/.libs/libIex.so.6 (0x801207000) libstdc++.so.6 => /usr/local/lib/gcc46/libstdc++.so.6 (0x80141e000) libm.so.5 => /lib/libm.so.5 (0x80171b000) libgcc_s.so.1 => /usr/local/lib/gcc46/libgcc_s.so.1 (0x80193c000) libthr.so.3 => /lib/libthr.so.3 (0x801b51000) libc.so.7 => /lib/libc.so.7 (0x800848000) I'm not familiar with libtool workings, but my guess is that it should be taught to not use `-nostdlib /usr/lib/crti.o /usr/lib/crtbeginS.o ... -lc -lgcc_s /usr/lib/crtendS.o /usr/lib/crtn.o' magic, so the library is linked correctly. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 05:08:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 49E4A106564A; Thu, 27 Sep 2012 05:08:01 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1E5B28FC19; Thu, 27 Sep 2012 05:08:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R581Ft060069; Thu, 27 Sep 2012 05:08:01 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8R580NV060065; Thu, 27 Sep 2012 05:08:00 GMT (envelope-from culot) Date: Thu, 27 Sep 2012 05:08:00 GMT Message-Id: <201209270508.q8R580NV060065@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/172106: [maintainer update] Update p5-Devel-TraceUse to 2.08 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 05:08:01 -0000 Synopsis: [maintainer update] Update p5-Devel-TraceUse to 2.08 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Thu Sep 27 05:08:00 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172106 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 06:10:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 093B0106564A for ; Thu, 27 Sep 2012 06:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D44148FC12 for ; Thu, 27 Sep 2012 06:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R6A2WY014206 for ; Thu, 27 Sep 2012 06:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8R6A2tm014205; Thu, 27 Sep 2012 06:10:02 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 06:10:02 GMT Resent-Message-Id: <201209270610.q8R6A2tm014205@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris Petrik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95BD61065674 for ; Thu, 27 Sep 2012 06:08:59 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 803E78FC17 for ; Thu, 27 Sep 2012 06:08:59 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R68xCs079231 for ; Thu, 27 Sep 2012 06:08:59 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8R68xun079230; Thu, 27 Sep 2012 06:08:59 GMT (envelope-from nobody) Message-Id: <201209270608.q8R68xun079230@red.freebsd.org> Date: Thu, 27 Sep 2012 06:08:59 GMT From: Chris Petrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172109: [PATCH] update audio/csound to 5.18.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 06:10:03 -0000 >Number: 172109 >Category: ports >Synopsis: [PATCH] update audio/csound to 5.18.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 06:10:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Chris Petrik >Release: >Organization: na >Environment: >Description: Update csound to 5.18.2 >How-To-Repeat: >Fix: Patch attached with submission follows: Index: csound/Makefile =================================================================== --- csound/Makefile (revision 303953) +++ csound/Makefile (working copy) @@ -6,9 +6,9 @@ # PORTNAME= csound -PORTVERSION= 5.17.11 +PORTVERSION= 5.18.02 CATEGORIES= audio lang -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}${PORTVERSION} \ +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}5.18/ \ SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}${PORTVERSION:R}/manual:manual DISTNAME= ${PORTNAME:S/c/C/}${PORTVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} @@ -24,7 +24,7 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/swig:${PORTSDIR}/devel/swig13 \ ${LOCALBASE}/include/gmm/gmm.h:${PORTSDIR}/math/gmm++ \ ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex -LIB_DEPENDS= sndfile.1:${PORTSDIR}/audio/libsndfile +LIB_DEPENDS= sndfile:${PORTSDIR}/audio/libsndfile OPTIONS_DEFINE= ALSA DSSI FLUIDSYNTH JACK OSC PORTAUDIO PULSEAUDIO FLTK OPTIONS_DEFAULT=FLTK @@ -58,7 +58,7 @@ .include .if ${PORT_OPTIONS:MALSA} -LIB_DEPENDS+= asound.2:${PORTSDIR}/audio/alsa-lib +LIB_DEPENDS+= asound:${PORTSDIR}/audio/alsa-lib SCONS_ARGS+= useALSA=1 PLIST_SUB+= ALSA="" ALSA_H= alsa/asoundlib.h @@ -79,7 +79,7 @@ .endif .if ${PORT_OPTIONS:MFLUIDSYNTH} -LIB_DEPENDS+= fluidsynth.1:${PORTSDIR}/audio/fluidsynth +LIB_DEPENDS+= fluidsynth:${PORTSDIR}/audio/fluidsynth PLIST_SUB+= FLUIDSYNTH="" FLUIDSYNTH_H= fluidsynth.h .else @@ -88,7 +88,7 @@ .endif .if ${PORT_OPTIONS:MJACK} -LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack +LIB_DEPENDS+= jack:${PORTSDIR}/audio/jack SCONS_ARGS+= useJack=1 PLIST_SUB+= JACK="" .else @@ -97,7 +97,7 @@ .endif .if ${PORT_OPTIONS:MOSC} -LIB_DEPENDS+= lo.7:${PORTSDIR}/audio/liblo +LIB_DEPENDS+= lo:${PORTSDIR}/audio/liblo SCONS_ARGS+= useOSC=1 PLIST_SUB+= OSC="" .else @@ -120,7 +120,7 @@ .endif .if ${PORT_OPTIONS:MPULSEAUDIO} -LIB_DEPENDS+= pulse-simple.0:${PORTSDIR}/audio/pulseaudio +LIB_DEPENDS+= pulse-simple:${PORTSDIR}/audio/pulseaudio PLIST_SUB+= PULSEAUDIO="" PULSEAUDIO_H= pulse/simple.h .else @@ -129,7 +129,7 @@ .endif .if ${PORT_OPTIONS:MFLTK} -LIB_DEPENDS+= fltk.1:${PORTSDIR}/x11-toolkits/fltk +LIB_DEPENDS+= fltk:${PORTSDIR}/x11-toolkits/fltk PLIST_SUB+= FLTK="" SCONS_ARGS+= buildCsound5GUI=1 buildCSEditor=1 buildWinsound=1 useFLTK=1 .else @@ -191,12 +191,13 @@ ${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 the manual." + @${ECHO_MSG} " Installing manual ${PORTVERSION}. " @(cd ${WRKDIR}/html && ${COPYTREE_SHARE} . ${DOCSDIR}) @${ECHO_MSG} " Done." .endif Index: csound/distinfo =================================================================== --- csound/distinfo (revision 303953) +++ csound/distinfo (working copy) @@ -1,4 +1,4 @@ -SHA256 (csound/Csound5.17.11.tar.gz) = a86595c4328b63e9b37205b40bf1441182a453451b0ea20558a7777dbc0380b7 -SIZE (csound/Csound5.17.11.tar.gz) = 9152189 -SHA256 (csound/Csound5.17_manual_html.zip) = cad3ee307c801c972d9d5f626a79c88dddda6872d8a4af64dd4f3edfe7c0f626 -SIZE (csound/Csound5.17_manual_html.zip) = 9621312 +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 Index: csound/files/patch-H__sysdep.h =================================================================== --- csound/files/patch-H__sysdep.h (revision 303953) +++ csound/files/patch-H__sysdep.h (working copy) @@ -1,26 +1,26 @@ ---- H/sysdep.h.orig 2012-05-29 02:41:30.000000000 +0900 -+++ H/sysdep.h 2012-05-31 11:19:28.000000000 +0900 -@@ -96,7 +96,11 @@ +--- H/sysdep.h.bak 2012-09-27 02:58:13.000000000 +0000 ++++ H/sysdep.h 2012-09-27 03:02:06.000000000 +0000 +@@ -100,6 +100,11 @@ #define EXP exp #define LOG log #define LOG10 log10 +#if __FreeBSD_version <= 704100 || (__FreeBSD_version >= 800000 && __FreeBSD_version < 802502) || (__FreeBSD_version >= 900000 && __FreeBSD_version < 900027) + #define LOG2(x) (log(x) / log(2)) +#else - #define LOG2 log2 ++ #define LOG2 log2 +#endif + /* #define LOG2 log2 */ #define POWER pow #define SQRT sqrt - #define HYPOT hypot -@@ -122,7 +126,11 @@ +@@ -126,6 +131,11 @@ #define EXP expf #define LOG logf #define LOG10 log10f +#if __FreeBSD_version <= 704100 || (__FreeBSD_version >= 800000 && __FreeBSD_version < 802502) || (__FreeBSD_version >= 900000 && __FreeBSD_version < 900027) + #define LOG2(x) (logf(x) / logf(2)) +#else - #define LOG2 log2f ++ #define LOG2 log2f +#endif + /* #define LOG2 log2f */ #define POWER powf #define SQRT sqrtf - #define HYPOT hypotf Index: csound/pkg-plist =================================================================== --- csound/pkg-plist (revision 303953) +++ csound/pkg-plist (working copy) @@ -48,6 +48,8 @@ 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 @@ -2799,6 +2801,61 @@ %%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 +%%PORTDOCS%%%%DOCSDIR%%/examples/gen18.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vbapg.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/cosseg.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/joystick.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/joystick-2.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/midiprogramchange.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vbap.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/minabsaccum.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/minaccum.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vbapmove.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/maxabsaccum.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/gen23.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/mididefault.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/centroid.csd +%%PORTDOCS%%%%DOCSDIR%%/vbapmove.html +%%PORTDOCS%%%%DOCSDIR%%/pwd.html +%%PORTDOCS%%%%DOCSDIR%%/vbap.html +%%PORTDOCS%%%%DOCSDIR%%/GENwave.html +%%PORTDOCS%%%%DOCSDIR%%/joystick.html +%%PORTDOCS%%%%DOCSDIR%%/readf.html +%%PORTDOCS%%%%DOCSDIR%%/cossegr.html +%%PORTDOCS%%%%DOCSDIR%%/centroid.html +%%PORTDOCS%%%%DOCSDIR%%/cossegb.html +%%PORTDOCS%%%%DOCSDIR%%/readfi.html %%PORTDOCS%%@dirrm %%DOCSDIR%%/images/callouts %%PORTDOCS%%@dirrm %%DOCSDIR%%/images %%PORTDOCS%%@dirrm %%DOCSDIR%%/examples >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 07:40:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B98DC1065673 for ; Thu, 27 Sep 2012 07:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 92DAB8FC12 for ; Thu, 27 Sep 2012 07:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R7e2Ag005145 for ; Thu, 27 Sep 2012 07:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8R7e253005144; Thu, 27 Sep 2012 07:40:02 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 07:40:02 GMT Resent-Message-Id: <201209270740.q8R7e253005144@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E6EE91065673 for ; Thu, 27 Sep 2012 07:37:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B36C78FC0A for ; Thu, 27 Sep 2012 07:37:36 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R7baFe029248 for ; Thu, 27 Sep 2012 07:37:36 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8R7baOd029247; Thu, 27 Sep 2012 07:37:36 GMT (envelope-from nobody) Message-Id: <201209270737.q8R7baOd029247@red.freebsd.org> Date: Thu, 27 Sep 2012 07:37:36 GMT From: Dmitry To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172110: databases/postgresql92-server change periodic script [patch] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 07:40:02 -0000 >Number: 172110 >Category: ports >Synopsis: databases/postgresql92-server change periodic script [patch] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 07:40:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dmitry >Release: 9.1-PRERELEASE >Organization: - >Environment: FreeBSD *** 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0 r240914: *** root@***:/usr/obj/usr/src/sys/GENERIC_ amd64 >Description: periodic script not allow configure pgsql user and port >How-To-Repeat: >Fix: Patch attached with submission follows: --- files/502.pgsql.in.orig 2011-10-18 15:03:32.000000000 +0600 +++ files/502.pgsql.in 2012-09-26 17:48:27.000000000 +0600 @@ -19,14 +19,6 @@ # daily_pgsql_backup_enable="foo bar db1 db2" # only do backup of a limited selection of databases # daily_pgsql_vacuum_enable="YES" # do vacuum -daily_pgsql_user=%%PG_USER%% -daily_pgsql_vacuum_args="-U ${daily_pgsql_user} -qaz" -daily_pgsql_pgdump_args="-U ${daily_pgsql_user} -bF c" -daily_pgsql_pgdumpall_globals_args="-U ${daily_pgsql_user}" -# backupdir is relative to ~pgsql home directory unless it begins with a slash: -daily_pgsql_backupdir="~${daily_pgsql_user}/backups" -daily_pgsql_savedays="7" - # If there is a global system configuration file, suck it in. # if [ -r /etc/defaults/periodic.conf ] @@ -35,6 +27,15 @@ source_periodic_confs fi +daily_pgsql_user=${daily_pgsql_user:-"%%PG_USER%%"} +daily_pgsql_port=${daily_pgsql_port:-"5432"} +daily_pgsql_vacuum_args="-U ${daily_pgsql_user} -p ${daily_pgsql_port} -qaz" +daily_pgsql_pgdump_args="-U ${daily_pgsql_user} -p ${daily_pgsql_port} -bF c" +daily_pgsql_pgdumpall_globals_args="-U ${daily_pgsql_user} -p ${daily_pgsql_port}" +# backupdir is relative to ~pgsql home directory unless it begins with a slash: +daily_pgsql_backupdir="~${daily_pgsql_user}/backups" +daily_pgsql_savedays="7" + # allow '~´ in dir name eval backupdir=${daily_pgsql_backupdir} @@ -82,7 +83,7 @@ case "$daily_pgsql_backup_enable" in [Yy][Ee][Ss]) - dbnames=`su -l %%PG_USER%% -c "umask 077; psql -q -t -A -d template1 -U %%PG_USER%% -c SELECT\ datname\ FROM\ pg_database\ WHERE\ datname!=\'template0\'"` + dbnames=`su -l ${daily_pgsql_user} -c "umask 077; psql -U ${daily_pgsql_user} -p ${daily_pgsql_port} -q -t -A -d template1 -c SELECT\ datname\ FROM\ pg_database\ WHERE\ datname!=\'template0\'"` pgsql_backup $dbnames ;; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 07:40:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21FBF1065670; Thu, 27 Sep 2012 07:40:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E994C8FC1C; Thu, 27 Sep 2012 07:40:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R7eEdm006910; Thu, 27 Sep 2012 07:40:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8R7eE2g006902; Thu, 27 Sep 2012 07:40:14 GMT (envelope-from edwin) Date: Thu, 27 Sep 2012 07:40:14 GMT Message-Id: <201209270740.q8R7eE2g006902@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pgsql@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172110: databases/postgresql92-server change periodic script [patch] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 07:40:15 -0000 Synopsis: databases/postgresql92-server change periodic script [patch] Responsible-Changed-From-To: freebsd-ports-bugs->pgsql Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 27 07:40:14 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172110 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 08:00:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 16DA91065670 for ; Thu, 27 Sep 2012 08:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C77FA8FC14 for ; Thu, 27 Sep 2012 08:00:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R80IbC023830 for ; Thu, 27 Sep 2012 08:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8R80IY3023829; Thu, 27 Sep 2012 08:00:18 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 08:00:18 GMT Resent-Message-Id: <201209270800.q8R80IY3023829@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris Petrik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C222B1065676 for ; Thu, 27 Sep 2012 07:50:57 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id AE3638FC15 for ; Thu, 27 Sep 2012 07:50:57 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R7ovS7046952 for ; Thu, 27 Sep 2012 07:50:57 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8R7ovpE046950; Thu, 27 Sep 2012 07:50:57 GMT (envelope-from nobody) Message-Id: <201209270750.q8R7ovpE046950@red.freebsd.org> Date: Thu, 27 Sep 2012 07:50:57 GMT From: Chris Petrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172111: [PATCH] games/doom X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 08:00:19 -0000 >Number: 172111 >Category: ports >Synopsis: [PATCH] games/doom >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 08:00:18 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Chris Petrik >Release: FreeBSD 9.1 >Organization: na >Environment: >Description: Add in License data for doom. Remove dist site as it's no longer running. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: doom/Makefile =================================================================== --- doom/Makefile (revision 304947) +++ doom/Makefile (working copy) @@ -15,10 +15,11 @@ MAINTAINER= c.petrik.sosa@gmail.com COMMENT= DOOM: the game and the sound server +LICENSE= GPLv1 + NO_CDROM= requested by IDsoftware ONLY_FOR_ARCHS= i386 - USE_GMAKE= yes USE_ZIP= yes USE_XORG= x11 sm xextproto xext Index: doom-data/Makefile =================================================================== --- doom-data/Makefile (revision 304947) +++ doom-data/Makefile (working copy) @@ -9,8 +9,7 @@ PORTVERSION= 1.0 PORTREVISION= 1 CATEGORIES= games -MASTER_SITES= http://www.ijs.si/~lesi/distfiles/doom/ \ - http://distfiles.officialunix.com/ +MASTER_SITES= http://www.ijs.si/~lesi/distfiles/doom/ PKGNAMEPREFIX= ${DMPKGNAMEPREFIX} EXTRACT_SUFX= .bz2 DISTFILES= # >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 09:02:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E83F106566C; Thu, 27 Sep 2012 09:02:27 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 22DA48FC15; Thu, 27 Sep 2012 09:02:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8R92RjX089775; Thu, 27 Sep 2012 09:02:27 GMT (envelope-from zeising@freefall.freebsd.org) Received: (from zeising@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8R92RS4089771; Thu, 27 Sep 2012 09:02:27 GMT (envelope-from zeising) Date: Thu, 27 Sep 2012 09:02:27 GMT Message-Id: <201209270902.q8R92RS4089771@freefall.freebsd.org> To: zeising@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, x11@FreeBSD.org From: zeising@FreeBSD.org Cc: Subject: Re: ports/172100: [PATCH] x11/xdm build error with clang-cpp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 09:02:27 -0000 Old Synopsis: [PATCH] xdm build error with clang-cpp New Synopsis: [PATCH] x11/xdm build error with clang-cpp Responsible-Changed-From-To: freebsd-ports-bugs->x11 Responsible-Changed-By: zeising Responsible-Changed-When: Thu Sep 27 09:01:47 UTC 2012 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=172100 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 14:20:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2AA061065806 for ; Thu, 27 Sep 2012 14:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 031E58FC0C for ; Thu, 27 Sep 2012 14:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8REK2q6078604 for ; Thu, 27 Sep 2012 14:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8REK2iW078603; Thu, 27 Sep 2012 14:20:02 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 14:20:02 GMT Resent-Message-Id: <201209271420.q8REK2iW078603@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ruslan Mahmatkhanov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50B66106566C for ; Thu, 27 Sep 2012 14:11:03 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 314268FC0C for ; Thu, 27 Sep 2012 14:11:03 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8REB3w9008927 for ; Thu, 27 Sep 2012 14:11:03 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8REB2cV008926; Thu, 27 Sep 2012 14:11:02 GMT (envelope-from nobody) Message-Id: <201209271411.q8REB2cV008926@red.freebsd.org> Date: Thu, 27 Sep 2012 14:11:02 GMT From: Ruslan Mahmatkhanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172114: www/openx:update to 2.8.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 14:20:03 -0000 >Number: 172114 >Category: ports >Synopsis: www/openx:update to 2.8.10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 14:20:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Ruslan Mahmatkhanov >Release: 10.0-CURRENT >Organization: >Environment: 10.0-CURRENT i386 >Description: - update to 2.8.10 this release fixes sql injection vulnerability. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: security/vuxml/vuln.xml =================================================================== --- security/vuxml/vuln.xml (revision 304960) +++ security/vuxml/vuln.xml (working copy) @@ -51,6 +51,42 @@ --> + + OpenX -- SQL injection vulnerability + + + openx + 2.8.10 + + + + +

Secunia reports:

+
+

A vulnerability has been discovered in OpenX, which can be + exploited by malicious people to conduct SQL injection + attacks.

+

Input passed via the "xajaxargs" parameter to + www/admin/updates-history.php (when "xajax" is set to + "expandOSURow") is not properly sanitised in e.g. the + "queryAuditBackupTablesByUpgradeId()" function + (lib/OA/Upgrade/DB_UpgradeAuditor.php) before being used in SQL + queries. This can be exploited to manipulate SQL queries by + injecting arbitrary SQL code.

+

The vulnerability is confirmed in version 2.8.9. Prior versions + may also be affected.

+
+ +
+ + http://secunia.com/advisories/50598/ + + + 2012-09-14 + 2012-09-27 + +
+ chromium -- multiple vulnerabilities Index: www/openx/Makefile =================================================================== --- www/openx/Makefile (revision 304960) +++ www/openx/Makefile (working copy) @@ -1,12 +1,8 @@ -# New ports collection makefile for: openx -# Date created: 13 March 2008 -# Whom: Piotr Rybicki -# +# Created by: Piotr Rybicki # $FreeBSD$ -# PORTNAME= openx -PORTVERSION= 2.8.9 +PORTVERSION= 2.8.10 CATEGORIES= www MASTER_SITES= http://download.openx.org/ Index: www/openx/distinfo =================================================================== --- www/openx/distinfo (revision 304960) +++ www/openx/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (openx-2.8.9.tar.bz2) = b6c9eece311cd33c502cdf3b8b14027dcf72672318cff1adc12a81dedf5352db -SIZE (openx-2.8.9.tar.bz2) = 9616171 +SHA256 (openx-2.8.10.tar.bz2) = 91418dcd3896e19532c4144e5f4c56bcfa49164e3304fa7240f2a1cc8b90bfc2 +SIZE (openx-2.8.10.tar.bz2) = 9787343 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 14:20:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E78CB106566C; Thu, 27 Sep 2012 14:20:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BAAF18FC0A; Thu, 27 Sep 2012 14:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8REKEd3080299; Thu, 27 Sep 2012 14:20:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8REKEDs080287; Thu, 27 Sep 2012 14:20:14 GMT (envelope-from edwin) Date: Thu, 27 Sep 2012 14:20:14 GMT Message-Id: <201209271420.q8REKEDs080287@freefall.freebsd.org> To: rm@FreeBSD.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172114: www/openx:update to 2.8.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 14:20:15 -0000 Synopsis: www/openx:update to 2.8.10 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Sep 27 14:20:14 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172114 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 14:21:43 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3052D1065679; Thu, 27 Sep 2012 14:21:43 +0000 (UTC) (envelope-from jase@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0313A8FC23; Thu, 27 Sep 2012 14:21:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RELgHL086906; Thu, 27 Sep 2012 14:21:42 GMT (envelope-from jase@freefall.freebsd.org) Received: (from jase@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RELgdl086902; Thu, 27 Sep 2012 15:21:42 +0100 (BST) (envelope-from jase) Date: Thu, 27 Sep 2012 15:21:42 +0100 (BST) Message-Id: <201209271421.q8RELgdl086902@freefall.freebsd.org> To: jase@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jase@FreeBSD.org From: jase@FreeBSD.org Cc: Subject: Re: ports/172084: New ioquake3-devel and iourbanterror source release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 14:21:43 -0000 Synopsis: New ioquake3-devel and iourbanterror source release Responsible-Changed-From-To: freebsd-ports-bugs->jase Responsible-Changed-By: jase Responsible-Changed-When: Thu 27 Sep 2012 15:21:42 BST Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172084 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 14:30:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8140F106564A for ; Thu, 27 Sep 2012 14:30:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6B6FD8FC17 for ; Thu, 27 Sep 2012 14:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8REUEWJ087625 for ; Thu, 27 Sep 2012 14:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8REUEq0087618; Thu, 27 Sep 2012 14:30:14 GMT (envelope-from gnats) Date: Thu, 27 Sep 2012 14:30:14 GMT Message-Id: <201209271430.q8REUEq0087618@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/172114: www/openx:update to 2.8.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 14:30:14 -0000 The following reply was made to PR ports/172114; it has been noted by GNATS. From: Edwin Groothuis To: meritus@innervision.pl Cc: bug-followup@FreeBSD.org Subject: Re: ports/172114: www/openx:update to 2.8.10 Date: Thu, 27 Sep 2012 14:20:10 UT Maintainer of www/openx, Please note that PR ports/172114 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/172114 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 15:05:43 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2F6D10656D6; Thu, 27 Sep 2012 15:05:42 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C58168FC16; Thu, 27 Sep 2012 15:05:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RF5gMt023041; Thu, 27 Sep 2012 15:05:42 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RF5gsw023036; Thu, 27 Sep 2012 15:05:42 GMT (envelope-from rm) Date: Thu, 27 Sep 2012 15:05:42 GMT Message-Id: <201209271505.q8RF5gsw023036@freefall.freebsd.org> To: meritus@innervision.pl, rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/172114: www/openx:update to 2.8.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 15:05:43 -0000 Synopsis: www/openx:update to 2.8.10 Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Thu Sep 27 15:05:41 UTC 2012 Responsible-Changed-Why: My PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=172114 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 16:50:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 16FA1106564A for ; Thu, 27 Sep 2012 16:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E58AC8FC12 for ; Thu, 27 Sep 2012 16:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RGo2Wn015084 for ; Thu, 27 Sep 2012 16:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RGo26R015083; Thu, 27 Sep 2012 16:50:02 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 16:50:02 GMT Resent-Message-Id: <201209271650.q8RGo26R015083@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kimo Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50FA21065670 for ; Thu, 27 Sep 2012 16:44:12 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 3930F8FC08 for ; Thu, 27 Sep 2012 16:44:12 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RGiC3a065563 for ; Thu, 27 Sep 2012 16:44:12 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8RGiBfk065562; Thu, 27 Sep 2012 16:44:11 GMT (envelope-from nobody) Message-Id: <201209271644.q8RGiBfk065562@red.freebsd.org> Date: Thu, 27 Sep 2012 16:44:11 GMT From: Kimo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172115: [NEW PORT] databases/rubygem-mysql2 - Ruby bindings for libmysql X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 16:50:03 -0000 >Number: 172115 >Category: ports >Synopsis: [NEW PORT] databases/rubygem-mysql2 - Ruby bindings for libmysql >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 16:50:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kimo >Release: 9.0-RELEASE >Organization: >Environment: >Description: New port for mysql2 ruby gem. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # rubygem-mysql2 # rubygem-mysql2/Makefile # rubygem-mysql2/distinfo # rubygem-mysql2/pkg-descr # echo c - rubygem-mysql2 mkdir -p rubygem-mysql2 > /dev/null 2>&1 echo x - rubygem-mysql2/Makefile sed 's/^X//' >rubygem-mysql2/Makefile << 'END-of-rubygem-mysql2/Makefile' XPORTNAME= mysql2 XPORTVERSION= 0.3.11 XCATEGORIES= databases rubygems XMASTER_SITES= RG X XMAINTAINER= ruby@FreeBSD.org XCOMMENT= A simple, fast Mysql library for Ruby, binding to libmysql X XUSE_MYSQL= yes X XUSE_RUBY= yes XUSE_RUBYGEMS= yes XRUBYGEM_AUTOPLIST= yes X X.include END-of-rubygem-mysql2/Makefile echo x - rubygem-mysql2/distinfo sed 's/^X//' >rubygem-mysql2/distinfo << 'END-of-rubygem-mysql2/distinfo' XSHA256 (rubygem/mysql2-0.3.11.gem) = 134f848e91d60756083873b66fc471a029b5df51c35852ef5a3a0f9f7a496641 XSIZE (rubygem/mysql2-0.3.11.gem) = 41984 END-of-rubygem-mysql2/distinfo echo x - rubygem-mysql2/pkg-descr sed 's/^X//' >rubygem-mysql2/pkg-descr << 'END-of-rubygem-mysql2/pkg-descr' XThe Mysql2 gem is meant to serve the extremely common use-case of connecting, Xquerying and iterating on results. Some database libraries out there serve as Xdirect 1:1 mappings of the already complex C API's available. This one is not. X XWWW: http://github.com/brianmario/mysql2 END-of-rubygem-mysql2/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 16:50:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05599106566B; Thu, 27 Sep 2012 16:50:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C91EF8FC0A; Thu, 27 Sep 2012 16:50:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RGoEXK016948; Thu, 27 Sep 2012 16:50:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RGoEMM016939; Thu, 27 Sep 2012 16:50:14 GMT (envelope-from edwin) Date: Thu, 27 Sep 2012 16:50:14 GMT Message-Id: <201209271650.q8RGoEMM016939@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172115: [NEW PORT] databases/rubygem-mysql2 - Ruby bindings for libmysql X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 16:50:15 -0000 Synopsis: [NEW PORT] databases/rubygem-mysql2 - Ruby bindings for libmysql Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 27 16:50:14 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172115 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 17:00:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2447A106564A for ; Thu, 27 Sep 2012 17:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EAE508FC15 for ; Thu, 27 Sep 2012 17:00:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RH0HHw023387 for ; Thu, 27 Sep 2012 17:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RH0HGU023386; Thu, 27 Sep 2012 17:00:17 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 17:00:17 GMT Resent-Message-Id: <201209271700.q8RH0HGU023386@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kimo Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 378AC106566C for ; Thu, 27 Sep 2012 16:53:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 094D28FC16 for ; Thu, 27 Sep 2012 16:53:41 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RGreR3082204 for ; Thu, 27 Sep 2012 16:53:40 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8RGremp082203; Thu, 27 Sep 2012 16:53:40 GMT (envelope-from nobody) Message-Id: <201209271653.q8RGremp082203@red.freebsd.org> Date: Thu, 27 Sep 2012 16:53:40 GMT From: Kimo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172116: [NEW PORT] devel/rubygem-pry-remote-em - Connect to Pry via EventMachine X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 17:00:18 -0000 >Number: 172116 >Category: ports >Synopsis: [NEW PORT] devel/rubygem-pry-remote-em - Connect to Pry via EventMachine >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 17:00:17 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kimo >Release: 9.0-RELEASE >Organization: >Environment: >Description: New port for pry-remote-em ruby gem. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # rubygem-pry-remote-em/ # rubygem-pry-remote-em//Makefile # rubygem-pry-remote-em//distinfo # rubygem-pry-remote-em//pkg-descr # echo c - rubygem-pry-remote-em/ mkdir -p rubygem-pry-remote-em/ > /dev/null 2>&1 echo x - rubygem-pry-remote-em//Makefile sed 's/^X//' >rubygem-pry-remote-em//Makefile << 'END-of-rubygem-pry-remote-em//Makefile' XPORTNAME= pry-remote-em XPORTVERSION= 0.7.3 XCATEGORIES= devel rubygems XMASTER_SITES= RG X XMAINTAINER= ruby@FreeBSD.org XCOMMENT= Connect to Pry remotely using EventMachine X XRUN_DEPENDS= rubygem-eventmachine>=0:${PORTSDIR}/devel/rubygem-eventmachine \ X rubygem-highline>=0:${PORTSDIR}/devel/rubygem-highline \ X rubygem-pry>=0.9:${PORTSDIR}/devel/rubygem-pry X XPLIST_FILES+= bin/pry-remote-em X XUSE_RUBY= yes XUSE_RUBYGEMS= yes XRUBYGEM_AUTOPLIST= yes X X.include END-of-rubygem-pry-remote-em//Makefile echo x - rubygem-pry-remote-em//distinfo sed 's/^X//' >rubygem-pry-remote-em//distinfo << 'END-of-rubygem-pry-remote-em//distinfo' XSHA256 (rubygem/pry-remote-em-0.7.3.gem) = 87c2f96ab3ab7ef4d814068aeb522270789dd8eb9fd50327f7da883a58089aec XSIZE (rubygem/pry-remote-em-0.7.3.gem) = 20480 END-of-rubygem-pry-remote-em//distinfo echo x - rubygem-pry-remote-em//pkg-descr sed 's/^X//' >rubygem-pry-remote-em//pkg-descr << 'END-of-rubygem-pry-remote-em//pkg-descr' XPryRemoteEm enables you to start instances of Pry in a running EventMachine Xprogram and connect to those Pry instances over a network or the Internet. XOnce connected you can interact with the internal state of the program. X XIt's based off of Mon-Ouie's pry-remote for DRb. X XIt adds user authentication and SSL support along with tab-completion and Xpaging. It's compatble with MRI 1.9, or any other VM with support for Fibers Xand EventMachine. X XWWW: http://github.com/simulacre/pry-remote-em END-of-rubygem-pry-remote-em//pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 17:00:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 92DD91065670 for ; Thu, 27 Sep 2012 17:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6BED78FC19 for ; Thu, 27 Sep 2012 17:00:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RH0IHR023413 for ; Thu, 27 Sep 2012 17:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RH0IfD023412; Thu, 27 Sep 2012 17:00:18 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 17:00:18 GMT Resent-Message-Id: <201209271700.q8RH0IfD023412@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kimo Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F3D87106566B for ; Thu, 27 Sep 2012 16:55:35 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id C5AFB8FC12 for ; Thu, 27 Sep 2012 16:55:35 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RGtZp6093878 for ; Thu, 27 Sep 2012 16:55:35 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8RGtZRv093864; Thu, 27 Sep 2012 16:55:35 GMT (envelope-from nobody) Message-Id: <201209271655.q8RGtZRv093864@red.freebsd.org> Date: Thu, 27 Sep 2012 16:55:35 GMT From: Kimo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172117: [NEW PORT] www/rubygem-async_sinatra - Async plugin to Sinatra X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 17:00:18 -0000 >Number: 172117 >Category: ports >Synopsis: [NEW PORT] www/rubygem-async_sinatra - Async plugin to Sinatra >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 17:00:17 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kimo >Release: 9.0-RELEASE >Organization: >Environment: >Description: New port for async_sinatra ruby gem. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # rubygem-async_sinatra/ # rubygem-async_sinatra//Makefile # rubygem-async_sinatra//distinfo # rubygem-async_sinatra//pkg-descr # echo c - rubygem-async_sinatra/ mkdir -p rubygem-async_sinatra/ > /dev/null 2>&1 echo x - rubygem-async_sinatra//Makefile sed 's/^X//' >rubygem-async_sinatra//Makefile << 'END-of-rubygem-async_sinatra//Makefile' XPORTNAME= async_sinatra XPORTVERSION= 1.0.0 XCATEGORIES= www rubygems XMASTER_SITES= RG X XMAINTAINER= ruby@FreeBSD.org XCOMMENT= A Sinatra plugin to provide async responses X XRUN_DEPENDS= rubygem-rack>=1.4.1:${PORTSDIR}/www/rubygem-rack \ X rubygem-sinatra>=1.3.2:${PORTSDIR}/www/rubygem-sinatra \ X XUSE_RUBY= yes XUSE_RUBYGEMS= yes XRUBYGEM_AUTOPLIST= yes X X.include END-of-rubygem-async_sinatra//Makefile echo x - rubygem-async_sinatra//distinfo sed 's/^X//' >rubygem-async_sinatra//distinfo << 'END-of-rubygem-async_sinatra//distinfo' XSHA256 (rubygem/async_sinatra-1.0.0.gem) = 2ae0d764f2edff215a4b8cf289422da0eaf82ee99ab070892273a2a81d4ed10b XSIZE (rubygem/async_sinatra-1.0.0.gem) = 10752 END-of-rubygem-async_sinatra//distinfo echo x - rubygem-async_sinatra//pkg-descr sed 's/^X//' >rubygem-async_sinatra//pkg-descr << 'END-of-rubygem-async_sinatra//pkg-descr' XA Sinatra plugin to provide convenience whilst performing asynchronous Xresponses inside of the Sinatra framework running under async webservers. XTo properly utilise this package, some knowledge of EventMachine and/or Xasynchronous patterns is recommended. Currently, supporting servers include: X* Thin * Rainbows * Zbatery X XWWW: http://github.com/raggi/async_sinatra END-of-rubygem-async_sinatra//pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 17:00:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B9911065673 for ; Thu, 27 Sep 2012 17:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E8ED78FC1B for ; Thu, 27 Sep 2012 17:00:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RH0I7H023459 for ; Thu, 27 Sep 2012 17:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RH0Iap023451; Thu, 27 Sep 2012 17:00:18 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 17:00:18 GMT Resent-Message-Id: <201209271700.q8RH0Iap023451@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kimo Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DDFA5106564A for ; Thu, 27 Sep 2012 16:57:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B03678FC08 for ; Thu, 27 Sep 2012 16:57:13 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RGvDZZ098127 for ; Thu, 27 Sep 2012 16:57:13 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8RGvDFH098126; Thu, 27 Sep 2012 16:57:13 GMT (envelope-from nobody) Message-Id: <201209271657.q8RGvDFH098126@red.freebsd.org> Date: Thu, 27 Sep 2012 16:57:13 GMT From: Kimo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172118: [NEW PORT] www/rubygem-eventmachine_httpserver - EventMachine HTTP server X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 17:00:19 -0000 >Number: 172118 >Category: ports >Synopsis: [NEW PORT] www/rubygem-eventmachine_httpserver - EventMachine HTTP server >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 17:00:18 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kimo >Release: 9.0-RELEASE >Organization: >Environment: >Description: New port for eventmachine_httpserver ruby gem. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # rubygem-eventmachine_httpserver/ # rubygem-eventmachine_httpserver//Makefile # rubygem-eventmachine_httpserver//distinfo # rubygem-eventmachine_httpserver//pkg-descr # echo c - rubygem-eventmachine_httpserver/ mkdir -p rubygem-eventmachine_httpserver/ > /dev/null 2>&1 echo x - rubygem-eventmachine_httpserver//Makefile sed 's/^X//' >rubygem-eventmachine_httpserver//Makefile << 'END-of-rubygem-eventmachine_httpserver//Makefile' XPORTNAME= eventmachine_httpserver XPORTVERSION= 0.2.1 XCATEGORIES= www rubygems XMASTER_SITES= RG X XMAINTAINER= ruby@FreeBSD.org XCOMMENT= EventMachine HTTP Server X XUSE_RUBY= yes XUSE_RUBYGEMS= yes XRUBYGEM_AUTOPLIST= yes X X.include END-of-rubygem-eventmachine_httpserver//Makefile echo x - rubygem-eventmachine_httpserver//distinfo sed 's/^X//' >rubygem-eventmachine_httpserver//distinfo << 'END-of-rubygem-eventmachine_httpserver//distinfo' XSHA256 (rubygem/eventmachine_httpserver-0.2.1.gem) = 5db5e8a23754204d43592e5fcc2160457c57c870babe6307c4e61fc95019b809 XSIZE (rubygem/eventmachine_httpserver-0.2.1.gem) = 25088 END-of-rubygem-eventmachine_httpserver//distinfo echo x - rubygem-eventmachine_httpserver//pkg-descr sed 's/^X//' >rubygem-eventmachine_httpserver//pkg-descr << 'END-of-rubygem-eventmachine_httpserver//pkg-descr' XAn evented http server built on top of eventmachine X XWWW: https://github.com/eventmachine/evma_httpserver END-of-rubygem-eventmachine_httpserver//pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 17:00:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 523381065676; Thu, 27 Sep 2012 17:00:30 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 256D18FC15; Thu, 27 Sep 2012 17:00:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RH0UUC025113; Thu, 27 Sep 2012 17:00:30 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RH0TcF025106; Thu, 27 Sep 2012 17:00:30 GMT (envelope-from edwin) Date: Thu, 27 Sep 2012 17:00:30 GMT Message-Id: <201209271700.q8RH0TcF025106@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172116: [NEW PORT] devel/rubygem-pry-remote-em - Connect to Pry via EventMachine X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 17:00:30 -0000 Synopsis: [NEW PORT] devel/rubygem-pry-remote-em - Connect to Pry via EventMachine Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 27 17:00:29 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172116 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 17:00:38 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA2AA10656A4; Thu, 27 Sep 2012 17:00:38 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7E08E8FC1E; Thu, 27 Sep 2012 17:00:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RH0cf1026117; Thu, 27 Sep 2012 17:00:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RH0cTw026105; Thu, 27 Sep 2012 17:00:38 GMT (envelope-from edwin) Date: Thu, 27 Sep 2012 17:00:38 GMT Message-Id: <201209271700.q8RH0cTw026105@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172117: [NEW PORT] www/rubygem-async_sinatra - Async plugin to Sinatra X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 17:00:38 -0000 Synopsis: [NEW PORT] www/rubygem-async_sinatra - Async plugin to Sinatra Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 27 17:00:37 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172117 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 17:00:48 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F25CC10656B1; Thu, 27 Sep 2012 17:00:47 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C5E168FC21; Thu, 27 Sep 2012 17:00:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RH0lAD027162; Thu, 27 Sep 2012 17:00:47 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RH0lFc027152; Thu, 27 Sep 2012 17:00:47 GMT (envelope-from edwin) Date: Thu, 27 Sep 2012 17:00:47 GMT Message-Id: <201209271700.q8RH0lFc027152@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172118: [NEW PORT] www/rubygem-eventmachine_httpserver - EventMachine HTTP server X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 17:00:48 -0000 Synopsis: [NEW PORT] www/rubygem-eventmachine_httpserver - EventMachine HTTP server Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 27 17:00:46 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172118 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 17:59:56 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 203C0106566C; Thu, 27 Sep 2012 17:59:56 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E7F6E8FC12; Thu, 27 Sep 2012 17:59:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RHxtgh078300; Thu, 27 Sep 2012 17:59:55 GMT (envelope-from swills@freefall.freebsd.org) Received: (from swills@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RHxtUp078296; Thu, 27 Sep 2012 17:59:55 GMT (envelope-from swills) Date: Thu, 27 Sep 2012 17:59:55 GMT Message-Id: <201209271759.q8RHxtUp078296@freefall.freebsd.org> To: swills@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: swills@FreeBSD.org Cc: Subject: Re: ports/172108: [PATCH] graphics/ilmbase: libIlmThread is not linked with pthread library X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 17:59:56 -0000 Synopsis: [PATCH] graphics/ilmbase: libIlmThread is not linked with pthread library Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: swills Responsible-Changed-When: Thu Sep 27 17:59:55 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172108 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 18:00:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 85CB41065677 for ; Thu, 27 Sep 2012 18:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3DB5C8FC17 for ; Thu, 27 Sep 2012 18:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RI0J97078363 for ; Thu, 27 Sep 2012 18:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RI0J7Z078362; Thu, 27 Sep 2012 18:00:19 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 18:00:19 GMT Resent-Message-Id: <201209271800.q8RI0J7Z078362@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 519BB106566C for ; Thu, 27 Sep 2012 17:51:40 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) by mx1.freebsd.org (Postfix) with ESMTP id F01438FC0C for ; Thu, 27 Sep 2012 17:51:39 +0000 (UTC) Received: from meatwad.mouf.net ([IPv6:2001:470:8:58f:21f:d0ff:feaf:1a4d]) by mouf.net (8.14.5/8.14.5) with ESMTP id q8RHkoCd036515 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 27 Sep 2012 13:46:55 -0400 (EDT) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q8RHpHgT026546; Thu, 27 Sep 2012 13:51:17 -0400 (EDT) (envelope-from steve) Message-Id: <201209271751.q8RHpHgT026546@meatwad.mouf.net> Date: Thu, 27 Sep 2012 13:51:17 -0400 (EDT) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: 5u623l20@gmail.com Subject: ports/172120: [PATCH] devel/p5-Test-Class-Most: update to 0.07 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 18:00:19 -0000 >Number: 172120 >Category: ports >Synopsis: [PATCH] devel/p5-Test-Class-Most: update to 0.07 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 18:00:18 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #7 r239244M: Mon Aug 13 23:21:42 EDT >Description: - Update to 0.07 Port maintainer (5u623l20@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- p5-Test-Class-Most-0.07.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 304967) +++ Makefile (working copy) @@ -6,8 +6,7 @@ # PORTNAME= Test-Class-Most -PORTVERSION= 0.06 -PORTREVISION= 1 +PORTVERSION= 0.07 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:OVID Index: distinfo =================================================================== --- distinfo (revision 304967) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (Test-Class-Most-0.06.tar.gz) = d4f7ce9af942ec5a5b75209e65c3a6c998cad4c96ebfd43d6cd93c0c22434fc6 -SIZE (Test-Class-Most-0.06.tar.gz) = 7483 +SHA256 (Test-Class-Most-0.07.tar.gz) = 5561de43d137bcb2f5fdd34a86352a2a85048bcb065aca01c96e9bc7cdb23395 +SIZE (Test-Class-Most-0.07.tar.gz) = 7615 --- p5-Test-Class-Most-0.07.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 18:00:31 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 618691065674; Thu, 27 Sep 2012 18:00:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 353FE8FC1B; Thu, 27 Sep 2012 18:00:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RI0Vjk080179; Thu, 27 Sep 2012 18:00:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RI0VGH080169; Thu, 27 Sep 2012 18:00:31 GMT (envelope-from edwin) Date: Thu, 27 Sep 2012 18:00:31 GMT Message-Id: <201209271800.q8RI0VGH080169@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172120: [PATCH] devel/p5-Test-Class-Most: update to 0.07 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 18:00:31 -0000 Synopsis: [PATCH] devel/p5-Test-Class-Most: update to 0.07 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 27 18:00:30 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172120 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 18:40:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E129106566B for ; Thu, 27 Sep 2012 18:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 574EA8FC15 for ; Thu, 27 Sep 2012 18:40:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RIe6wd016890 for ; Thu, 27 Sep 2012 18:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RIe6jM016883; Thu, 27 Sep 2012 18:40:06 GMT (envelope-from gnats) Date: Thu, 27 Sep 2012 18:40:06 GMT Message-Id: <201209271840.q8RIe6jM016883@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Martin Dieringer Cc: Subject: Re: ports/171796: [NEW PORT] cad/repsnapper: Controller and GCode generator for RepRap 3D printers X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Martin Dieringer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 18:40:06 -0000 The following reply was made to PR ports/171796; it has been noted by GNATS. From: Martin Dieringer To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/171796: [NEW PORT] cad/repsnapper: Controller and GCode generator for RepRap 3D printers Date: Thu, 27 Sep 2012 20:29:57 +0200 (CEST) new shar for version 2.0.0b01 --- .shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # repsnapper # repsnapper/pkg-plist # repsnapper/Makefile # repsnapper/distinfo # repsnapper/pkg-descr # echo c - repsnapper mkdir -p repsnapper > /dev/null 2>&1 echo x - repsnapper/pkg-plist sed 's/^X//' >repsnapper/pkg-plist << '4862dd7212c67652971f4ec0a8c74113' Xbin/repsnapper Xshare/applications/repsnapper.desktop Xetc/xdg/repsnapper/repsnapper.conf Xshare/locale/en_GB/LC_MESSAGES/repsnapper.mo Xshare/locale/de_DE/LC_MESSAGES/repsnapper.mo X@dirrm etc/xdg/repsnapper/ 4862dd7212c67652971f4ec0a8c74113 echo x - repsnapper/Makefile sed 's/^X//' >repsnapper/Makefile << '8715f8ced5909f677292f25be4152329' X# New ports collection makefile for: repsnapper X# Date created: 30 July 2012 X# Whom: martin.dieringe@gmx.de X# X# $FreeBSD$ X# X XPORTNAME= repsnapper XPORTVERSION= 2.0.0b01 XCATEGORIES= cad XMASTER_SITES= http://nodeload.github.com/timschmidt/repsnapper/tarball/ XDISTNAME= ${PORTVERSION} XEXTRACT_SUFX= # XDIST_SUBDIR= ${PORTNAME} X XMAINTAINER= martin.dieringer@gmx.de XCOMMENT= Controller and GCode generator for RepRap 3D printers X XLICENSE= GPLv2 XLICENSE_FILE= ${WRKSRC}/licenses/GPL-2.0.txt X XBUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser XLIB_DEPENDS= gtkglext:${PORTSDIR}/x11-toolkits/gtkglext \ X glut:${PORTSDIR}/graphics/freeglut/ \ X gtkmm-2:${PORTSDIR}/x11-toolkits/gtkmm24 \ X zip:${PORTSDIR}/archivers/libzip X XMAKE_JOBS_SAFE= yes XUSE_GNOME= gtk20 XUSE_GL= glut X X.if !defined(WITHOUT_NLS) XUSE_GETTEXT= yes XPLIST_SUB+= NLS="" X.else XCONFIGURE_ARGS+= --disable-nls XPLIST_SUB+= NLS="@comment " X.endif X XWRKSRC= ${WRKDIR}/timschmidt-${PORTNAME}-39af569 XINSTALL_TARGET= install-strip XCONFIGURE_ARGS= --prefix=${PREFIX} XUSE_AUTOTOOLS= automake X X#USE_LDCONFIG= yes XUSE_GMAKE= yes XUSE_XORG= x11 X Xpre-configure: X cd ${WRKSRC} && ./autogen.sh X Xpost-install: X ${MKDIR} ${PREFIX}/share/locale/en_GB/LC_MESSAGES X ${MV} ${PREFIX}/lib/locale/en_GB/LC_MESSAGES/repsnapper.mo ${PREFIX}/share/locale/en_GB/LC_MESSAGES/ X ${MKDIR} ${PREFIX}/share/locale/de_DE/LC_MESSAGES X ${MV} ${PREFIX}/lib/locale/de_DE/LC_MESSAGES/repsnapper.mo ${PREFIX}/share/locale/de_DE/LC_MESSAGES/ X X.include 8715f8ced5909f677292f25be4152329 echo x - repsnapper/distinfo sed 's/^X//' >repsnapper/distinfo << 'eadfeb873bc57e75224679158d118939' XSHA256 (repsnapper/2.0.0b01) = 01ac8745933f87661972492476eb94b90ae2272e522b6accec64e6b2a938f60d XSIZE (repsnapper/2.0.0b01) = 1340375 eadfeb873bc57e75224679158d118939 echo x - repsnapper/pkg-descr sed 's/^X//' >repsnapper/pkg-descr << 'f568d0b9a82b0fd3b377e449b96461e4' XRepSnapper is a host software for controlling a RepRap 3D printer. It has a X3D OpenGL interface, slices objects and calculates the extrusion toolpath. XIt can manipulate 3D objects and save constellations in STL and AMF format. X XWWW: http://reprap.org/wiki/RepSnapper_Manual:Introduction f568d0b9a82b0fd3b377e449b96461e4 exit --- .shar ends here --- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 19:49:36 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 046CD106564A; Thu, 27 Sep 2012 19:49:36 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CDBB28FC15; Thu, 27 Sep 2012 19:49:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RJnZll080023; Thu, 27 Sep 2012 19:49:35 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RJnZbG080019; Thu, 27 Sep 2012 19:49:35 GMT (envelope-from madpilot) Date: Thu, 27 Sep 2012 19:49:35 GMT Message-Id: <201209271949.q8RJnZbG080019@freefall.freebsd.org> To: madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Cc: Subject: Re: ports/172109: [PATCH] update audio/csound to 5.18.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 19:49:36 -0000 Synopsis: [PATCH] update audio/csound to 5.18.2 Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Thu Sep 27 19:49:35 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172109 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 20:30:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA580106564A for ; Thu, 27 Sep 2012 20:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BBCA48FC0C for ; Thu, 27 Sep 2012 20:30:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RKU4qu015362 for ; Thu, 27 Sep 2012 20:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RKU49N015361; Thu, 27 Sep 2012 20:30:04 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 20:30:04 GMT Resent-Message-Id: <201209272030.q8RKU49N015361@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, ChrisPetrik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54BEF106566B for ; Thu, 27 Sep 2012 20:21:24 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 401A68FC15 for ; Thu, 27 Sep 2012 20:21:24 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RKLOvZ036254 for ; Thu, 27 Sep 2012 20:21:24 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8RKLNh6036253; Thu, 27 Sep 2012 20:21:23 GMT (envelope-from nobody) Message-Id: <201209272021.q8RKLNh6036253@red.freebsd.org> Date: Thu, 27 Sep 2012 20:21:23 GMT From: ChrisPetrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172122: misc/ossp-uuid broken with perl X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 20:30:05 -0000 >Number: 172122 >Category: ports >Synopsis: misc/ossp-uuid broken with perl >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 20:30:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: ChrisPetrik >Release: >Organization: none >Environment: >Description: When trying to compilg in perl support for misc/ossp-uuid I get an error with Makefile.PL >How-To-Repeat: >Fix: NO fix but login file is supplied. Patch attached with submission follows: Script started on Thu Sep 27 20:20:32 2012 make -DWITH_PERL ===> ossp-uuid-1.6.2_2 depends on file: /usr/local/sbin/pkg - found ===> Extracting for ossp-uuid-1.6.2_2 => SHA256 Checksum OK for uuid-1.6.2.tar.gz. ===> ossp-uuid-1.6.2_2 depends on file: /usr/local/bin/perl5.14.2 - found ===> Patching for ossp-uuid-1.6.2_2 ===> ossp-uuid-1.6.2_2 depends on file: /usr/local/bin/perl5.14.2 - found ===> Applying FreeBSD patches for ossp-uuid-1.6.2_2 ===> ossp-uuid-1.6.2_2 depends on file: /usr/local/bin/perl5.14.2 - found ===> Configuring for ossp-uuid-1.6.2_2 Configuring OSSP uuid (Universally Unique Identifier), version 1.6.2 (04-Jul-2008) checking whether make sets $(MAKE)... yes checking for gcc... cc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for compilation debug mode... disabled checking how to run the C preprocessor... cpp checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking whether to build against external Dmalloc library... no checking build system type... amd64-portbld-freebsd9.0 checking host system type... amd64-portbld-freebsd9.0 checking for a sed that does not truncate output... /usr/bin/sed checking for fgrep... /usr/bin/grep -F checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking for /usr/bin/ld option to reload object files... -r checking how to recognize dependent libraries... pass_all checking for ar... ar checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for dlfcn.h... yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd9.0 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... no checking whether to build static libraries... yes checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking how to run the C++ preprocessor... c++ -E checking for gethostname in -lnsl... no checking for gethostbyname in -lnsl... no checking for accept in -lsocket... no checking for va_copy() function... yes checking for sys/types.h... (cached) yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking sys/sockio.h usability... yes checking sys/sockio.h presence... yes checking for sys/sockio.h... yes checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking for netdb.h... yes checking for ifaddrs.h... yes checking for net/if.h... yes checking for net/if_dl.h... yes checking for net/if_arp.h... yes checking for netinet/in.h... yes checking for arpa/inet.h... yes checking for struct timeval... yes checking for getifaddrs... yes checking for nanosleep... yes checking for Sleep... no checking for gettimeofday... yes checking for clock_gettime... yes checking for long long... yes checking for long double... yes checking size of char... 1 checking size of unsigned char... 1 checking size of short... 2 checking size of unsigned short... 2 checking size of int... 4 checking size of unsigned int... 4 checking size of long... 8 checking size of unsigned long... 8 checking size of long long... 8 checking size of unsigned long long... 8 checking whether to build DCE 1.1 backward compatibility API... (cached) no checking whether to build C++ bindings to C API... (cached) yes checking whether we are using the GNU C++ compiler... (cached) yes checking whether c++ accepts -g... (cached) yes checking for ld used by c++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking for c++ option to produce PIC... -fPIC -DPIC checking if c++ PIC flag -fPIC -DPIC works... yes checking if c++ static flag -static works... yes checking if c++ supports -c -o file.o... yes checking if c++ supports -c -o file.o... (cached) yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd9.0 ld.so checking how to hardcode library paths into programs... immediate checking whether to build Perl bindings to C API... (cached) yes checking whether to build Perl compatibility API... (cached) no checking for perl... /usr/local/bin/perl5.14.2 checking whether to build PHP bindings to C API... (cached) no checking for php5... no checking for php... no checking whether to build PostgreSQL bindings to C API... (cached) no checking for pg_config... no configure: creating ./config.status config.status: creating Makefile config.status: creating uuid-config config.status: creating uuid.pc config.status: creating uuid.h config.status: creating config.h config.status: executing libtool commands config.status: executing adjustment commands ===> Building for ossp-uuid-1.6.2_2 libtool: compile: cc -I. -I. -DHAVE_CONFIG_H -O2 -pipe -fPIC -DPIC -fno-strict-aliasing -c ./uuid.c -o uuid.o libtool: compile: cc -I. -I. -DHAVE_CONFIG_H -O2 -pipe -fPIC -DPIC -fno-strict-aliasing -c ./uuid_md5.c -o uuid_md5.o libtool: compile: cc -I. -I. -DHAVE_CONFIG_H -O2 -pipe -fPIC -DPIC -fno-strict-aliasing -c ./uuid_sha1.c -o uuid_sha1.o libtool: compile: cc -I. -I. -DHAVE_CONFIG_H -O2 -pipe -fPIC -DPIC -fno-strict-aliasing -c ./uuid_prng.c -o uuid_prng.o libtool: compile: cc -I. -I. -DHAVE_CONFIG_H -O2 -pipe -fPIC -DPIC -fno-strict-aliasing -c ./uuid_mac.c -o uuid_mac.o libtool: compile: cc -I. -I. -DHAVE_CONFIG_H -O2 -pipe -fPIC -DPIC -fno-strict-aliasing -c uuid_time.c -o uuid_time.o libtool: compile: cc -I. -I. -DHAVE_CONFIG_H -O2 -pipe -fPIC -DPIC -fno-strict-aliasing -c ./uuid_ui64.c -o uuid_ui64.o libtool: compile: cc -I. -I. -DHAVE_CONFIG_H -O2 -pipe -fPIC -DPIC -fno-strict-aliasing -c uuid_ui128.c -o uuid_ui128.o libtool: compile: cc -I. -I. -DHAVE_CONFIG_H -O2 -pipe -fPIC -DPIC -fno-strict-aliasing -c ./uuid_str.c -o uuid_str.o libtool: link: warning: `-rpath' is ignored for archives libtool: link: warning: `-version-info/-version-number' is ignored for archives libtool: link: ar cru libuuid.a uuid.o uuid_md5.o uuid_sha1.o uuid_prng.o uuid_mac.o uuid_time.o uuid_ui64.o uuid_ui128.o uuid_str.o libtool: link: ranlib libuuid.a libtool: compile: c++ -I. -I. -DHAVE_CONFIG_H -O2 -pipe -fPIC -DPIC -fno-strict-aliasing -c ./uuid++.cc -o uuid++.o libtool: link: ar cru .libs/libuuid++.a uuid++.o uuid.o uuid_md5.o uuid_sha1.o uuid_prng.o uuid_mac.o uuid_time.o uuid_ui64.o uuid_ui128.o uuid_str.o libtool: link: ranlib .libs/libuuid++.a libtool: link: ( cd ".libs" && rm -f "libuuid++.la" && ln -s "../libuuid++.la" "libuuid++.la" ) cc -I. -I. -DHAVE_CONFIG_H -O2 -pipe -fPIC -DPIC -fno-strict-aliasing -c ./uuid_cli.c libtool: link: cc -o uuid uuid_cli.o libuuid.a no source directory found (where libuuid.la is located) at Makefile.PL line 37. *** Error code 2 Stop in /var/ports/basejail/usr/ports/misc/ossp-uuid/work/uuid-1.6.2. *** Error code 1 Stop in /basejail/usr/ports/misc/ossp-uuid. Script done on Thu Sep 27 20:20:38 2012 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 20:30:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41EE0106564A; Thu, 27 Sep 2012 20:30:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 15C668FC12; Thu, 27 Sep 2012 20:30:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RKUHXj017274; Thu, 27 Sep 2012 20:30:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RKUH6F017264; Thu, 27 Sep 2012 20:30:17 GMT (envelope-from edwin) Date: Thu, 27 Sep 2012 20:30:17 GMT Message-Id: <201209272030.q8RKUH6F017264@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vd@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172122: misc/ossp-uuid broken with perl X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 20:30:18 -0000 Synopsis: misc/ossp-uuid broken with perl Responsible-Changed-From-To: freebsd-ports-bugs->vd Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 27 20:30:17 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172122 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 21:21:46 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A75B106566B; Thu, 27 Sep 2012 21:21:46 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F34908FC08; Thu, 27 Sep 2012 21:21:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RLLjS9071974; Thu, 27 Sep 2012 21:21:45 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RLLj77071970; Thu, 27 Sep 2012 21:21:45 GMT (envelope-from madpilot) Date: Thu, 27 Sep 2012 21:21:45 GMT Message-Id: <201209272121.q8RLLj77071970@freefall.freebsd.org> To: madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Cc: Subject: Re: ports/172098: [Maintainer] www/squid31: update to 3.1.21 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 21:21:46 -0000 Synopsis: [Maintainer] www/squid31: update to 3.1.21 Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Thu Sep 27 21:21:45 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172098 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 21:40:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3939106566B for ; Thu, 27 Sep 2012 21:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8D6428FC18 for ; Thu, 27 Sep 2012 21:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RLe3WB082752 for ; Thu, 27 Sep 2012 21:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RLe3KL082751; Thu, 27 Sep 2012 21:40:03 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 21:40:03 GMT Resent-Message-Id: <201209272140.q8RLe3KL082751@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8AC45106566C for ; Thu, 27 Sep 2012 21:33:48 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.23]) by mx1.freebsd.org (Postfix) with SMTP id 077908FC19 for ; Thu, 27 Sep 2012 21:33:47 +0000 (UTC) Received: (qmail invoked by alias); 27 Sep 2012 21:33:40 -0000 Received: from 201-230.4-85.cust.bluewin.ch (EHLO something.email.com) [85.4.230.201] by mail.gmx.net (mp031) with SMTP; 27 Sep 2012 23:33:40 +0200 Received: by something.email.com (sSMTP sendmail emulation); Thu, 27 Sep 2012 23:33:39 +0200 Message-Id: <20120927213348.8AC45106566C@hub.freebsd.org> Date: Thu, 27 Sep 2012 23:33:39 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172123: [NEW PORT] games/rescue: Rescue! Max, Action Adventure in Space X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 21:40:03 -0000 >Number: 172123 >Category: ports >Synopsis: [NEW PORT] games/rescue: Rescue! Max, Action Adventure in Space >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 21:40:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Rescue Max is a Action Adventure in Space written in java. It is based on a old mac game called Rescue! by Tom Spreen. A 2D space real-time, action/strategy game. You are in control of a ship that you fly around space fighting enemies and making friends on your way. The main objective is to rescue people from planets and take them to star bases. WWW: http://rescue.sourceforge.net/ Generated and tested manually, tested with port test and with RedPorts (all RELEASES, CLANG), sent with FreeBSD Port Tools 0.99_6 (mode: new) >How-To-Repeat: portlint -A WARN: Makefile: [36]: possible direct use of command "false" found. use ${FALSE} instead. 0 fatal errors and 1 warning found. WARN: Makefile: [36] because is used DESKTOP_ENTRIES=...false Build log RedPorts https://redports.org/buildarchive/20120927180959-44974/ >Fix: --- .shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # rescue # rescue/Makefile # rescue/distinfo # rescue/pkg-descr # rescue/files # rescue/files/rescue.in # echo c - rescue mkdir -p rescue > /dev/null 2>&1 echo x - rescue/Makefile sed 's/^X//' >rescue/Makefile << 'cc26371508edcdf876ba82926fafc0d7' X# $FreeBSD$ X XPORTNAME= rescue XPORTVERSION= 1.0.0.2 XCATEGORIES= games java XMASTER_SITES= SF/${PORTNAME}/${PORTNAME:S/r/R/}%21%20Max/${PORTVERSION}/ XDISTNAME= ${PORTNAME:S/r/R/}_${PORTVERSION} XDIST_SUBDIR= java X XMAINTAINER= nemysis@gmx.ch XCOMMENT= Rescue! Max, Action Adventure in Space X XLICENSE= GPLv2 X XUSE_ZIP= yes XUSE_JAVA= yes XJAVA_VERSION= 1.5+ XNO_BUILD= yes X XWRKSRC= ${WRKDIR}/${PORTNAME:S/r/R/} X XPLIST_FILES= bin/${PORTNAME} \ X share/pixmaps/${PORTNAME}.png X XPORTDATA= * XPORTDOCS= ChangeLog.txt bugs.txt XDATADIR= ${JAVASHAREDIR}/${PORTNAME} X XSUB_FILES= ${PORTNAME} X XDESKTOP_ENTRIES="Rescue! Max" \ X "Rescue! Max, Action Adventure in Space" \ X "${PREFIX}/share/pixmaps/${PORTNAME}.png" \ X "${PORTNAME}" \ X "Game;StrategyGame;" \ X false X X.include X Xpost-extract: X @(cd ${WRKSRC} && ${UNZIP_CMD} -j Rescue.jar rescue/gui/logo.png) X Xdo-install: X# Scripts X ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin X X# Data X ${MKDIR} ${DATADIR} X @(cd ${WRKSRC} && ${COPYTREE_SHARE} "help missions *.jar" ${DATADIR}) X X# Pixmaps X ${INSTALL_DATA} ${WRKSRC}/logo.png ${PREFIX}/share/pixmaps/${PORTNAME}.png X X# Documentation X.if ${PORT_OPTIONS:MDOCS} X ${MKDIR} ${DOCSDIR} X ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} X.endif X X.include cc26371508edcdf876ba82926fafc0d7 echo x - rescue/distinfo sed 's/^X//' >rescue/distinfo << '1d47478fc3e9cd91c5b3435d70c093d7' XSHA256 (java/Rescue_1.0.0.2.zip) = 38cb6f68f2dafcc44a4b34b65a2ab36136d37029c60136646068da4634e8f5b3 XSIZE (java/Rescue_1.0.0.2.zip) = 3907836 1d47478fc3e9cd91c5b3435d70c093d7 echo x - rescue/pkg-descr sed 's/^X//' >rescue/pkg-descr << '35a0a784bd654015e2391c9e55e27200' XRescue Max is a Action Adventure in Space written in java. XIt is based on a old mac game called Rescue! by Tom Spreen. X XA 2D space real-time, action/strategy game. You are in control of a ship that Xyou fly around space fighting enemies and making friends on your way. XThe main objective is to rescue people from planets and take them to star bases. X XWWW: http://rescue.sourceforge.net/ 35a0a784bd654015e2391c9e55e27200 echo c - rescue/files mkdir -p rescue/files > /dev/null 2>&1 echo x - rescue/files/rescue.in sed 's/^X//' >rescue/files/rescue.in << '61263886bc071a8b6baf780785a2dd2f' X#!/bin/sh X# X# $FreeBSD$ X# X Xexport JAVA_VERSION="%%JAVA_VERSION%%" X Xcd "%%DATADIR%%" && exec "%%LOCALBASE%%/bin/java" \ X-Djava.ext.dirs="%%DATADIR%%" -jar "%%DATADIR%%/Rescue.jar" "${@}" 61263886bc071a8b6baf780785a2dd2f exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 22:10:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8F08C1065674 for ; Thu, 27 Sep 2012 22:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 48B588FC0A for ; Thu, 27 Sep 2012 22:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RMA6ce008545 for ; Thu, 27 Sep 2012 22:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RMA60Q008544; Thu, 27 Sep 2012 22:10:06 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 22:10:06 GMT Resent-Message-Id: <201209272210.q8RMA60Q008544@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kimo Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42D7C106564A for ; Thu, 27 Sep 2012 22:09:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 2F1628FC0C for ; Thu, 27 Sep 2012 22:09:37 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RM9aH3026257 for ; Thu, 27 Sep 2012 22:09:36 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8RM9aHp026256; Thu, 27 Sep 2012 22:09:36 GMT (envelope-from nobody) Message-Id: <201209272209.q8RM9aHp026256@red.freebsd.org> Date: Thu, 27 Sep 2012 22:09:36 GMT From: Kimo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172124: [PATCH] textproc/pecl-xdiff 1.5.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 22:10:06 -0000 >Number: 172124 >Category: ports >Synopsis: [PATCH] textproc/pecl-xdiff 1.5.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 22:10:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kimo >Release: 9.0-RELEASE >Organization: >Environment: >Description: PECL xdiff 1.5.2 works with php 5.4. Attached patch updates the port. >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/textproc/pecl-xdiff/Makefile b/textproc/pecl-xdiff/Makefile index 251173d..416b302 100644 --- a/textproc/pecl-xdiff/Makefile +++ b/textproc/pecl-xdiff/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xdiff -PORTVERSION= 1.5.1 +PORTVERSION= 1.5.2 CATEGORIES= textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- @@ -20,8 +20,7 @@ LIB_DEPENDS= xdiff.0:${PORTSDIR}/textproc/libxdiff USE_PHP= yes USE_PHPEXT= yes -DEFAULT_PHP_VER=53 -IGNORE_WITH_PHP=5 +DEFAULT_PHP_VER=5 LDFLAGS+= -L${LOCALBASE}/lib diff --git a/textproc/pecl-xdiff/distinfo b/textproc/pecl-xdiff/distinfo index a516f96..80e668a 100644 --- a/textproc/pecl-xdiff/distinfo +++ b/textproc/pecl-xdiff/distinfo @@ -1,2 +1,2 @@ -SHA256 (PECL/xdiff-1.5.1.tgz) = 2b5ff3804494623592551450e34290a87c5a8d3903c9d8f944d7dd1d717fb261 -SIZE (PECL/xdiff-1.5.1.tgz) = 9147 +SHA256 (PECL/xdiff-1.5.2.tgz) = ebe72b887fcd2296f1e4032d476a8a463803ccfb0b34b403be8433daf3cfd81d +SIZE (PECL/xdiff-1.5.2.tgz) = 9275 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 22:10:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2E721106564A; Thu, 27 Sep 2012 22:10:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 028BA8FC0C; Thu, 27 Sep 2012 22:10:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RMAFh4010652; Thu, 27 Sep 2012 22:10:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RMAFh9010642; Thu, 27 Sep 2012 22:10:15 GMT (envelope-from edwin) Date: Thu, 27 Sep 2012 22:10:15 GMT Message-Id: <201209272210.q8RMAFh9010642@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172124: [PATCH] textproc/pecl-xdiff 1.5.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 22:10:16 -0000 Synopsis: [PATCH] textproc/pecl-xdiff 1.5.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 27 22:10:15 UTC 2012 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172124 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 22:40:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C07D5106566B for ; Thu, 27 Sep 2012 22:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 998528FC20 for ; Thu, 27 Sep 2012 22:40:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RMe63a036877 for ; Thu, 27 Sep 2012 22:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RMe6Ru036876; Thu, 27 Sep 2012 22:40:06 GMT (envelope-from gnats) Resent-Date: Thu, 27 Sep 2012 22:40:06 GMT Resent-Message-Id: <201209272240.q8RMe6Ru036876@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "4721@hushmail.com" <4721@hushmail.com> Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9E463106566C for ; Thu, 27 Sep 2012 22:38:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 712A28FC0C for ; Thu, 27 Sep 2012 22:38:19 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RMcJRV076037 for ; Thu, 27 Sep 2012 22:38:19 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8RMcJEj076036; Thu, 27 Sep 2012 22:38:19 GMT (envelope-from nobody) Message-Id: <201209272238.q8RMcJEj076036@red.freebsd.org> Date: Thu, 27 Sep 2012 22:38:19 GMT From: "4721@hushmail.com" <4721@hushmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172125: [patch] upgrade www/youtube_dl to latest X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 22:40:07 -0000 >Number: 172125 >Category: ports >Synopsis: [patch] upgrade www/youtube_dl to latest >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Sep 27 22:40:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: 4721@hushmail.com >Release: >Organization: >Environment: >Description: * update www/youtube_dl from 2012.02.27 to 2012.09.27 * switch to USE_GITHUB note: new file pkg-plist. youtube_dl is not longer a single-file-program. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: www/youtube_dl/distinfo =================================================================== --- www/youtube_dl/distinfo (revision 304731) +++ www/youtube_dl/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (youtube_dl/2012.02.27/youtube-dl) = 98146a510fed3d39a34a686e1100d6df4efa2b9b9e194649e615afc1ff646834 -SIZE (youtube_dl/2012.02.27/youtube-dl) = 159848 +SHA256 (youtube_dl-2012.09.27) = 45e88c1a5b81e633bddd43d5363e7ade92af2eeb534c37a5170f4b68d73605ea +SIZE (youtube_dl-2012.09.27) = 2874838 Index: www/youtube_dl/pkg-plist =================================================================== --- www/youtube_dl/pkg-plist (revision 0) +++ www/youtube_dl/pkg-plist (working copy) @@ -0,0 +1,8 @@ +bin/youtube-dl +%%PYTHON_SITELIBDIR%%/youtube_dl/FileDownloader.py +%%PYTHON_SITELIBDIR%%/youtube_dl/InfoExtractors.py +%%PYTHON_SITELIBDIR%%/youtube_dl/PostProcessor.py +%%PYTHON_SITELIBDIR%%/youtube_dl/__init__.py +%%PYTHON_SITELIBDIR%%/youtube_dl/__main__.py +%%PYTHON_SITELIBDIR%%/youtube_dl/utils.py +@dirrm %%PYTHON_SITELIBDIR%%/youtube_dl Index: www/youtube_dl/Makefile =================================================================== --- www/youtube_dl/Makefile (revision 304731) +++ www/youtube_dl/Makefile (working copy) @@ -6,26 +6,25 @@ # PORTNAME= youtube_dl -PORTVERSION= 2012.02.27 +PORTVERSION= 2012.09.27 CATEGORIES= www -MASTER_SITES= https://raw.github.com/rg3/youtube-dl/${PORTVERSION}/ \ +MASTER_SITES= GH \ CRITICAL -DISTNAME= youtube-dl EXTRACT_SUFX= # empty -DIST_SUBDIR= ${PORTNAME}/${PORTVERSION} -EXTRACT_ONLY= # empty MAINTAINER= araujo@FreeBSD.org COMMENT= A program for downloading videos from YouTube.com LICENSE= GPLv2 +USE_GITHUB= yes +GH_ACCOUNT= rg3 +GH_PROJECT= youtube-dl +GH_COMMIT= b5de8af +GH_TAGNAME= master NO_BUILD= yes -NO_WRKSUBDIR= yes USE_PYTHON_RUN= 2.5-2.7 -PLIST_FILES= bin/youtube-dl - OPTIONS= RTMPDUMP "Use RTMPDUMP to download rtmp video streams" on \ FFMPEG "Use ffmpeg (required for audio conversion)" off @@ -44,10 +43,9 @@ . endif .endif -post-extract: - @${CP} ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME} ${WRKSRC}/youtube-dl - do-install: + @${MKDIR} ${PYTHON_SITELIBDIR}/${PORTNAME} + @${INSTALL_DATA} ${WRKSRC}/${PORTNAME}/*.py ${PYTHON_SITELIBDIR}/${PORTNAME} @${INSTALL_SCRIPT} ${WRKSRC}/youtube-dl ${PREFIX}/bin/youtube-dl .if defined(WITH_FFMPEG) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 22:40:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0D61A106566C; Thu, 27 Sep 2012 22:40:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D5C7D8FC1A; Thu, 27 Sep 2012 22:40:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8RMeHqp039486; Thu, 27 Sep 2012 22:40:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8RMeHKJ039478; Thu, 27 Sep 2012 22:40:17 GMT (envelope-from edwin) Date: Thu, 27 Sep 2012 22:40:17 GMT Message-Id: <201209272240.q8RMeHKJ039478@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, araujo@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172125: [patch] upgrade www/youtube_dl to latest X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2012 22:40:18 -0000 Synopsis: [patch] upgrade www/youtube_dl to latest Responsible-Changed-From-To: freebsd-ports-bugs->araujo Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 27 22:40:17 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172125 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 00:20:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D2E2A106566C for ; Fri, 28 Sep 2012 00:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8D2B18FC0A for ; Fri, 28 Sep 2012 00:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S0K3Vs031900 for ; Fri, 28 Sep 2012 00:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S0K3kq031899; Fri, 28 Sep 2012 00:20:03 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 00:20:03 GMT Resent-Message-Id: <201209280020.q8S0K3kq031899@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, milki Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 662D41065670 for ; Fri, 28 Sep 2012 00:19:42 +0000 (UTC) (envelope-from milki@cibo.ircmylife.com) Received: from cibo.ircmylife.com (unknown [IPv6:2607:f2f8:af08::2]) by mx1.freebsd.org (Postfix) with ESMTP id 4BCAB8FC12 for ; Fri, 28 Sep 2012 00:19:42 +0000 (UTC) Received: from cibo.ircmylife.com (localhost [127.0.0.1]) by cibo.ircmylife.com (8.14.5/8.14.5) with ESMTP id q8S0Jdag072070 for ; Thu, 27 Sep 2012 17:19:39 -0700 (PDT) (envelope-from milki@cibo.ircmylife.com) Received: (from milki@localhost) by cibo.ircmylife.com (8.14.5/8.14.5/Submit) id q8S0JdOW072069; Thu, 27 Sep 2012 17:19:39 -0700 (PDT) (envelope-from milki) Message-Id: <201209280019.q8S0JdOW072069@cibo.ircmylife.com> Date: Thu, 27 Sep 2012 17:19:39 -0700 (PDT) From: milki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172126: [MAINTAINER] sysutils/password-store: update to 1.4_2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 00:20:03 -0000 >Number: 172126 >Category: ports >Synopsis: [MAINTAINER] sysutils/password-store: update to 1.4_2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 00:20:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: milki >Release: FreeBSD 8.3-RELEASE-p3 amd64 >Organization: cibo >Environment: System: FreeBSD cibo.ircmylife.com 8.3-RELEASE-p3 FreeBSD 8.3-RELEASE-p3 #0: Tue Jun 12 00:39:29 UTC 2012 >Description: - Update to 1.4_2 Add missing bash depends Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- password-store-1.4_2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/password-store/Makefile ./Makefile --- /usr/ports/sysutils/password-store/Makefile 2012-09-27 06:30:59.000000000 -0700 +++ ./Makefile 2012-09-27 17:19:20.000000000 -0700 @@ -2,7 +2,7 @@ PORTNAME= password-store PORTVERSION= 1.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://git.zx2c4.com/password-store/snapshot/ @@ -11,7 +11,8 @@ LICENSE= GPLv2 -RUN_DEPENDS= gnupg>=2:${PORTSDIR}/security/gnupg \ +RUN_DEPENDS= bash>=0:${PORTSDIR}/shells/bash \ + gnupg>=2:${PORTSDIR}/security/gnupg \ pwgen>=0:${PORTSDIR}/sysutils/pwgen \ tree>=0:${PORTSDIR}/sysutils/tree --- password-store-1.4_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 00:20:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52935106564A; Fri, 28 Sep 2012 00:20:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 25C408FC14; Fri, 28 Sep 2012 00:20:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S0KFgn033740; Fri, 28 Sep 2012 00:20:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S0KE1Y033727; Fri, 28 Sep 2012 00:20:15 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 00:20:15 GMT Message-Id: <201209280020.q8S0KE1Y033727@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172126: [MAINTAINER] sysutils/password-store: update to 1.4_2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 00:20:15 -0000 Synopsis: [MAINTAINER] sysutils/password-store: update to 1.4_2 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 28 00:20:14 UTC 2012 Responsible-Changed-Why: swills@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172126 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 01:00:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DCD56106566B for ; Fri, 28 Sep 2012 01:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9F7FD8FC0C for ; Fri, 28 Sep 2012 01:00:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S10IbG067757 for ; Fri, 28 Sep 2012 01:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S10IKH067756; Fri, 28 Sep 2012 01:00:18 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 01:00:18 GMT Resent-Message-Id: <201209280100.q8S10IKH067756@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4FF7106564A for ; Fri, 28 Sep 2012 00:59:56 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) by mx1.freebsd.org (Postfix) with ESMTP id 7E1228FC12 for ; Fri, 28 Sep 2012 00:59:56 +0000 (UTC) Received: from meatwad.mouf.net ([IPv6:2001:470:8:58f:21f:d0ff:feaf:1a4d]) by mouf.net (8.14.5/8.14.5) with ESMTP id q8S0t3Cx043595 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 27 Sep 2012 20:55:09 -0400 (EDT) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q8S0xckQ012153; Thu, 27 Sep 2012 20:59:38 -0400 (EDT) (envelope-from steve) Message-Id: <201209280059.q8S0xckQ012153@meatwad.mouf.net> Date: Thu, 27 Sep 2012 20:59:38 -0400 (EDT) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: g.veniamin@googlemail.com Subject: ports/172127: [PATCH] net-mgmt/p5-FusionInventory-Agent: Fix plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 01:00:22 -0000 >Number: 172127 >Category: ports >Synopsis: [PATCH] net-mgmt/p5-FusionInventory-Agent: Fix plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 01:00:18 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #7 r239244M: Mon Aug 13 23:21:42 EDT >Description: - Fix plist See: http://pointyhat.freebsd.org/errorlogs/amd64-errorlogs/a.9.20120913072723/p5-FusionInventory-Agent-2.2.5.log Port maintainer (g.veniamin@googlemail.com) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- p5-FusionInventory-Agent-2.2.5.patch begins here --- Index: pkg-plist =================================================================== --- pkg-plist (revision 304978) +++ pkg-plist (working copy) @@ -1,5 +1,8 @@ bin/fusioninventory-agent bin/fusioninventory-injector +@unexec if cmp -s %D/etc/fusioninventory/agent.cfg.sample %D/etc/fusioninventory/agent.cfg; then rm -f %D/etc/fusioninventory/agent.cfg; fi +etc/fusioninventory/agent.cfg.sample +@exec if [ ! -f %D/etc/fusioninventory/agent.cfg ] ; then cp -p %D/etc/fusioninventory/agent.cfg.sample %D/etc/fusioninventory/agent.cfg; fi share/fusioninventory/lib/FusionInventory/Agent.pm share/fusioninventory/lib/FusionInventory/Agent/Config.pm share/fusioninventory/lib/FusionInventory/Agent/HTTP/Client.pm Index: Makefile =================================================================== --- Makefile (revision 304978) +++ Makefile (working copy) @@ -15,18 +15,8 @@ MAINTAINER= g.veniamin@googlemail.com COMMENT= Agent for OCS Inventory server and FusionInventory for GLPI servers -OPTIONS= CUPS "Enable CUPS" OFF \ - HTTP "Enable HTTP daemon mode" OFF \ - ZLIB "Enable Zlib compression" ON \ - SSL "Enable SSL" OFF \ - DMIDECODE "Enable dmidecode hardware information" ON \ - PCIUTILS "Enable pciutils hardware information" ON \ - NMAP "Enable NMAP network inventory" OFF - LICENSE= GPLv2 -USE_GMAKE= yes - BUILD_DEPENDS= p5-Text-Template>=0:${PORTSDIR}/textproc/p5-Text-Template \ p5-ExtUtils-MakeMaker>=6.59:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker \ p5-UNIVERSAL-require>=0:${PORTSDIR}/devel/p5-UNIVERSAL-require \ @@ -36,7 +26,6 @@ p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ p5-File-Which>=0:${PORTSDIR}/sysutils/p5-File-Which RUN_DEPENDS:= ${BUILD_DEPENDS} - TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \ p5-Test-MockModule>=0:${PORTSDIR}/devel/p5-Test-MockModule \ p5-HTTP-Server-Simple>=0:${PORTSDIR}/www/p5-HTTP-Server-Simple \ @@ -44,9 +33,18 @@ p5-HTTP-Proxy>=0:${PORTSDIR}/www/p5-HTTP-Proxy \ p5-IPC-Run>=0:${PORTSDIR}/devel/p5-IPC-Run \ p5-YAML>=0:${PORTSDIR}/textproc/p5-YAML \ - p5-IO-Capture>=0:${PORTSDIR}/devel/p5-IO-Capture \ + p5-IO-Capture>=0:${PORTSDIR}/devel/p5-IO-Capture +OPTIONS= CUPS "Enable CUPS" OFF \ + HTTP "Enable HTTP daemon mode" OFF \ + ZLIB "Enable Zlib compression" ON \ + SSL "Enable SSL" OFF \ + DMIDECODE "Enable dmidecode hardware information" ON \ + PCIUTILS "Enable pciutils hardware information" ON \ + NMAP "Enable NMAP network inventory" OFF + PERL_CONFIGURE= yes +USE_GMAKE= yes MAN1= fusioninventory-agent.1 \ fusioninventory-injector.1 @@ -125,4 +123,9 @@ @${FIND} ${WRKSRC} -type f \( -name '*.orig' \) -delete @${ECHO_MSG} " [ DONE ]" +post-install: + @if [ ! -f ${PREFIX}/etc/fusioninventory/agent.cfg ]; then \ + ${CP} -p ${PREFIX}/etc/fusioninventory/agent.cfg.sample ${PREFIX}/etc/fusioninventory/agent.cfg ; \ + fi + .include Index: files/patch-Makefile.PL =================================================================== --- files/patch-Makefile.PL (revision 0) +++ files/patch-Makefile.PL (working copy) @@ -0,0 +1,15 @@ +--- Makefile.PL.orig 2012-09-27 23:53:24.000000000 +0000 ++++ Makefile.PL 2012-09-27 23:55:38.000000000 +0000 +@@ -151,11 +151,7 @@ + + config_install : + install -d -m 755 $(DESTDIR)$(SYSCONFDIR) +- if [ -f $(DESTDIR)/$(SYSCONFDIR)/agent.cfg ]; then \ +- install -m 644 etc/agent.cfg $(DESTDIR)$(SYSCONFDIR)/agent.cfg.new; \ +- else \ +- install -m 644 etc/agent.cfg $(DESTDIR)$(SYSCONFDIR)/agent.cfg; \ +- fi ++ install -m 644 etc/agent.cfg $(DESTDIR)$(SYSCONFDIR)/agent.cfg.sample + + data_install : + install -d -m 755 $(DESTDIR)$(DATADIR) Property changes on: files/patch-Makefile.PL ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property --- p5-FusionInventory-Agent-2.2.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 01:00:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E6C3106566B; Fri, 28 Sep 2012 01:00:34 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 322668FC14; Fri, 28 Sep 2012 01:00:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S10YK5070133; Fri, 28 Sep 2012 01:00:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S10Y1E070126; Fri, 28 Sep 2012 01:00:34 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 01:00:34 GMT Message-Id: <201209280100.q8S10Y1E070126@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172127: [PATCH] net-mgmt/p5-FusionInventory-Agent: Fix plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 01:00:34 -0000 Synopsis: [PATCH] net-mgmt/p5-FusionInventory-Agent: Fix plist Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 28 01:00:33 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172127 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 01:40:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ECD7E106568A for ; Fri, 28 Sep 2012 01:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B89538FC1A for ; Fri, 28 Sep 2012 01:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S1e2kK005767 for ; Fri, 28 Sep 2012 01:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S1e2LZ005766; Fri, 28 Sep 2012 01:40:02 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 01:40:02 GMT Resent-Message-Id: <201209280140.q8S1e2LZ005766@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tsurutani Naoki Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 176B6106566B for ; Fri, 28 Sep 2012 01:38:37 +0000 (UTC) (envelope-from turutani@scphys.kyoto-u.ac.jp) Received: from smtp-auth.kuins.kyoto-u.ac.jp (smtp-auth.kuins.kyoto-u.ac.jp [133.3.248.237]) by mx1.freebsd.org (Postfix) with ESMTP id A459B8FC14 for ; Fri, 28 Sep 2012 01:38:36 +0000 (UTC) Received: from smtp-auth.kuins.kyoto-u.ac.jp (smtp-auth.kuins.kyoto-u.ac.jp [127.0.0.1]) by postfix.imss70 (Postfix) with ESMTP id DCEBA2EC002; Fri, 28 Sep 2012 10:13:16 +0900 (JST) Received: from h120.65.226.10.32118.vlan.kuins.net (wd232.BFL23.vectant.ne.jp [210.131.195.232]) by smtp-auth.kuins.kyoto-u.ac.jp (Postfix) with ESMTP id C37AA2EC001; Fri, 28 Sep 2012 10:13:16 +0900 (JST) Received: from h120.65.226.10.32118.vlan.kuins.net (localhost [127.0.0.1]) by h120.65.226.10.32118.vlan.kuins.net (8.14.4/8.14.4/20071004-1) with ESMTP id q8S1DAtv026667; Fri, 28 Sep 2012 10:13:10 +0900 (JST) (envelope-from turutani@h120.65.226.10.32118.vlan.kuins.net) Received: (from turutani@localhost) by h120.65.226.10.32118.vlan.kuins.net (8.14.4/8.14.4/Submit) id q8S1D69T026666; Fri, 28 Sep 2012 10:13:06 +0900 (JST) (envelope-from turutani) Message-Id: <201209280113.q8S1D69T026666@h120.65.226.10.32118.vlan.kuins.net> Date: Fri, 28 Sep 2012 10:13:06 +0900 (JST) From: Tsurutani Naoki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: turutani@scphys.kyoto-u.ac.jp Subject: ports/172128: building multimedia/vlc fails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tsurutani Naoki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 01:40:03 -0000 >Number: 172128 >Category: ports >Synopsis: building multimedia/vlc fails >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 01:40:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Tsurutani Naoki >Release: FreeBSD 8.2-PRERELEASE i386 >Organization: >Environment: System: FreeBSD h120.65.226.10.32118.vlan.kuins.net 8.2-PRERELEASE FreeBSD 8.2-PRERELEASE #25: Mon Jan 24 10:37:18 JST 2011 turutani@h120.65.226.10.32118.vlan.kuins.net:/usr/local/work/usr/obj/usr/src/sys/POLYMER i386 >Description: building multimedia/vlc fails. >How-To-Repeat: % cd /usr/ports/multimedia/vlc % make ... dialogs/sout.cpp: In member function 'void SoutDialog::addDest()': dialogs/sout.cpp:189:51: warning: 'db' may be used uninitialized in this function [-Wuninitialized] CXX dialogs/libqt4_plugin_la-help.lo In file included from dialogs/help.cpp:33:0: ../../../include/vlc_about.h:759:1: error: stray '\352' in program ../../../include/vlc_about.h:759:1: error: stray '\271' in program ../../../include/vlc_about.h:759:1: error: stray '\200' in program ../../../include/vlc_about.h:759:1: error: stray '\354' in program ../../../include/vlc_about.h:759:1: error: stray '\240' in program ../../../include/vlc_about.h:759:1: error: stray '\225' in program ../../../include/vlc_about.h:759:1: error: stray '\354' in program ../../../include/vlc_about.h:759:1: error: stray '\235' in program ../../../include/vlc_about.h:759:1: error: stray '\200' in program CXX dialogs/libqt4_plugin_la-gototime.lo gmake[6]: *** [dialogs/libqt4_plugin_la-help.lo] ¥¨¥é¡¼ 1 gmake[6]: *** ̤´°Î»¤Î¥¸¥ç¥Ö¤òÂԤäƤ¤¤Þ¤¹.... In file included from dialogs/gototime.cpp:29:0: ./input_manager.hpp: In member function 'bool InputManager::hasInput()': ./input_manager.hpp:136:16: warning: 'bool vlc_object_alive(const vlc_object_t*)' is deprecated (declared at ../../../include/vlc_objects.h:81) [-Wdeprecated-declarations] ./input_manager.hpp:136:16: warning: 'bool vlc_object_alive(const vlc_object_t*)' is deprecated (declared at ../../../include/vlc_objects.h:81) [-Wdeprecated-declarations] gmake[6]: ¥Ç¥£¥ì¥¯¥È¥ê `/usr/ports/multimedia/vlc/work/vlc-2.0.3/modules/gui/qt4' ¤«¤é½Ð¤Þ¤¹ gmake[5]: *** [all] ¥¨¥é¡¼ 2 gmake[5]: ¥Ç¥£¥ì¥¯¥È¥ê `/usr/ports/multimedia/vlc/work/vlc-2.0.3/modules/gui/qt4' ¤«¤é½Ð¤Þ¤¹ gmake[4]: *** [all-recursive] ¥¨¥é¡¼ 1 gmake[4]: ¥Ç¥£¥ì¥¯¥È¥ê `/usr/ports/multimedia/vlc/work/vlc-2.0.3/modules/gui' ¤«¤é½Ð¤Þ¤¹ gmake[3]: *** [all] ¥¨¥é¡¼ 2 gmake[3]: ¥Ç¥£¥ì¥¯¥È¥ê `/usr/ports/multimedia/vlc/work/vlc-2.0.3/modules/gui' ¤«¤é½Ð¤Þ¤¹ gmake[2]: *** [all-recursive] ¥¨¥é¡¼ 1 gmake[2]: ¥Ç¥£¥ì¥¯¥È¥ê `/usr/ports/multimedia/vlc/work/vlc-2.0.3/modules' ¤«¤é½Ð¤Þ¤¹ gmake[1]: *** [all-recursive] ¥¨¥é¡¼ 1 gmake[1]: ¥Ç¥£¥ì¥¯¥È¥ê `/usr/ports/multimedia/vlc/work/vlc-2.0.3' ¤«¤é½Ð¤Þ¤¹ gmake: *** [all] ¥¨¥é¡¼ 2 *** Error code 1 Stop in /usr/ports/multimedia/vlc. *** Error code 1 Stop in /usr/ports/multimedia/vlc. >Fix: this problem occurs when LANG=ja_JP.eucJP, and does not occur with LANG=C; this is a locale dependent problem. I think it should be built with any locale. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 01:40:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B898C106568B; Fri, 28 Sep 2012 01:40:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 89EF78FC18; Fri, 28 Sep 2012 01:40:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S1eDoe008133; Fri, 28 Sep 2012 01:40:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S1eDRh008124; Fri, 28 Sep 2012 01:40:13 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 01:40:13 GMT Message-Id: <201209280140.q8S1eDRh008124@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172128: building multimedia/vlc fails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 01:40:13 -0000 Synopsis: building multimedia/vlc fails Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 28 01:40:13 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172128 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 02:00:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D105C1065672 for ; Fri, 28 Sep 2012 02:00:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8FFE98FC16 for ; Fri, 28 Sep 2012 02:00:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S20Kgb022768 for ; Fri, 28 Sep 2012 02:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S20KWc022765; Fri, 28 Sep 2012 02:00:20 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 02:00:20 GMT Resent-Message-Id: <201209280200.q8S20KWc022765@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA149106564A; Fri, 28 Sep 2012 01:50:19 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [92.53.116.15]) by mx1.freebsd.org (Postfix) with ESMTP id 10E828FC14; Fri, 28 Sep 2012 01:50:18 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.76) (envelope-from ) id 1THPiV-0008QX-A3; Fri, 28 Sep 2012 05:50:11 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id D6E26B868; Fri, 28 Sep 2012 05:50:10 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id C58011D0; Fri, 28 Sep 2012 05:50:10 +0400 (MSK) Message-Id: <20120928015010.C58011D0@hades.panopticon> Date: Fri, 28 Sep 2012 05:50:10 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: wxs@FreeBSD.org Subject: ports/172129: security/sudo: doesn't build WITH_OPIE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 02:00:20 -0000 >Number: 172129 >Category: ports >Synopsis: security/sudo: doesn't build WITH_OPIE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 02:00:19 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Wed Jun 13 17:39:20 MSK 2012 >Description: While testing recent i386 build fix, I've also built sudo with various options combinations and it failed when OPIE option enabled: --- configure: error: Cannot mix mutually exclusive (PAM) and regular (NRL_OPIE) authentication methods --- Full log: http://people.freebsd.org/~amdmi3/sudo-opie-1.8.6.p3_1.log Port maintainer (wxs@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 02:01:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19C1210656A4; Fri, 28 Sep 2012 02:01:32 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E1B7A8FC12; Fri, 28 Sep 2012 02:01:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S21V1M030897; Fri, 28 Sep 2012 02:01:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S21VDF030893; Fri, 28 Sep 2012 02:01:31 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 02:01:31 GMT Message-Id: <201209280201.q8S21VDF030893@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wxs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172129: security/sudo: doesn't build WITH_OPIE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 02:01:32 -0000 Synopsis: security/sudo: doesn't build WITH_OPIE Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 28 02:01:31 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172129 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 03:40:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5EDF106566B for ; Fri, 28 Sep 2012 03:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7BA8E8FC16 for ; Fri, 28 Sep 2012 03:40:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S3e6tX013989 for ; Fri, 28 Sep 2012 03:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S3e6Cn013984; Fri, 28 Sep 2012 03:40:06 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 03:40:06 GMT Resent-Message-Id: <201209280340.q8S3e6Cn013984@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jin-Sih Lin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B5E85106566B for ; Fri, 28 Sep 2012 03:31:49 +0000 (UTC) (envelope-from root@deep.tw) Received: from deep.tw (220-134-39-129.HINET-IP.hinet.net [220.134.39.129]) by mx1.freebsd.org (Postfix) with ESMTP id 81D118FC0A for ; Fri, 28 Sep 2012 03:31:49 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id A654B5CE7; Fri, 28 Sep 2012 11:31:41 +0800 (CST) Message-Id: <20120928033141.A654B5CE7@deep.tw> Date: Fri, 28 Sep 2012 11:31:41 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172130: [MAINTAINER] www/node: update to 0.8.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 03:40:06 -0000 >Number: 172130 >Category: ports >Synopsis: [MAINTAINER] www/node: update to 0.8.11 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 03:40:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jin-Sih Lin >Release: FreeBSD 10.0-CURRENT i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD deep.tw 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Aug 18 08:09:36 CST 2012 >Description: - Update to 0.8.11 Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- node-0.8.11.patch begins here --- diff -ruN --exclude=CVS ../node.orig/Makefile ./Makefile --- ../node.orig/Makefile 2012-09-26 07:06:51.000000000 +0800 +++ ./Makefile 2012-09-28 11:04:37.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= node -PORTVERSION= 0.8.10 +PORTVERSION= 0.8.11 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-v${PORTVERSION} diff -ruN --exclude=CVS ../node.orig/distinfo ./distinfo --- ../node.orig/distinfo 2012-09-26 07:07:06.000000000 +0800 +++ ./distinfo 2012-09-28 11:04:53.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (node-v0.8.10.tar.gz) = ce495ab8fee58b4df49d46be2b08fabdd2fcb3880982aedda8e88751e2a2011b -SIZE (node-v0.8.10.tar.gz) = 11818602 +SHA256 (node-v0.8.11.tar.gz) = e9594460f992b5862e21fb4d8ef27907839254c646b4ed5e8ab1ec25b4ccd29d +SIZE (node-v0.8.11.tar.gz) = 11816407 --- node-0.8.11.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 03:40:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BBF9106566B; Fri, 28 Sep 2012 03:40:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D3AFA8FC1A; Fri, 28 Sep 2012 03:40:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S3eGBs016361; Fri, 28 Sep 2012 03:40:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S3eGP0016347; Fri, 28 Sep 2012 03:40:16 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 03:40:16 GMT Message-Id: <201209280340.q8S3eGP0016347@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172130: [MAINTAINER] www/node: update to 0.8.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 03:40:17 -0000 Synopsis: [MAINTAINER] www/node: update to 0.8.11 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 28 03:40:16 UTC 2012 Responsible-Changed-Why: swills@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172130 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 04:44:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 24C48106564A; Fri, 28 Sep 2012 04:44:07 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EC9748FC0C; Fri, 28 Sep 2012 04:44:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S4i64S076369; Fri, 28 Sep 2012 04:44:06 GMT (envelope-from ak@freefall.freebsd.org) Received: (from ak@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S4i67s076365; Fri, 28 Sep 2012 04:44:06 GMT (envelope-from ak) Date: Fri, 28 Sep 2012 04:44:06 GMT Message-Id: <201209280444.q8S4i67s076365@freefall.freebsd.org> To: ak@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ak@FreeBSD.org From: ak@FreeBSD.org Cc: Subject: Re: ports/172111: [PATCH] games/doom X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 04:44:07 -0000 Synopsis: [PATCH] games/doom Responsible-Changed-From-To: freebsd-ports-bugs->ak Responsible-Changed-By: ak Responsible-Changed-When: Fri Sep 28 04:44:06 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172111 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 05:00:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D449B106564A for ; Fri, 28 Sep 2012 05:00:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8CFF38FC12 for ; Fri, 28 Sep 2012 05:00:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S50G50085194 for ; Fri, 28 Sep 2012 05:00:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S50Gac085193; Fri, 28 Sep 2012 05:00:16 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 05:00:16 GMT Resent-Message-Id: <201209280500.q8S50Gac085193@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kevin Oberman Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7E3DB106566B for ; Fri, 28 Sep 2012 04:55:21 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id 4FD9C8FC16 for ; Fri, 28 Sep 2012 04:55:20 +0000 (UTC) Received: by padbi1 with SMTP id bi1so2203387pad.13 for ; Thu, 27 Sep 2012 21:55:20 -0700 (PDT) Received: by 10.68.226.100 with SMTP id rr4mr17303889pbc.143.1348808120544; Thu, 27 Sep 2012 21:55:20 -0700 (PDT) Received: from rogue.comcast.net (c-76-103-19-192.hsd1.ca.comcast.net. [76.103.19.192]) by mx.google.com with ESMTPS id qf4sm4982665pbc.1.2012.09.27.21.55.18 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 27 Sep 2012 21:55:19 -0700 (PDT) Received: by rogue.comcast.net (Postfix, from userid 9381) id E430C2847F; Thu, 27 Sep 2012 21:55:16 -0700 (PDT) Message-Id: <20120928045516.E430C2847F@rogue.comcast.net> Date: Thu, 27 Sep 2012 21:55:16 -0700 (PDT) From: Kevin Oberman Sender: Kevin Oberman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172131: aspell port has an undesirable conflict with ispell X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kevin Oberman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 05:00:16 -0000 >Number: 172131 >Category: ports >Synopsis: aspell port has an undesirable conflict with ispell >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 05:00:16 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kevin Oberman >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD rogue.local 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #4 r239879: Wed Aug 29 15:25:13 PDT 2012 root@rogue.local:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The Makefile for the new aspell port added an option for the ispell wrapper. Since the wrapper creates an ispell executable, the CONFLICT statement that was added to be conditional on the selection of the ispell wrapper, but a second unconditional CONFLICTS was also added that makes it impossible to install aspell and ispell on hte same system. >How-To-Repeat: N/A >Fix: --- Makefile.orig 2012-09-27 21:49:12.000000000 -0700 +++ Makefile 2012-09-27 21:50:04.000000000 -0700 @@ -23,7 +23,6 @@ --enable-curses=ncursesw \ --enable-static -CONFLICTS+= ispell* ??-ispell* SCRIPTS= ispell spell USE_GMAKE= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 07:20:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5AA9F106566C for ; Fri, 28 Sep 2012 07:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2FB7B8FC0C for ; Fri, 28 Sep 2012 07:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S7K3fQ015892 for ; Fri, 28 Sep 2012 07:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S7K3vT015891; Fri, 28 Sep 2012 07:20:03 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 07:20:03 GMT Resent-Message-Id: <201209280720.q8S7K3vT015891@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KT Sin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B56FD106564A for ; Fri, 28 Sep 2012 07:10:11 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 875358FC0A for ; Fri, 28 Sep 2012 07:10:11 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S7ABXI041667 for ; Fri, 28 Sep 2012 07:10:11 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8S7AB9R041666; Fri, 28 Sep 2012 07:10:11 GMT (envelope-from nobody) Message-Id: <201209280710.q8S7AB9R041666@red.freebsd.org> Date: Fri, 28 Sep 2012 07:10:11 GMT From: KT Sin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172132: unable to build chinese/mutt under recent 9.x X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 07:20:03 -0000 >Number: 172132 >Category: ports >Synopsis: unable to build chinese/mutt under recent 9.x >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 07:20:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KT Sin >Release: FreeBSD 9.1-RC2 >Organization: >Environment: FreeBSD passion.hsins.com 9.1-RC2 FreeBSD 9.1-RC2 #0: Fri Sep 28 11:35:17 MYT 2012 ktsin@passion.hsins.com:/tmp/obj/usr/src/sys/PASSION amd64 >Description: ports chinese/mutt fails to build when CFLAGS_ADD+=-D_DONT_USE_CTYPE_INLINE_ is defined in Makefile. something must have changed in the compilers. please investigate and fix. Making all in contrib Making all in imap cc -I/usr/local/include -DHAVE_CONFIG_H -I. -I.. -I.. -I../intl -I/usr/include -I/usr/local/include/db43 -I/usr/local/include -I../intl -O2 -pipe -Wl,-rpath,/usr/lib:/usr/local/lib -D_DONT_USE_CTYPE_INLINE_ -fno-strict-aliasing -MT auth.o -MD -MP -MF .deps/auth.Tpo -c -o auth.o auth.c In file included from ../mutt.h:963, from auth.c:27: ./protos.h:490: error: conflicting types for 'fprintf' ./protos.h:490: note: a parameter list with an ellipsis can't match an empty parameter name list declaration ./protos.h:491: error: conflicting types for 'printf' ./protos.h:491: note: a parameter list with an ellipsis can't match an empty parameter name list declaration ./protos.h:495: error: conflicting types for 'sscanf' ./protos.h:495: note: a parameter list with an ellipsis can't match an empty parameter name list declaration ./protos.h:519: error: conflicting types for 'readlink' /usr/include/unistd.h:404: error: previous declaration of 'readlink' was here *** [auth.o] Error code 1 Stop in /tmp/obj/usr/ports/chinese/mutt/work/mutt-1.5.21/imap. *** [all-recursive] Error code 1 Stop in /tmp/obj/usr/ports/chinese/mutt/work/mutt-1.5.21. *** [all] Error code 1 Stop in /tmp/obj/usr/ports/chinese/mutt/work/mutt-1.5.21. *** [do-build] Error code 1 Stop in /usr/ports/chinese/mutt. *** [/tmp/obj/usr/ports/chinese/mutt/work/.build_done.mutt._usr_local] Error code 1 Stop in /usr/ports/chinese/mutt. >How-To-Repeat: >Fix: remove CFLAGS_ADD+=-D_DONT_USE_CTYPE_INLINE_ from Makefile before building. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 07:20:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A40D5106564A; Fri, 28 Sep 2012 07:20:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 775488FC14; Fri, 28 Sep 2012 07:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S7KEDW017459; Fri, 28 Sep 2012 07:20:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S7KEwO017450; Fri, 28 Sep 2012 07:20:14 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 07:20:14 GMT Message-Id: <201209280720.q8S7KEwO017450@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rafan@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172132: unable to build chinese/mutt under recent 9.x X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 07:20:14 -0000 Synopsis: unable to build chinese/mutt under recent 9.x Responsible-Changed-From-To: freebsd-ports-bugs->rafan Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 28 07:20:13 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172132 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 08:20:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95A7D1065676 for ; Fri, 28 Sep 2012 08:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5417C8FC12 for ; Fri, 28 Sep 2012 08:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S8K7eg077959 for ; Fri, 28 Sep 2012 08:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S8K75E077958; Fri, 28 Sep 2012 08:20:07 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 08:20:07 GMT Resent-Message-Id: <201209280820.q8S8K75E077958@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Naylor Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 912E71065672 for ; Fri, 28 Sep 2012 08:13:35 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 7BEFC8FC14 for ; Fri, 28 Sep 2012 08:13:35 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S8DZQS040838 for ; Fri, 28 Sep 2012 08:13:35 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8S8DZfu040837; Fri, 28 Sep 2012 08:13:35 GMT (envelope-from nobody) Message-Id: <201209280813.q8S8DZfu040837@red.freebsd.org> Date: Fri, 28 Sep 2012 08:13:35 GMT From: David Naylor To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172134: [patch] update deskutils/plasma-applets-cwp from 1.6.3 to 1.6.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 08:20:07 -0000 >Number: 172134 >Category: ports >Synopsis: [patch] update deskutils/plasma-applets-cwp from 1.6.3 to 1.6.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 08:20:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: David Naylor >Release: >Organization: >Environment: >Description: 1.6.4 ===== - xml: ilmeteo.it: fixed apostrophe character in location names - xml: pogodynka.pl: fixed wrong low temperature in some cases - xml: accuweather.com (US): fixed location names - xml: accuweather.com (US): fixed forecast after midnight >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ur /usr/ports/deskutils/plasma-applet-cwp/Makefile plasma-applet-cwp/Makefile --- /usr/ports/deskutils/plasma-applet-cwp/Makefile 2012-08-10 03:12:36.000000000 +0200 +++ plasma-applet-cwp/Makefile 2012-09-28 10:10:41.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= cwp -PORTVERSION= 1.6.3 +PORTVERSION= 1.6.4 CATEGORIES= deskutils kde MASTER_SITES= http://kde-look.org/CONTENT/content-files/ PKGNAMEPREFIX= plasma-applet- diff -ur /usr/ports/deskutils/plasma-applet-cwp/distinfo plasma-applet-cwp/distinfo --- /usr/ports/deskutils/plasma-applet-cwp/distinfo 2012-08-10 03:12:36.000000000 +0200 +++ plasma-applet-cwp/distinfo 2012-09-28 10:11:27.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (98925-cwp-1.6.3.tar.bz2) = a9beb53c7d272b0dad16392aaf487b000937ef6000097a16d3ce100c8eb4c442 -SIZE (98925-cwp-1.6.3.tar.bz2) = 198854 +SHA256 (98925-cwp-1.6.4.tar.bz2) = ed7a3cccbd566b36f5f3ca5b8578b7fe3c8c4f58a24fb23068183a2a30e19646 +SIZE (98925-cwp-1.6.4.tar.bz2) = 198870 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 08:46:59 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1CB9F1065670; Fri, 28 Sep 2012 08:46:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E2A3E8FC08; Fri, 28 Sep 2012 08:46:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S8kwX7007852; Fri, 28 Sep 2012 08:46:58 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S8kwpM007847; Fri, 28 Sep 2012 08:46:58 GMT (envelope-from sunpoet) Date: Fri, 28 Sep 2012 08:46:58 GMT Message-Id: <201209280846.q8S8kwpM007847@freefall.freebsd.org> To: rkoberman@gmail.com, sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Cc: Subject: Re: ports/172131: aspell port has an undesirable conflict with ispell X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 08:46:59 -0000 Synopsis: aspell port has an undesirable conflict with ispell State-Changed-From-To: open->closed State-Changed-By: sunpoet State-Changed-When: Fri Sep 28 08:46:05 UTC 2012 State-Changed-Why: Fixed in r304984. Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Fri Sep 28 08:46:05 UTC 2012 Responsible-Changed-Why: Fixed in r304984. http://www.freebsd.org/cgi/query-pr.cgi?pr=172131 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 09:20:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E8C9106564A for ; Fri, 28 Sep 2012 09:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 348908FC17 for ; Fri, 28 Sep 2012 09:20:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S9K5Dn037982 for ; Fri, 28 Sep 2012 09:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S9K5S6037981; Fri, 28 Sep 2012 09:20:05 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 09:20:05 GMT Resent-Message-Id: <201209280920.q8S9K5S6037981@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, András JÁKÓ Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E209D106566B for ; Fri, 28 Sep 2012 09:12:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CC2548FC0A for ; Fri, 28 Sep 2012 09:12:41 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S9CfN4039820 for ; Fri, 28 Sep 2012 09:12:41 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8S9Cfhs039819; Fri, 28 Sep 2012 09:12:41 GMT (envelope-from nobody) Message-Id: <201209280912.q8S9Cfhs039819@red.freebsd.org> Date: Fri, 28 Sep 2012 09:12:41 GMT From: András JÁKÓ To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172135: upgrade www/py-pyramid to 1.3.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 09:20:05 -0000 >Number: 172135 >Category: ports >Synopsis: upgrade www/py-pyramid to 1.3.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 09:20:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: András JÁKÓ >Release: 9.0-RELEASE-p3 >Organization: Budapest University of Technology and Economics >Environment: FreeBSD test.net.bme.hu 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #2: Thu Jun 14 10:54:57 CEST 2012 root@reggae.eik.bme.hu:/usr/obj/usr/src/sys/REGGAE amd64 >Description: Upgrade www/py-pyramid to the latest stable version. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 304986) +++ Makefile (working copy) @@ -6,8 +6,7 @@ # PORTNAME= pyramid -PORTVERSION= 1.2 -PORTREVISION= 1 +PORTVERSION= 1.3.4 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,28 +15,20 @@ COMMENT= A small, fast, web development framework by the Pylons community BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Chameleon>=1.2.3:${PORTSDIR}/textproc/py-Chameleon \ - ${PYTHON_PKGNAMEPREFIX}Paste>=1.7.2:${PORTSDIR}/www/py-paste \ - ${PYTHON_PKGNAMEPREFIX}PasteDeploy>=1.3.3:${PORTSDIR}/www/py-pastedeploy \ - ${PYTHON_PKGNAMEPREFIX}PasteScript>=1.7.4:${PORTSDIR}/www/py-pastescript \ + ${PYTHON_PKGNAMEPREFIX}PasteDeploy>=1.5.0:${PORTSDIR}/www/py-pastedeploy \ ${PYTHON_PKGNAMEPREFIX}mako>=0.3.6:${PORTSDIR}/textproc/py-mako \ - ${PYTHON_PKGNAMEPREFIX}repoze.lru>=0:${PORTSDIR}/devel/py-repoze.lru \ - ${PYTHON_PKGNAMEPREFIX}translationstring>=0:${PORTSDIR}/textproc/py-translationstring \ - ${PYTHON_PKGNAMEPREFIX}venusian>=1.0a1:${PORTSDIR}/devel/py-venusian \ - ${PYTHON_PKGNAMEPREFIX}webob>=1.0.2:${PORTSDIR}/www/py-webob \ - ${PYTHON_PKGNAMEPREFIX}zope.component>=3.6.0:${PORTSDIR}/devel/py-zope.component \ - ${PYTHON_PKGNAMEPREFIX}zope.deprecation>=0:${PORTSDIR}/devel/py-zope.deprecation \ - ${PYTHON_PKGNAMEPREFIX}zope.interface>=3.5.1:${PORTSDIR}/devel/py-zope.interface + ${PYTHON_PKGNAMEPREFIX}repoze.lru>=0.4:${PORTSDIR}/devel/py-repoze.lru \ + ${PYTHON_PKGNAMEPREFIX}translationstring>=0.4:${PORTSDIR}/textproc/py-translationstring \ + ${PYTHON_PKGNAMEPREFIX}venusian>=1.0a6:${PORTSDIR}/devel/py-venusian \ + ${PYTHON_PKGNAMEPREFIX}webob>=1.2.1:${PORTSDIR}/www/py-webob \ + ${PYTHON_PKGNAMEPREFIX}zope.deprecation>=3.5.0:${PORTSDIR}/devel/py-zope.deprecation \ + ${PYTHON_PKGNAMEPREFIX}zope.interface>=3.8.0:${PORTSDIR}/devel/py-zope.interface RUN_DEPENDS:= ${BUILD_DEPENDS} -#TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}WebTest>=1.1:${PORTSDIR}/www/py-WebTest +#TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}WebTest>=1.3.1:${PORTSDIR}/www/py-WebTest \ +# ${PYTHON_PKGNAMEPREFIX}zope.component>=3.6.0:${PORTSDIR}/devel/py-zope.component -USE_PYTHON= 2.5+ +USE_PYTHON= 2.6+ USE_PYDISTUTILS= easy_install -.include - -.if ${PYTHON_REL} < 260 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}simplejson>=2.0.8:${PORTSDIR}/devel/py-simplejson -.endif - -.include +.include Index: distinfo =================================================================== --- distinfo (revision 304986) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (pyramid-1.2.tar.gz) = eee1ccb4bdf0729b4d504f1be62d5ee72f8b147892bc5e9e77c3ac900cfbd9fc -SIZE (pyramid-1.2.tar.gz) = 2149412 +SHA256 (pyramid-1.3.4.tar.gz) = dc9213ea5621279b20f75b7fa7ac04e1c8a1295aa6a885257d3770595a6d72ba +SIZE (pyramid-1.3.4.tar.gz) = 2380469 Index: pkg-plist =================================================================== --- pkg-plist (revision 304986) +++ pkg-plist (working copy) @@ -132,10 +132,18 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/__init__.py_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/__init__.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/models.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/models.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/models.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/scripts/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/scripts/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/scripts/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/scripts/initializedb.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/scripts/initializedb.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/scripts/initializedb.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/static/favicon.ico %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/static/footerbg.png %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/static/headerbg.png @@ -145,8 +153,7 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/static/pyramid-small.png %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/static/pyramid.png %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/static/transparent.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/templates/model.pt_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/templates/root.pt_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/templates/mytemplate.pt_tmpl %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/tests.py_tmpl %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/views.py_tmpl %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/CHANGES.txt_tmpl @@ -156,33 +163,12 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/production.ini_tmpl %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/setup.cfg_tmpl %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/setup.py_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/__init__.py_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/models.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/models.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/models.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/static/favicon.ico -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/static/footerbg.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/static/headerbg.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/static/ie6.css -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/static/middlebg.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/static/pylons.css -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/static/pyramid-small.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/static/pyramid.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/static/transparent.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/templates/mytemplate.pt_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/tests.py_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/views.py_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/CHANGES.txt_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/MANIFEST.in_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/README.txt_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/development.ini_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/production.ini_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/setup.cfg_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/setup.py_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/+package+/__init__.py_tmpl -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/+package+/resources.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/+package+/resources.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/+package+/resources.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/copydir.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/copydir.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/copydir.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/+package+/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/+package+/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/+package+/__init__.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/+package+/static/favicon.ico %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/+package+/static/footerbg.png %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/+package+/static/headerbg.png @@ -202,10 +188,15 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/production.ini_tmpl %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/setup.cfg_tmpl %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/setup.py_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/template.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/template.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/template.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/tests.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/tests.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/tests.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/__init__.py_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/__init__.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/models.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/models.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/models.pyo @@ -218,7 +209,7 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/static/pyramid-small.png %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/static/pyramid.png %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/static/transparent.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/templates/mytemplate.pt_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/templates/mytemplate.pt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/tests.py_tmpl %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/views.py_tmpl %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/CHANGES.txt_tmpl @@ -231,6 +222,33 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripting.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripting.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripting.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/common.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/common.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/common.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/pcreate.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/pcreate.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/pcreate.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/prequest.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/prequest.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/prequest.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/proutes.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/proutes.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/proutes.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/pserve.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/pserve.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/pserve.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/pshell.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/pshell.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/pshell.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/ptweens.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/ptweens.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/ptweens.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/pviews.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/pviews.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts/pviews.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/security.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/security.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/security.pyo @@ -260,6 +278,7 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/fixtures/nonminimal.txt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/fixtures/pp.pt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/fixtures/static/.hiddenfile +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/fixtures/static/arcs.svg.tgz %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/fixtures/static/héhé.html %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/fixtures/static/héhé/index.html %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/fixtures/static/index.html @@ -305,6 +324,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/forbiddenapp/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/forbiddenapp/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/forbiddenapp/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/forbiddenview/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/forbiddenview/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/forbiddenview/__init__.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/hybridapp/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/hybridapp/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/hybridapp/__init__.pyo @@ -346,6 +368,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/localeapp/locale3/de/LC_MESSAGES/deformsite.po %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/localeapp/locale3/en/LC_MESSAGES/deformsite.mo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/localeapp/locale3/en/LC_MESSAGES/deformsite.po +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/notfoundview/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/notfoundview/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/notfoundview/__init__.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/permbugapp/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/permbugapp/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/permbugapp/__init__.pyo @@ -551,12 +576,76 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_router.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_router.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_router.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/.badfile +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/__init__.py_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/resources.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/resources.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/resources.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/static/favicon.ico +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/static/footerbg.png +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/static/headerbg.png +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/static/ie6.css +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/static/middlebg.png +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/static/pylons.css +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/static/pyramid-small.png +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/static/pyramid.png +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/static/transparent.gif +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/templates/mytemplate.pt_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/test_no_content.py_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/tests.py_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/views.py_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/CHANGES.txt_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/MANIFEST.in_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/README.txt_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/development.ini_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/production.ini_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/setup.cfg_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/setup.py_tmpl +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/test_copydir.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/test_copydir.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/test_copydir.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/test_init.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/test_init.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/test_init.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/test_template.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/test_template.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/test_template.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripting.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripting.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripting.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/dummy.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/dummy.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/dummy.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_common.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_common.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_common.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_pcreate.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_pcreate.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_pcreate.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_prequest.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_prequest.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_prequest.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_proutes.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_proutes.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_proutes.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_pserve.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_pserve.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_pserve.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_pshell.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_pshell.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_pshell.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_ptweens.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_ptweens.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_ptweens.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_pviews.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_pviews.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts/test_pviews.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_security.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_security.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_security.pyo @@ -617,6 +706,12 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/wsgi.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/wsgi.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/wsgi.pyo +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scripts +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/templates +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+/static +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold/+package+ +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds/fixture_scaffold +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_scaffolds @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_config/pkgs/selfscan @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_config/pkgs/scannable/subpackage/subsubpackage @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/test_config/pkgs/scannable/subpackage @@ -645,6 +740,7 @@ @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/rendererscanapp/two @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/rendererscanapp @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/permbugapp +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/notfoundview @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/localeapp/locale3/en/LC_MESSAGES @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/localeapp/locale3/en @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/localeapp/locale3/de/LC_MESSAGES @@ -668,6 +764,7 @@ @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/localeapp @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/includeapp1 @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/hybridapp +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/forbiddenview @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/forbiddenapp @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/fixtureapp/templates @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/fixtureapp/subpackage/templates @@ -683,6 +780,7 @@ @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/fixtures/static @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/fixtures @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scripts @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/templates @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+/static @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/zodb/+package+ @@ -691,12 +789,9 @@ @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/+package+/static @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter/+package+ @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/starter -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/templates -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+/static -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy/+package+ -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/routesalchemy @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/templates @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/static +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+/scripts @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy/+package+ @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds/alchemy @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/scaffolds >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 09:20:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CAE73106566C; Fri, 28 Sep 2012 09:20:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9E3AD8FC15; Fri, 28 Sep 2012 09:20:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S9KH1Y039906; Fri, 28 Sep 2012 09:20:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S9KHSV039893; Fri, 28 Sep 2012 09:20:17 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 09:20:17 GMT Message-Id: <201209280920.q8S9KHSV039893@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172135: upgrade www/py-pyramid to 1.3.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 09:20:17 -0000 Synopsis: upgrade www/py-pyramid to 1.3.4 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 28 09:20:16 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172135 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 09:50:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6ABEF106564A for ; Fri, 28 Sep 2012 09:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 434558FC16 for ; Fri, 28 Sep 2012 09:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S9o7LU065545 for ; Fri, 28 Sep 2012 09:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8S9o7G5065544; Fri, 28 Sep 2012 09:50:07 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 09:50:07 GMT Resent-Message-Id: <201209280950.q8S9o7G5065544@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Naylor Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C385F106564A for ; Fri, 28 Sep 2012 09:43:42 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id ADEB38FC12 for ; Fri, 28 Sep 2012 09:43:42 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8S9hg47089727 for ; Fri, 28 Sep 2012 09:43:42 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8S9hgSb089726; Fri, 28 Sep 2012 09:43:42 GMT (envelope-from nobody) Message-Id: <201209280943.q8S9hgSb089726@red.freebsd.org> Date: Fri, 28 Sep 2012 09:43:42 GMT From: David Naylor To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172136: [patch] update math/R-cran-car from 2.0-12 to 2.0-14 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 09:50:07 -0000 >Number: 172136 >Category: ports >Synopsis: [patch] update math/R-cran-car from 2.0-12 to 2.0-14 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 09:50:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: David Naylor >Release: >Organization: >Environment: >Description: Changes to Version 2.0-14 o Smoothers now given as arguments to scatterplot(), scatterplotMatrix(), residualPlots() and other functions; gamLine(), loessLine() (default), and quantregLine() smoothers provided. o linearHypothesis.mer() and Anova.mer() now consistent with pbkrtest version 0.3-2. o Small changes and fixes. Changes to Version 2.0-13 o Added point marking (id.n, etc.) to dataEllipse o Changed the default for id.method with the invTranPlot to "x". o The ncvTest has been rewritten for stability, and unneeded 'data', 'subset' and 'na.action' argument have been removed o Added new function 'Boot' that is a simple front-end to boot::boot that will be useful when bootstrapping regression models. Implemented for lm and glm, but this is likely to work for many other S3 regression models with and 'update' method, 'subset' argument. o Fixed bug in 'compareCoefs' with non-full rank models o Modified 'bootCase' to return a matrix of class c("bootCase", "matrix") so generic functions can be written to summarize these objects. o Minor changes to the returned value of showLabels to give both the label and the corresponding row number. showLabels documentation tweaked. o Improved handling of center.pch argument to ellipse() (suggestion of Rob Kushler). o New test argument for linearHypothesis.mer() and test.statistic argument for Anova.mer() for F-tests with Kenward/Roger df, provided by pbkrtest package. o Anova.mlm() now will do univariate repeated-measures ANOVA even if the error SSP matrix is singular. o hccm() will now accept a weighted linear models (suggestion of Stefan Holst Bache). o deltaMethod.default() now applies coef() and vcov() to a model for which these are supported (generalizing a suggestion by Scott Kostyshak). o Fixed handling of labels argument in scatterplot.formula() and scatterplotMatrix.formula(). o Fixed qqPlot.default() so that it honors line="none" (bug reported by Rob Kushler). o Added new default method for confidenceEllipse(), which now can construct confidence ellipses for linear functions of coefficients. o globalVariables() called for R 2.15.1 or later. o Fixed bug in logit() when percents=TRUE and largest percent is 1 (reported by Eric Goodwin). o Added radius argument to scatter3d() (suggestion of Antonino Messina). o Fixed spurious errors message in scatter3d() when groups present but surface=FALSE (reported by David L. Carlson). >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ur /usr/ports/math/R-cran-car/Makefile R-cran-car/Makefile --- /usr/ports/math/R-cran-car/Makefile 2012-06-27 03:21:31.000000000 +0200 +++ R-cran-car/Makefile 2012-09-28 10:14:40.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= car -DISTVERSION= 2.0-12 +DISTVERSION= 2.0-14 PORTREVISION= 2 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} diff -ur /usr/ports/math/R-cran-car/distinfo R-cran-car/distinfo --- /usr/ports/math/R-cran-car/distinfo 2012-03-28 03:17:00.000000000 +0200 +++ R-cran-car/distinfo 2012-09-28 10:18:13.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (car_2.0-12.tar.gz) = b8f1f1dda6a66d6882dff06cece1b71089c922684b3103d89cd3ae44b0c595a5 -SIZE (car_2.0-12.tar.gz) = 319291 +SHA256 (car_2.0-14.tar.gz) = cfddd7a6cc211281b01667ca491d0fafc95936bdb49b466e721cb777b3747319 +SIZE (car_2.0-14.tar.gz) = 330019 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 10:10:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 802881065670 for ; Fri, 28 Sep 2012 10:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4021B8FC16 for ; Fri, 28 Sep 2012 10:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SAA6hQ082552 for ; Fri, 28 Sep 2012 10:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SAA6dO082551; Fri, 28 Sep 2012 10:10:06 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 10:10:06 GMT Resent-Message-Id: <201209281010.q8SAA6dO082551@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mikolaj Golub Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB784106566C for ; Fri, 28 Sep 2012 10:04:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B6DB38FC0A for ; Fri, 28 Sep 2012 10:04:55 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SA4ttD023082 for ; Fri, 28 Sep 2012 10:04:55 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8SA4t3f023081; Fri, 28 Sep 2012 10:04:55 GMT (envelope-from nobody) Message-Id: <201209281004.q8SA4t3f023081@red.freebsd.org> Date: Fri, 28 Sep 2012 10:04:55 GMT From: Mikolaj Golub To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172138: sysutils/devstat: update to 0.3.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 10:10:06 -0000 >Number: 172138 >Category: ports >Synopsis: sysutils/devstat: update to 0.3.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 10:10:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Mikolaj Golub >Release: >Organization: >Environment: >Description: Update to 0.3.3: * output times in more convenient (decimal) format * cleanup Update MAINTAINER address. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: sysutils/devstat/distinfo =================================================================== --- sysutils/devstat/distinfo (revision 304986) +++ sysutils/devstat/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (devstat-0.3.2.tar.gz) = f45bcd65203fa1c5b9ed727f5d0e485fc7c30b71cd6c4f15685debeaa550d41c -SIZE (devstat-0.3.2.tar.gz) = 5705 +SHA256 (devstat-0.3.3.tar.gz) = ebd211888c428e6fbd5029b4be882422b0021baf464da1aa4a8d67ecc782eca8 +SIZE (devstat-0.3.3.tar.gz) = 5599 Index: sysutils/devstat/Makefile =================================================================== --- sysutils/devstat/Makefile (revision 304986) +++ sysutils/devstat/Makefile (working copy) @@ -6,11 +6,11 @@ # PORTNAME= devstat -PORTVERSION= 0.3.2 +PORTVERSION= 0.3.3 CATEGORIES= sysutils MASTER_SITES= GOOGLE_CODE -MAINTAINER= to.my.trociny@gmail.com +MAINTAINER= trociny@FreeBSD.org COMMENT= Utility to display device statistics PLIST_FILES= bin/devstat >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 10:40:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82550106564A for ; Fri, 28 Sep 2012 10:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4ED4C8FC0C for ; Fri, 28 Sep 2012 10:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SAe2fO010838 for ; Fri, 28 Sep 2012 10:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SAe23u010837; Fri, 28 Sep 2012 10:40:02 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 10:40:02 GMT Resent-Message-Id: <201209281040.q8SAe23u010837@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, freebsd@nagilum.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A02D106564A for ; Fri, 28 Sep 2012 10:37:38 +0000 (UTC) (envelope-from root@cakebox.homeunix.net) Received: from mo6-p05-ob.rzone.de (mo6-p05-ob.rzone.de [IPv6:2a01:238:20a:202:5305::1]) by mx1.freebsd.org (Postfix) with ESMTP id DB2F38FC14 for ; Fri, 28 Sep 2012 10:37:36 +0000 (UTC) Received: from cakebox.homeunix.net (164-010-186-093.dialin.vsenet.de [93.186.10.164]) by smtp.strato.de (josoe mo23) (RZmta 30.19 DYNA|AUTH) with (DHE-RSA-AES256-SHA encrypted) ESMTPA id I06f29o8S9qIJM ; Fri, 28 Sep 2012 12:37:32 +0200 (CEST) Received: from cakebox.homeunix.net (localhost [127.0.0.1]) by cakebox.homeunix.net (Postfix) with ESMTP id 683026795D; Fri, 28 Sep 2012 12:37:31 +0200 (CEST) Received: by cakebox.homeunix.net (Postfix, from userid 0) id 51FB16795B; Fri, 28 Sep 2012 12:37:31 +0200 (CEST) Message-Id: <20120928103731.51FB16795B@cakebox.homeunix.net> Date: Fri, 28 Sep 2012 12:37:31 +0200 (CEST) From: freebsd@nagilum.org To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: adrian@FreeBSD.org Subject: ports/172139: www/squid31 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@nagilum.org List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 10:40:02 -0000 >Number: 172139 >Category: ports >Synopsis: www/squid31 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 10:40:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Charlie & >Release: FreeBSD 10.0-CURRENT i386 >Organization: >Environment: System: FreeBSD cakebox.tis 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r240553M: Tue Sep 18 00:11:57 CEST 2012 root@cakebox.tis:/usr/obj/export/src/sys/net5501 i386 >Description: squid 3.1.21 fails to build due to include issues: configure:21386: result: no configure:21386: checking for netinet/ip_icmp.h configure:21386: c++ -c -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -I/usr/local/include conftest.cpp >&5 In file included from conftest.cpp:208: /usr/include/netinet/ip_compat.h:989:27: error: machine/spl.h: Datei oder Verzeichnis nicht gefunden configure:21386: $? = 1 I'm not sure if this is really squid's fault. The reason for this is in ip_compat.h: 988 # if __FreeBSD_version < 300000 989 # include 990 # else IMHO /usr/include/netinet/ip_compat.h shouldn't use __FreeBSD_version without ensuring is included. I tried adding: #ifndef __FreeBSD_version # include #endif to /usr/include/netinet/ip_compat.h but that only resulted in a different error during configure: In file included from /usr/include/netinet/ip_compat.h:933, from conftest.cpp:208: /usr/include/net/if_var.h:130: error: 'IFNAMSIZ' was not declared in this scope /usr/include/net/if_var.h:156: error: field 'if_data' has incomplete type /usr/include/net/if_var.h:741: error: field 'if_data' has incomplete type I didn't want to go further down that rabbit hole. >How-To-Repeat: build /export/ports/www/squid31 version 3.1.21 on 10.0-CURRENT >Fix: Manually set HAVE_NETINET_IP_ICMP_H in include/autoconf.h.in after configure stage. --- include/autoconf.h.orig 2012-09-28 11:39:30.000000000 +0200 +++ include/autoconf.h 2012-09-28 11:42:17.000000000 +0200 @@ -504,7 +504,7 @@ #define HAVE_NETINET_IP_H 1 /* Define to 1 if you have the header file. */ -/* #undef HAVE_NETINET_IP_ICMP_H */ +#define HAVE_NETINET_IP_ICMP_H 1 /* Define to 1 if you have the header file. */ /* #undef HAVE_NETINET_IP_NAT_H */ --- build.log begins here --- Script started on Fri Sep 28 10:23:53 2012 [root@cakebox ~]# idprio 31 portupgrade squid-3.1.20 ---> Upgrading 'squid-3.1.20' to 'squid-3.1.21' (www/squid31) ---> Building '/usr/ports/www/squid31' ===> Cleaning for squid-3.1.21 ===> Found saved configuration for squid-3.1.20 ===> Extracting for squid-3.1.21 => SHA256 Checksum OK for squid3.1/squid-3.1.21.tar.bz2. ===> squid-3.1.21 depends on file: /usr/local/bin/perl5.14.2 - found ===> Patching for squid-3.1.21 ===> squid-3.1.21 depends on file: /usr/local/bin/perl5.14.2 - found ===> Applying distribution patches for squid-3.1.21 ===> Applying FreeBSD patches for squid-3.1.21 ===> squid-3.1.21 depends on file: /usr/local/lib/libcrypto.so.8 - found ===> squid-3.1.21 depends on file: /usr/local/bin/perl5.14.2 - found ===> Configuring for squid-3.1.21 ===> FreeBSD 10 autotools fix applied to /var/tmp/export/ports/www/squid31/work/squid-3.1.21/acinclude.m4 ===> FreeBSD 10 autotools fix applied to /var/tmp/export/ports/www/squid31/work/squid-3.1.21/aclocal.m4 ===> FreeBSD 10 autotools fix applied to /var/tmp/export/ports/www/squid31/work/squid-3.1.21/configure ===> FreeBSD 10 autotools fix applied to /var/tmp/export/ports/www/squid31/work/squid-3.1.21/lib/libTrie/acinclude.m4 ===> FreeBSD 10 autotools fix applied to /var/tmp/export/ports/www/squid31/work/squid-3.1.21/lib/libTrie/aclocal.m4 ===> FreeBSD 10 autotools fix applied to /var/tmp/export/ports/www/squid31/work/squid-3.1.21/lib/libTrie/configure ===> FreeBSD 10 autotools fix applied to /var/tmp/export/ports/www/squid31/work/squid-3.1.21/libltdl/m4/libtool.m4 ===> FreeBSD 10 autotools fix applied to /var/tmp/export/ports/www/squid31/work/squid-3.1.21/libltdl/aclocal.m4 ===> FreeBSD 10 autotools fix applied to /var/tmp/export/ports/www/squid31/work/squid-3.1.21/libltdl/configure ===> FreeBSD 10 autotools fix applied to /var/tmp/export/ports/www/squid31/work/squid-3.1.21/helpers/negotiate_auth/squid_kerb_auth/aclocal.m4 ===> FreeBSD 10 autotools fix applied to /var/tmp/export/ports/www/squid31/work/squid-3.1.21/helpers/negotiate_auth/squid_kerb_auth/configure checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking how to create a ustar tar archive... gnutar checking whether to enable maintainer-specific portions of Makefiles... no checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of cc... gcc3 checking whether cc understands -c and -o together... yes checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking dependency style of c++... gcc3 checking build system type... i386-portbld-freebsd10.0 checking host system type... i386-portbld-freebsd10.0 checking simplified host os... freebsd (version 10.0) checking whether to use loadable modules... no, explicitly checking how to print strings... printf checking for a sed that does not truncate output... /usr/local/bin/gsed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for ar... ar checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking how to run the C preprocessor... cpp checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd10.0 ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... no checking for shl_load in -ldld... no checking for dlopen... yes checking whether a program can dlopen itself... yes checking whether a statically linked program can dlopen itself... no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... no checking whether to build static libraries... yes checking how to run the C++ preprocessor... c++ -E checking for ld used by c++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking for c++ option to produce PIC... -fPIC -DPIC checking if c++ PIC flag -fPIC -DPIC works... yes checking if c++ static flag -static works... yes checking if c++ supports -c -o file.o... yes checking if c++ supports -c -o file.o... (cached) yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd10.0 ld.so checking how to hardcode library paths into programs... immediate checking which extension is used for runtime loadable modules... .so checking which variable specifies run-time module search path... LD_LIBRARY_PATH checking for the default library search path... /lib /usr/lib checking for library containing dlopen... none required checking for dlerror... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dld_link in -ldld... no checking for _ prefix in compiled symbols... no checking whether deplibs are loaded by dlopen... yes checking for argz.h... no checking for error_t... no checking for argz_add... no checking for argz_append... no checking for argz_count... no checking for argz_create_sep... no checking for argz_insert... no checking for argz_next... no checking for argz_stringify... no checking whether libtool supports -dlopen/-dlpreopen... yes checking for ltdl.h... yes checking whether lt_dlinterface_register is declared... yes checking for lt_dladvise_preload in -lltdl... yes checking where to find libltdl headers... checking where to find libltdl library... -lltdl checking for unistd.h... (cached) yes checking for dl.h... no checking for sys/dl.h... no checking for dld.h... no checking for mach-o/dyld.h... no checking for dirent.h... yes checking for closedir... yes checking for opendir... yes checking for readdir... yes checking for strlcat... yes checking for strlcpy... yes checking for library containing dlopen... (cached) none required checking for dlerror... (cached) yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dld_link in -ldld... (cached) no checking for ranlib... (cached) ranlib checking whether compiler accepts -fhuge-objects... no checking aio.h usability... yes checking aio.h presence... yes checking for aio.h... yes checking for aio_read in -lrt... yes configure: Native POSIX AIO support detected. configure: Enabling AIO DiskIO module configure: Enabling Blocking DiskIO module configure: Enabling DiskDaemon DiskIO module checking for main in -lpthread... yes configure: Enabling DiskThreads DiskIO module configure: IO Modules built: AIO Blocking DiskDaemon DiskThreads configure: Store modules built: ufs diskd aufs configure: Removal policies built: lru heap configure: ICMP enabled checking whether to support eCAP... no, explicitly configure: Web Cache Coordination Protocol disabled configure: SNMP monitoring disabled configure: SSL gatewaying using OpenSSL enabled configure: Using OpenSSL MD5 implementation configure: Cache Disgests enabled configure: WARNING: Forcing kqueue() to be enabled checking sys/event.h usability... yes checking sys/event.h presence... yes checking for sys/event.h... yes configure: WARNING: Forcing epoll() to be disabled checking for ioctl... yes checking for write... yes checking sys/devpoll.h usability... no checking sys/devpoll.h presence... no checking for sys/devpoll.h... no checking if /dev/poll works... no configure: PF Transparent Proxy enabled configure: Auth scheme modules built: basic digest negotiate ntlm configure: Basic auth helpers built: DB NCSA PAM MSNT SMB squid_radius_auth configure: NTLM auth helpers built: smb_lm configure: Digest auth helpers built: password configure: External acl helpers built: ip_user session unix_group wbinfo_group configure: unlinkd enabled checking for cppunit-config... false configure: WARNING: cppunit does not appear to be installed. squid does not require this, but code testing with 'make check' will fail. checking how to run the C preprocessor... cpp checking whether ln -s works... yes checking for sh... /bin/sh checking for false... /usr/bin/false checking for true... /usr/bin/true checking for mv... /bin/mv checking for mkdir... /bin/mkdir checking for ln... /bin/ln checking for chmod... /bin/chmod checking for rm... /bin/rm checking for egrep... (cached) /usr/bin/grep -E checking for perl... /usr/bin/perl checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for ANSI C header files... (cached) yes checking arpa/inet.h usability... yes checking arpa/inet.h presence... yes checking for arpa/inet.h... yes checking arpa/nameser.h usability... yes checking arpa/nameser.h presence... yes checking for arpa/nameser.h... yes checking assert.h usability... yes checking assert.h presence... yes checking for assert.h... yes checking bstring.h usability... no checking bstring.h presence... no checking for bstring.h... no checking cassert usability... yes checking cassert presence... yes checking for cassert... yes checking crypt.h usability... no checking crypt.h presence... no checking for crypt.h... no checking cstdarg usability... yes checking cstdarg presence... yes checking for cstdarg... yes checking cstring usability... yes checking cstring presence... yes checking for cstring... yes checking ctype.h usability... yes checking ctype.h presence... yes checking for ctype.h... yes checking errno.h usability... yes checking errno.h presence... yes checking for errno.h... yes checking execinfo.h usability... yes checking execinfo.h presence... yes checking for execinfo.h... yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking fnmatch.h usability... yes checking fnmatch.h presence... yes checking for fnmatch.h... yes checking fstream usability... yes checking fstream presence... yes checking for fstream... yes checking getopt.h usability... yes checking getopt.h presence... yes checking for getopt.h... yes checking glob.h usability... yes checking glob.h presence... yes checking for glob.h... yes checking gnumalloc.h usability... no checking gnumalloc.h presence... no checking for gnumalloc.h... no checking grp.h usability... yes checking grp.h presence... yes checking for grp.h... yes checking iosfwd usability... yes checking iosfwd presence... yes checking for iosfwd... yes checking iomanip usability... yes checking iomanip presence... yes checking for iomanip... yes checking iostream usability... yes checking iostream presence... yes checking for iostream... yes checking ip_compat.h usability... no checking ip_compat.h presence... no checking for ip_compat.h... no checking ip_fil_compat.h usability... no checking ip_fil_compat.h presence... no checking for ip_fil_compat.h... no checking ip_fil.h usability... no checking ip_fil.h presence... no checking for ip_fil.h... no checking ip_nat.h usability... no checking ip_nat.h presence... no checking for ip_nat.h... no checking ipl.h usability... no checking ipl.h presence... no checking for ipl.h... no checking libc.h usability... no checking libc.h presence... no checking for libc.h... no checking libgen.h usability... yes checking libgen.h presence... yes checking for libgen.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking limits usability... yes checking limits presence... yes checking for limits... yes checking linux/posix_types.h usability... no checking linux/posix_types.h presence... no checking for linux/posix_types.h... no checking linux/types.h usability... no checking linux/types.h presence... no checking for linux/types.h... no checking list usability... yes checking list presence... yes checking for list... yes checking machine/byte_swap.h usability... no checking machine/byte_swap.h presence... no checking for machine/byte_swap.h... no checking malloc.h usability... no checking malloc.h presence... no checking for malloc.h... no checking map usability... yes checking map presence... yes checking for map... yes checking math.h usability... yes checking math.h presence... yes checking for math.h... yes checking for memory.h... (cached) yes checking memory usability... yes checking memory presence... yes checking for memory... yes checking mount.h usability... no checking mount.h presence... no checking for mount.h... no checking netdb.h usability... yes checking netdb.h presence... yes checking for netdb.h... yes checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... yes checking netinet/in_systm.h usability... yes checking netinet/in_systm.h presence... yes checking for netinet/in_systm.h... yes checking netinet/ip_fil_compat.h usability... no checking netinet/ip_fil_compat.h presence... no checking for netinet/ip_fil_compat.h... no checking openssl/err.h usability... yes checking openssl/err.h presence... yes checking for openssl/err.h... yes checking openssl/md5.h usability... yes checking openssl/md5.h presence... yes checking for openssl/md5.h... yes checking openssl/opensslv.h usability... yes checking openssl/opensslv.h presence... yes checking for openssl/opensslv.h... yes checking openssl/ssl.h usability... yes checking openssl/ssl.h presence... yes checking for openssl/ssl.h... yes checking openssl/txt_db.h usability... yes checking openssl/txt_db.h presence... yes checking for openssl/txt_db.h... yes checking openssl/x509v3.h usability... yes checking openssl/x509v3.h presence... yes checking for openssl/x509v3.h... yes checking netinet/tcp.h usability... yes checking netinet/tcp.h presence... yes checking for netinet/tcp.h... yes checking openssl/engine.h usability... yes checking openssl/engine.h presence... yes checking for openssl/engine.h... yes checking ostream usability... yes checking ostream presence... yes checking for ostream... yes checking paths.h usability... yes checking paths.h presence... yes checking for paths.h... yes checking poll.h usability... yes checking poll.h presence... yes checking for poll.h... yes checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking shadow.h usability... no checking shadow.h presence... no checking for shadow.h... no checking regex.h usability... yes checking regex.h presence... yes checking for regex.h... yes checking sched.h usability... yes checking sched.h presence... yes checking for sched.h... yes checking security/pam_appl.h usability... yes checking security/pam_appl.h presence... yes checking for security/pam_appl.h... yes checking signal.h usability... yes checking signal.h presence... yes checking for signal.h... yes checking sstream usability... yes checking sstream presence... yes checking for sstream... yes checking stdarg.h usability... yes checking stdarg.h presence... yes checking for stdarg.h... yes checking stddef.h usability... yes checking stddef.h presence... yes checking for stddef.h... yes checking stdexcept usability... yes checking stdexcept presence... yes checking for stdexcept... yes checking stdio.h usability... yes checking stdio.h presence... yes checking for stdio.h... yes checking for stdlib.h... (cached) yes checking string usability... yes checking string presence... yes checking for string... yes checking for string.h... (cached) yes checking for strings.h... (cached) yes checking sys/bitypes.h usability... no checking sys/bitypes.h presence... no checking for sys/bitypes.h... no checking sys/bswap.h usability... no checking sys/bswap.h presence... no checking for sys/bswap.h... no checking sys/endian.h usability... yes checking sys/endian.h presence... yes checking for sys/endian.h... yes checking sys/file.h usability... yes checking sys/file.h presence... yes checking for sys/file.h... yes checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking sys/prctl.h usability... no checking sys/prctl.h presence... no checking for sys/prctl.h... no checking sys/md5.h usability... yes checking sys/md5.h presence... yes checking for sys/md5.h... yes checking sys/msg.h usability... yes checking sys/msg.h presence... yes checking for sys/msg.h... yes checking sys/resource.h usability... yes checking sys/resource.h presence... yes checking for sys/resource.h... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking for sys/stat.h... (cached) yes checking sys/statvfs.h usability... yes checking sys/statvfs.h presence... yes checking for sys/statvfs.h... yes checking syscall.h usability... no checking syscall.h presence... no checking for syscall.h... no checking sys/syscall.h usability... yes checking sys/syscall.h presence... yes checking for sys/syscall.h... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking for sys/types.h... (cached) yes checking sys/un.h usability... yes checking sys/un.h presence... yes checking for sys/un.h... yes checking sys/vfs.h usability... no checking sys/vfs.h presence... no checking for sys/vfs.h... no checking sys/wait.h usability... yes checking sys/wait.h presence... yes checking for sys/wait.h... yes checking syslog.h usability... yes checking syslog.h presence... yes checking for syslog.h... yes checking time.h usability... yes checking time.h presence... yes checking for time.h... yes checking for unistd.h... (cached) yes checking utime.h usability... yes checking utime.h presence... yes checking for utime.h... yes checking varargs.h usability... no checking varargs.h presence... no checking for varargs.h... no checking byteswap.h usability... no checking byteswap.h presence... no checking for byteswap.h... no checking glib.h usability... no checking glib.h presence... no checking for glib.h... no checking for stdint.h... (cached) yes checking for inttypes.h... (cached) yes checking for grp.h... (cached) yes checking db.h usability... yes checking db.h presence... yes checking for db.h... yes checking db_185.h usability... no checking db_185.h presence... no checking for db_185.h... no checking for linux/netfilter_ipv4.h... no checking for linux/netfilter_ipv4/ip_tproxy.h... no checking for net/if.h... yes checking for netinet/if_ether.h... yes checking for netinet/icmp6.h... yes checking for netinet/in.h... (cached) yes checking for netinet/ip.h... yes checking for netinet/ip6.h... yes checking for netinet/ip_compat.h... yes checking for netinet/ip_fil_compat.h... (cached) no checking for netinet/ip_fil.h... no checking for netinet/ip_icmp.h... no checking for netinet/ipl.h... no checking for netinet/ip_nat.h... no checking for net/pf/pfvar.h... no checking for net/pfvar.h... no checking for sys/mount.h... no checking for resolv.h... no checking for an ANSI C-conforming const... yes checking whether byte ordering is bigendian... no checking whether struct tm is in sys/time.h or time.h... time.h checking for struct tm.tm_gmtoff... yes checking for struct mallinfo... no checking for struct mallinfo.mxfast... no checking for struct rusage... yes checking for struct iphdr.ip_hl... yes checking size of void *... 4 checking for int8_t... yes checking size of int8_t... 1 checking for char... yes checking size of char... 1 checking for u_int8_t... yes checking size of u_int8_t... 1 checking for uint8_t... yes checking size of uint8_t... 1 checking for int16_t... yes checking size of int16_t... 2 checking for short... yes checking size of short... 2 checking for int... yes checking size of int... 4 checking for u_int16_t... yes checking size of u_int16_t... 2 checking for uint16_t... yes checking size of uint16_t... 2 checking for int32_t... yes checking size of int32_t... 4 checking for long... yes checking size of long... 4 checking for u_int32_t... yes checking size of u_int32_t... 4 checking for uint32_t... yes checking size of uint32_t... 4 checking for int64_t... yes checking size of int64_t... 8 checking for __int64... no checking for long long... yes checking size of long long... 8 checking for u_int64_t... yes checking size of u_int64_t... 8 checking for uint64_t... yes checking size of uint64_t... 8 checking size of off_t... 8 checking size of size_t... 4 checking for pad128_t... no checking for upad128_t... no checking for pid_t... yes checking for size_t... yes checking size of size_t... (cached) 4 checking for ssize_t... yes checking for off_t... yes checking size of off_t... (cached) 8 checking for mode_t... yes checking for fd_mask... yes checking for uchar... no checking for size_t... (cached) yes checking for working alloca.h... no checking for alloca... yes checking for socklen_t... yes checking for cap_clear_flag in -lcap... no checking for mtyp_t... no checking for library containing gethostbyname... none required checking for library containing res_init... none required checking for library containing bind... none required checking for library containing opcom_stack_trace... no checking for library containing strlcpy... none required checking for library containing yp_match... no checking for unix domain sockets... yes checking for main in -lgnumalloc... no configure: skipping libmalloc check for i386-portbld-freebsd10.0 checking for main in -lregex... no checking for library containing rint... -lm checking for library containing log... none required checking whether to enable IPv6... yes checking for sin6_len field in struct sockaddr_in6... yes checking for ss_len field in struct sockaddr_storage... yes checking for sin_len field in struct sockaddr_in... yes checking for crypt in -lcrypt... yes checking for MD5Init in -lmd5... yes checking for main in -llber... yes checking whether dbopen is declared... yes checking if dbopen needs -ldb... no checking for backtrace_symbols_fd... no checking for bcopy... yes checking for bswap_16... no checking for bswap_32... no checking for bswap16... no checking for bswap32... no checking for fchmod... yes checking for getdtablesize... yes checking for getpagesize... yes checking for getpass... yes checking for getrlimit... yes checking for getrusage... yes checking for getspnam... no checking for gettimeofday... yes checking for glob... yes checking for htobe16... no checking for htole16... no checking for kqueue... yes checking for lrand48... yes checking for mallinfo... no checking for mallocblksize... no checking for mallopt... no checking for memcpy... yes checking for memmove... yes checking for memset... yes checking for mkstemp... yes checking for mktime... yes checking for mstats... no checking for poll... yes checking for prctl... no checking for pthread_attr_setschedparam... yes checking for pthread_attr_setscope... yes checking for pthread_setschedparam... no checking for pthread_sigmask... yes checking for putenv... yes checking for random... yes checking for regcomp... yes checking for regexec... yes checking for regfree... yes checking for res_init... yes checking for __res_init... yes checking for rint... yes checking for sbrk... yes checking for select... yes checking for seteuid... yes checking for setgroups... yes checking for setpgrp... yes checking for setsid... yes checking for sigaction... yes checking for snprintf... yes checking for socketpair... yes checking for srand48... yes checking for srandom... yes checking for statfs... yes checking for sysconf... yes checking for syslog... yes checking for timegm... yes checking for vsnprintf... yes checking for drand48... yes checking for inet_ntop... yes checking for inet_pton... yes checking for initgroups... yes checking for getaddrinfo... yes checking for getnameinfo... yes checking for strerror... yes checking for strsep... yes checking for strtoll... yes checking for tempnam... yes checking for crypt... yes configure: Using kqueue for the IO loop. checking if setresuid is implemented... yes checking if strnstr is well implemented... no checking if va_copy is implemented... yes checking if __va_copy is implemented... yes checking if PF header file is installed... no configure: WARNING: Cannot find necessary PF header file configure: WARNING: Transparent Proxy support WILL NOT be enabled checking if GNUregex needs to be compiled... no checking Default FD_SETSIZE value... 1024 checking Maximum number of filedescriptors we can open... checking for setrlimit... yes 7232 checking Default UDP send buffer size... 9216 checking Default UDP receive buffer size... 42080 checking Default TCP send buffer size... 32768 checking Default TCP receive buffer size... 65536 configure: Limiting receive buffer size to 64K checking if sys_errlist is already defined... yes checking for libresolv _dns_ttl_ hack... no checking for working statvfs() interface... yes checking for _res_ext.nsaddr_list... no checking for _res._u._ext.nsaddrs... no checking for _res.nsaddr_list... no checking for _res.ns_list... no configure: Enabling Multi-Language Support configure: creating ./config.status config.status: creating Makefile config.status: creating compat/Makefile config.status: creating lib/Makefile config.status: creating scripts/Makefile config.status: creating src/Makefile config.status: creating src/base/Makefile config.status: creating src/acl/Makefile config.status: creating src/fs/Makefile config.status: creating src/repl/Makefile config.status: creating src/auth/Makefile config.status: creating src/adaptation/Makefile config.status: creating src/adaptation/icap/Makefile config.status: creating src/adaptation/ecap/Makefile config.status: creating src/esi/Makefile config.status: creating src/icmp/Makefile config.status: creating src/ident/Makefile config.status: creating src/ip/Makefile config.status: creating src/ssl/Makefile config.status: creating contrib/Makefile config.status: creating snmplib/Makefile config.status: creating icons/Makefile config.status: creating errors/Makefile config.status: creating test-suite/Makefile config.status: creating doc/Makefile config.status: creating helpers/Makefile config.status: creating helpers/basic_auth/Makefile config.status: creating helpers/basic_auth/LDAP/Makefile config.status: creating helpers/basic_auth/MSNT/Makefile config.status: creating helpers/basic_auth/NCSA/Makefile config.status: creating helpers/basic_auth/PAM/Makefile config.status: creating helpers/basic_auth/SMB/Makefile config.status: creating helpers/basic_auth/mswin_sspi/Makefile config.status: creating helpers/basic_auth/YP/Makefile config.status: creating helpers/basic_auth/getpwnam/Makefile config.status: creating helpers/basic_auth/multi-domain-NTLM/Makefile config.status: creating helpers/basic_auth/SASL/Makefile config.status: creating helpers/basic_auth/POP3/Makefile config.status: creating helpers/basic_auth/DB/Makefile config.status: creating helpers/basic_auth/squid_radius_auth/Makefile config.status: creating helpers/digest_auth/Makefile config.status: creating helpers/digest_auth/password/Makefile config.status: creating helpers/digest_auth/ldap/Makefile config.status: creating helpers/digest_auth/eDirectory/Makefile config.status: creating helpers/ntlm_auth/Makefile config.status: creating helpers/ntlm_auth/fakeauth/Makefile config.status: creating helpers/ntlm_auth/no_check/Makefile config.status: creating helpers/ntlm_auth/smb_lm/Makefile config.status: creating helpers/ntlm_auth/smb_lm/smbval/Makefile config.status: creating helpers/ntlm_auth/mswin_sspi/Makefile config.status: creating helpers/negotiate_auth/Makefile config.status: creating helpers/negotiate_auth/mswin_sspi/Makefile config.status: creating helpers/external_acl/Makefile config.status: creating helpers/external_acl/ip_user/Makefile config.status: creating helpers/external_acl/ldap_group/Makefile config.status: creating helpers/external_acl/session/Makefile config.status: creating helpers/external_acl/unix_group/Makefile config.status: creating helpers/external_acl/wbinfo_group/Makefile config.status: creating helpers/external_acl/mswin_ad_group/Makefile config.status: creating helpers/external_acl/mswin_lm_group/Makefile config.status: creating tools/Makefile config.status: creating include/autoconf.h config.status: executing depfiles commands config.status: executing libtool commands === configuring in libltdl (/var/tmp/export/ports/www/squid31/work/squid-3.1.21/libltdl) configure: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local' '--with-default-user=squid' '--bindir=/usr/local/sbin' '--sbindir=/usr/local/sbin' '--datadir=/usr/local/etc/squid' '--libexecdir=/usr/local/libexec/squid' '--localstatedir=/var/squid' '--sysconfdir=/usr/local/etc/squid' '--with-logdir=/var/log/squid' '--with-pidfile=/var/run/squid/squid.pid' '--enable-removal-policies=lru heap' '--disable-linux-netfilter' '--disable-linux-tproxy' '--disable-epoll' '--disable-translation' '--enable-auth=basic digest negotiate ntlm' '--enable-basic-auth-helpers=DB NCSA PAM MSNT SMB squid_radius_auth' '--enable-digest-auth-helpers=password' '--enable-external-acl-helpers=ip_user session unix_group wbinfo_group' '--enable-ntlm-auth-helpers=smb_lm' '--enable-storeio=ufs diskd aufs' '--enable-disk-io=AIO Blocking DiskDaemon DiskThreads' '--disable-snmp' '--enable-ssl' '--with-openssl=/usr/local' '--enable-icmp' '--enable-cache-digests' '--disable-wccp' '--enable-pf-tra nsparent' '--disable-ecap' '--disable-loadable-modules' '--enable-kqueue' '--mandir=/usr/local/man' '--infodir=/usr/local/info/' '--build=i386-portbld-freebsd10.0' 'build_alias=i386-portbld-freebsd10.0' 'CC=cc' 'CFLAGS=-Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing' 'LDFLAGS= -rpath=/usr/local/lib -L/usr/local/lib' 'CPPFLAGS=' 'CXX=c++' 'CXXFLAGS=-Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing' 'CPP=cpp' '--with-squid=/var/tmp/export/ports/www/squid31/work/squid-3.1.21' --cache-file=/dev/null --srcdir=. checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking build system type... i386-portbld-freebsd10.0 checking host system type... i386-portbld-freebsd10.0 checking how to print strings... printf checking for style of include used by make... GNU checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking dependency style of cc... gcc3 checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for ar... ar checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking how to run the C preprocessor... cpp checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd10.0 ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... no checking for shl_load in -ldld... no checking for dlopen... yes checking whether a program can dlopen itself... yes checking whether a statically linked program can dlopen itself... no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking which extension is used for runtime loadable modules... .so checking which variable specifies run-time module search path... LD_LIBRARY_PATH checking for the default library search path... /lib /usr/lib checking for library containing dlopen... none required checking for dlerror... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dld_link in -ldld... no checking for _ prefix in compiled symbols... no checking whether deplibs are loaded by dlopen... yes checking for argz.h... no checking for error_t... no checking for argz_add... no checking for argz_append... no checking for argz_count... no checking for argz_create_sep... no checking for argz_insert... no checking for argz_next... no checking for argz_stringify... no checking whether libtool supports -dlopen/-dlpreopen... yes checking for unistd.h... (cached) yes checking for dl.h... no checking for sys/dl.h... no checking for dld.h... no checking for mach-o/dyld.h... no checking for dirent.h... yes checking for closedir... yes checking for opendir... yes checking for readdir... yes checking for strlcat... yes checking for strlcpy... yes configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands === configuring in helpers/negotiate_auth/squid_kerb_auth (/var/tmp/export/ports/www/squid31/work/squid-3.1.21/helpers/negotiate_auth/squid_kerb_auth) configure: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local' '--with-default-user=squid' '--bindir=/usr/local/sbin' '--sbindir=/usr/local/sbin' '--datadir=/usr/local/etc/squid' '--libexecdir=/usr/local/libexec/squid' '--localstatedir=/var/squid' '--sysconfdir=/usr/local/etc/squid' '--with-logdir=/var/log/squid' '--with-pidfile=/var/run/squid/squid.pid' '--enable-removal-policies=lru heap' '--disable-linux-netfilter' '--disable-linux-tproxy' '--disable-epoll' '--disable-translation' '--enable-auth=basic digest negotiate ntlm' '--enable-basic-auth-helpers=DB NCSA PAM MSNT SMB squid_radius_auth' '--enable-digest-auth-helpers=password' '--enable-external-acl-helpers=ip_user session unix_group wbinfo_group' '--enable-ntlm-auth-helpers=smb_lm' '--enable-storeio=ufs diskd aufs' '--enable-disk-io=AIO Blocking DiskDaemon DiskThreads' '--disable-snmp' '--enable-ssl' '--with-openssl=/usr/local' '--enable-icmp' '--enable-cache-digests' '--disable-wccp' '--enable-pf-tra nsparent' '--disable-ecap' '--disable-loadable-modules' '--enable-kqueue' '--mandir=/usr/local/man' '--infodir=/usr/local/info/' '--build=i386-portbld-freebsd10.0' 'build_alias=i386-portbld-freebsd10.0' 'CC=cc' 'CFLAGS=-Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing' 'LDFLAGS= -rpath=/usr/local/lib -L/usr/local/lib' 'CPPFLAGS=' 'CXX=c++' 'CXXFLAGS=-Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing' 'CPP=cpp' '--with-squid=/var/tmp/export/ports/www/squid31/work/squid-3.1.21' --cache-file=/dev/null --srcdir=. checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of cc... gcc3 checking how to run the C preprocessor... cpp checking for krb5-config... yes checking gssapi.h usability... yes checking gssapi.h presence... yes checking for gssapi.h... yes checking gssapi/gssapi.h usability... yes checking gssapi/gssapi.h presence... yes checking for gssapi/gssapi.h... yes checking whether byte ordering is bigendian... no checking errno.h usability... yes checking errno.h presence... yes checking for errno.h... yes checking netdb.h usability... yes checking netdb.h presence... yes checking for netdb.h... yes checking stdio.h usability... yes checking stdio.h presence... yes checking for stdio.h... yes checking stdlib.h usability... yes checking stdlib.h presence... yes checking for stdlib.h... yes checking string.h usability... yes checking string.h presence... yes checking for string.h... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking time.h usability... yes checking time.h presence... yes checking for time.h... yes checking unistd.h usability... yes checking unistd.h presence... yes checking for unistd.h... yes checking for SQUID at '/var/tmp/export/ports/www/squid31/work/squid-3.1.21' ... yes checking getaddrinfo.h usability... yes checking getaddrinfo.h presence... yes checking for getaddrinfo.h... yes checking getnameinfo.h usability... yes checking getnameinfo.h presence... yes checking for getnameinfo.h... yes checking util.h usability... yes checking util.h presence... yes checking for util.h... yes checking whether xgetaddrinfo is declared... yes checking whether xfreeaddrinfo is declared... yes checking whether xgai_strerror is declared... yes checking whether xgetnameinfo is declared... yes checking whether xstrdup is declared... yes checking whether xmalloc is declared... yes checking whether xfree is declared... yes checking for main in -lm... yes checking for main in -lmw... no configure: ## -----------------------------## configure: ## configure: ## heimdal has been selected configure: ## configure: ## -----------------------------## configure: creating ./config.status config.status: creating Makefile config.status: creating ska_config.h config.status: executing depfiles commands configure: updating ska_config.h === configuring in lib/libTrie (/var/tmp/export/ports/www/squid31/work/squid-3.1.21/lib/libTrie) configure: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local' '--with-default-user=squid' '--bindir=/usr/local/sbin' '--sbindir=/usr/local/sbin' '--datadir=/usr/local/etc/squid' '--libexecdir=/usr/local/libexec/squid' '--localstatedir=/var/squid' '--sysconfdir=/usr/local/etc/squid' '--with-logdir=/var/log/squid' '--with-pidfile=/var/run/squid/squid.pid' '--enable-removal-policies=lru heap' '--disable-linux-netfilter' '--disable-linux-tproxy' '--disable-epoll' '--disable-translation' '--enable-auth=basic digest negotiate ntlm' '--enable-basic-auth-helpers=DB NCSA PAM MSNT SMB squid_radius_auth' '--enable-digest-auth-helpers=password' '--enable-external-acl-helpers=ip_user session unix_group wbinfo_group' '--enable-ntlm-auth-helpers=smb_lm' '--enable-storeio=ufs diskd aufs' '--enable-disk-io=AIO Blocking DiskDaemon DiskThreads' '--disable-snmp' '--enable-ssl' '--with-openssl=/usr/local' '--enable-icmp' '--enable-cache-digests' '--disable-wccp' '--enable-pf-tra nsparent' '--disable-ecap' '--disable-loadable-modules' '--enable-kqueue' '--mandir=/usr/local/man' '--infodir=/usr/local/info/' '--build=i386-portbld-freebsd10.0' 'build_alias=i386-portbld-freebsd10.0' 'CC=cc' 'CFLAGS=-Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing' 'LDFLAGS= -rpath=/usr/local/lib -L/usr/local/lib' 'CPPFLAGS=' 'CXX=c++' 'CXXFLAGS=-Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing' 'CPP=cpp' '--with-squid=/var/tmp/export/ports/www/squid31/work/squid-3.1.21' --cache-file=/dev/null --srcdir=. checking whether the C++ compiler works... yes checking for C++ compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking for gcc... cc checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking whether make sets $(MAKE)... yes checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p checking for gawk... gawk checking for style of include used by make... GNU checking dependency style of cc... gcc3 checking dependency style of c++... gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking for ranlib... ranlib configure: strict error checking enabled: yes checking whether compiler accepts -fhuge-objects... no checking how to run the C++ preprocessor... c++ -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking iostream usability... yes checking iostream presence... yes checking for iostream... yes checking for an ANSI C-conforming const... yes checking for size_t... yes configure: creating ./config.status config.status: creating Makefile config.status: creating include/Makefile config.status: creating src/Makefile config.status: creating test/Makefile config.status: creating config.h config.status: executing depfiles commands ===> Building for squid-3.1.21 Making all in compat /bin/sh ../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT assert.lo -MD -MP -MF .deps/assert.Tpo -c -o assert.lo assert.cc libtool: compile: c++ -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT assert.lo -MD -MP -MF .deps/assert.Tpo -c assert.cc -o assert.o mv -f .deps/assert.Tpo .deps/assert.Plo /bin/sh ../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT compat.lo -MD -MP -MF .deps/compat.Tpo -c -o compat.lo compat.cc libtool: compile: c++ -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT compat.lo -MD -MP -MF .deps/compat.Tpo -c compat.cc -o compat.o mv -f .deps/compat.Tpo .deps/compat.Plo /bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT GnuRegex.lo -MD -MP -MF .deps/GnuRegex.Tpo -c -o GnuRegex.lo GnuRegex.c libtool: compile: cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT GnuRegex.lo -MD -MP -MF .deps/GnuRegex.Tpo -c GnuRegex.c -o GnuRegex.o mv -f .deps/GnuRegex.Tpo .deps/GnuRegex.Plo /bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libcompat.la assert.lo compat.lo GnuRegex.lo libtool: link: ar cru .libs/libcompat.a assert.o compat.o GnuRegex.o libtool: link: ranlib .libs/libcompat.a libtool: link: ( cd ".libs" && rm -f "libcompat.la" && ln -s "../libcompat.la" "libcompat.la" ) Making all in lib c++ -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT MemPool.o -MD -MP -MF .deps/MemPool.Tpo -c -o MemPool.o MemPool.cc mv -f .deps/MemPool.Tpo .deps/MemPool.Po c++ -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT MemPoolChunked.o -MD -MP -MF .deps/MemPoolChunked.Tpo -c -o MemPoolChunked.o MemPoolChunked.cc mv -f .deps/MemPoolChunked.Tpo .deps/MemPoolChunked.Po c++ -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT MemPoolMalloc.o -MD -MP -MF .deps/MemPoolMalloc.Tpo -c -o MemPoolMalloc.o MemPoolMalloc.cc mv -f .deps/MemPoolMalloc.Tpo .deps/MemPoolMalloc.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT base64.o -MD -MP -MF .deps/base64.Tpo -c -o base64.o base64.c mv -f .deps/base64.Tpo .deps/base64.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT charset.o -MD -MP -MF .deps/charset.Tpo -c -o charset.o charset.c mv -f .deps/charset.Tpo .deps/charset.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT getfullhostname.o -MD -MP -MF .deps/getfullhostname.Tpo -c -o getfullhostname.o getfullhostname.c mv -f .deps/getfullhostname.Tpo .deps/getfullhostname.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT hash.o -MD -MP -MF .deps/hash.Tpo -c -o hash.o hash.c mv -f .deps/hash.Tpo .deps/hash.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT heap.o -MD -MP -MF .deps/heap.Tpo -c -o heap.o heap.c mv -f .deps/heap.Tpo .deps/heap.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT html_quote.o -MD -MP -MF .deps/html_quote.Tpo -c -o html_quote.o html_quote.c mv -f .deps/html_quote.Tpo .deps/html_quote.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT iso3307.o -MD -MP -MF .deps/iso3307.Tpo -c -o iso3307.o iso3307.c mv -f .deps/iso3307.Tpo .deps/iso3307.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT md5.o -MD -MP -MF .deps/md5.Tpo -c -o md5.o md5.c mv -f .deps/md5.Tpo .deps/md5.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT radix.o -MD -MP -MF .deps/radix.Tpo -c -o radix.o radix.c mv -f .deps/radix.Tpo .deps/radix.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT rfc1035.o -MD -MP -MF .deps/rfc1035.Tpo -c -o rfc1035.o rfc1035.c mv -f .deps/rfc1035.Tpo .deps/rfc1035.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT rfc1123.o -MD -MP -MF .deps/rfc1123.Tpo -c -o rfc1123.o rfc1123.c mv -f .deps/rfc1123.Tpo .deps/rfc1123.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT rfc1738.o -MD -MP -MF .deps/rfc1738.Tpo -c -o rfc1738.o rfc1738.c mv -f .deps/rfc1738.Tpo .deps/rfc1738.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT rfc2617.o -MD -MP -MF .deps/rfc2617.Tpo -c -o rfc2617.o rfc2617.c mv -f .deps/rfc2617.Tpo .deps/rfc2617.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT rfc3596.o -MD -MP -MF .deps/rfc3596.Tpo -c -o rfc3596.o rfc3596.c mv -f .deps/rfc3596.Tpo .deps/rfc3596.Po c++ -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Splay.o -MD -MP -MF .deps/Splay.Tpo -c -o Splay.o Splay.cc mv -f .deps/Splay.Tpo .deps/Splay.Po c++ -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT strnstr.o -MD -MP -MF .deps/strnstr.Tpo -c -o strnstr.o strnstr.cc mv -f .deps/strnstr.Tpo .deps/strnstr.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT stub_memaccount.o -MD -MP -MF .deps/stub_memaccount.Tpo -c -o stub_memaccount.o stub_memaccount.c mv -f .deps/stub_memaccount.Tpo .deps/stub_memaccount.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT util.o -MD -MP -MF .deps/util.Tpo -c -o util.o util.c mv -f .deps/util.Tpo .deps/util.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT uudecode.o -MD -MP -MF .deps/uudecode.Tpo -c -o uudecode.o uudecode.c mv -f .deps/uudecode.Tpo .deps/uudecode.Po cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT xusleep.o -MD -MP -MF .deps/xusleep.Tpo -c -o xusleep.o xusleep.c mv -f .deps/xusleep.Tpo .deps/xusleep.Po rm -f libmiscutil.a ar cru libmiscutil.a MemPool.o MemPoolChunked.o MemPoolMalloc.o base64.o charset.o getfullhostname.o hash.o heap.o html_quote.o iso3307.o md5.o radix.o rfc1035.o rfc1123.o rfc1738.o rfc2617.o rfc3596.o Splay.o strnstr.o stub_memaccount.o util.o uudecode.o xusleep.o ranlib libmiscutil.a cc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT ntlmauth.o -MD -MP -MF .deps/ntlmauth.Tpo -c -o ntlmauth.o ntlmauth.c mv -f .deps/ntlmauth.Tpo .deps/ntlmauth.Po rm -f libntlmauth.a ar cru libntlmauth.a ntlmauth.o ranlib libntlmauth.a Making all in scripts Making all in src gawk -f ./cf_gen_defines <./cf.data.pre >cf_gen_defines.cci || (/bin/rm -f -f cf_gen_defines.cci && exit 1) sed -e "s%[@]DEFAULT_HTTP_PORT[@]%3128%g" -e "s%[@]DEFAULT_ICP_PORT[@]%3130%g" -e "s%[@]DEFAULT_CACHE_EFFECTIVE_USER[@]%squid%g" -e "s%[@]DEFAULT_MIME_TABLE[@]%/usr/local/etc/squid/mime.conf%g" -e "s%[@]DEFAULT_DNSSERVER[@]%/usr/local/libexec/squid/`echo dnsserver | sed 's,x,x,;s/$//'`%g" -e "s%[@]DEFAULT_SSL_CRTD[@]%/usr/local/libexec/squid/`echo ssl_crtd | sed 's,x,x,;s/$//'`%g" -e "s%[@]DEFAULT_UNLINKD[@]%/usr/local/libexec/squid/`echo unlinkd | sed 's,x,x,;s/$//'`%g" -e "s%[@]DEFAULT_PINGER[@]%/usr/local/libexec/squid/`echo pinger | sed 's,x,x,;s/$//'`%g" -e "s%[@]DEFAULT_DISKD[@]%/usr/local/libexec/squid/`echo diskd | sed 's,x,x,;s/$//'`%g" -e "s%[@]DEFAULT_CACHE_LOG[@]%/var/log/squid/cache.log%g" -e "s%[@]DEFAULT_ACCESS_LOG[@]%/var/log/squid/access.log%g" -e "s%[@]DEFAULT_STORE_LOG[@]%/var/log/squid/store.log%g" -e "s%[@]DEFAULT_PID_FILE[@]%/var/run/squid/squid.pid%g" -e "s%[@]DEFAULT_NETDB_FILE[@]%/var/log/squid/netdb.state%g" -e "s%[@]DEFAULT_SWAP_DIR[@]%/var/ squid/cache%g" -e "s%[@]DEFAULT_SSL_DB_DIR[@]%/var/squid/lib/ssl_db%g" -e "s%[@]DEFAULT_ICON_DIR[@]%/usr/local/etc/squid/icons%g" -e "s%[@]DEFAULT_CONFIG_DIR[@]%/usr/local/etc/squid%g" -e "s%[@]DEFAULT_PREFIX[@]%/usr/local%g" -e "s%[@]DEFAULT_HOSTS[@]%/etc/hosts%g" -e "s%[@]SQUID[@]%SQUID\ 3.1.21%g" < ./cf.data.pre >cf.data c++ -o cf_gen ./cf_gen.cc -I. -I../include/ -I../src ./cf_gen cf.data ./cf.data.depend gawk -f ./mk-globals-c.awk < ./globals.h > globals.cc || (/bin/rm -f -f globals.cc && exit 1) /bin/sh ./repl_modules.sh lru heap > repl_modules.cc make all-recursive Making all in base /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT AsyncCall.lo -MD -MP -MF .deps/AsyncCall.Tpo -c -o AsyncCall.lo AsyncCall.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT AsyncCall.lo -MD -MP -MF .deps/AsyncCall.Tpo -c AsyncCall.cc -o AsyncCall.o mv -f .deps/AsyncCall.Tpo .deps/AsyncCall.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT AsyncJob.lo -MD -MP -MF .deps/AsyncJob.Tpo -c -o AsyncJob.lo AsyncJob.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT AsyncJob.lo -MD -MP -MF .deps/AsyncJob.Tpo -c AsyncJob.cc -o AsyncJob.o mv -f .deps/AsyncJob.Tpo .deps/AsyncJob.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT AsyncCallQueue.lo -MD -MP -MF .deps/AsyncCallQueue.Tpo -c -o AsyncCallQueue.lo AsyncCallQueue.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT AsyncCallQueue.lo -MD -MP -MF .deps/AsyncCallQueue.Tpo -c AsyncCallQueue.cc -o AsyncCallQueue.o mv -f .deps/AsyncCallQueue.Tpo .deps/AsyncCallQueue.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libbase.la AsyncCall.lo AsyncJob.lo AsyncCallQueue.lo libtool: link: ar cru .libs/libbase.a AsyncCall.o AsyncJob.o AsyncCallQueue.o libtool: link: ranlib .libs/libbase.a libtool: link: ( cd ".libs" && rm -f "libbase.la" && ln -s "../libbase.la" "libbase.la" ) Making all in acl /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Acl.lo -MD -MP -MF .deps/Acl.Tpo -c -o Acl.lo Acl.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Acl.lo -MD -MP -MF .deps/Acl.Tpo -c Acl.cc -o Acl.o mv -f .deps/Acl.Tpo .deps/Acl.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Checklist.lo -MD -MP -MF .deps/Checklist.Tpo -c -o Checklist.lo Checklist.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Checklist.lo -MD -MP -MF .deps/Checklist.Tpo -c Checklist.cc -o Checklist.o mv -f .deps/Checklist.Tpo .deps/Checklist.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libapi.la Acl.lo Checklist.lo libtool: link: ar cru .libs/libapi.a Acl.o Checklist.o libtool: link: ranlib .libs/libapi.a libtool: link: ( cd ".libs" && rm -f "libapi.la" && ln -s "../libapi.la" "libapi.la" ) /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Strategised.lo -MD -MP -MF .deps/Strategised.Tpo -c -o Strategised.lo Strategised.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Strategised.lo -MD -MP -MF .deps/Strategised.Tpo -c Strategised.cc -o Strategised.o mv -f .deps/Strategised.Tpo .deps/Strategised.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT FilledChecklist.lo -MD -MP -MF .deps/FilledChecklist.Tpo -c -o FilledChecklist.lo FilledChecklist.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT FilledChecklist.lo -MD -MP -MF .deps/FilledChecklist.Tpo -c FilledChecklist.cc -o FilledChecklist.o mv -f .deps/FilledChecklist.Tpo .deps/FilledChecklist.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libstate.la Strategised.lo FilledChecklist.lo libtool: link: ar cru .libs/libstate.a Strategised.o FilledChecklist.o libtool: link: ranlib .libs/libstate.a libtool: link: ( cd ".libs" && rm -f "libstate.la" && ln -s "../libstate.la" "libstate.la" ) /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT IntRange.lo -MD -MP -MF .deps/IntRange.Tpo -c -o IntRange.lo IntRange.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT IntRange.lo -MD -MP -MF .deps/IntRange.Tpo -c IntRange.cc -o IntRange.o mv -f .deps/IntRange.Tpo .deps/IntRange.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT RegexData.lo -MD -MP -MF .deps/RegexData.Tpo -c -o RegexData.lo RegexData.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT RegexData.lo -MD -MP -MF .deps/RegexData.Tpo -c RegexData.cc -o RegexData.o mv -f .deps/RegexData.Tpo .deps/RegexData.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT StringData.lo -MD -MP -MF .deps/StringData.Tpo -c -o StringData.lo StringData.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT StringData.lo -MD -MP -MF .deps/StringData.Tpo -c StringData.cc -o StringData.o mv -f .deps/StringData.Tpo .deps/StringData.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Time.lo -MD -MP -MF .deps/Time.Tpo -c -o Time.lo Time.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Time.lo -MD -MP -MF .deps/Time.Tpo -c Time.cc -o Time.o mv -f .deps/Time.Tpo .deps/Time.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT TimeData.lo -MD -MP -MF .deps/TimeData.Tpo -c -o TimeData.lo TimeData.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT TimeData.lo -MD -MP -MF .deps/TimeData.Tpo -c TimeData.cc -o TimeData.o mv -f .deps/TimeData.Tpo .deps/TimeData.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Asn.lo -MD -MP -MF .deps/Asn.Tpo -c -o Asn.lo Asn.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Asn.lo -MD -MP -MF .deps/Asn.Tpo -c Asn.cc -o Asn.o mv -f .deps/Asn.Tpo .deps/Asn.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Browser.lo -MD -MP -MF .deps/Browser.Tpo -c -o Browser.lo Browser.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Browser.lo -MD -MP -MF .deps/Browser.Tpo -c Browser.cc -o Browser.o mv -f .deps/Browser.Tpo .deps/Browser.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT DestinationDomain.lo -MD -MP -MF .deps/DestinationDomain.Tpo -c -o DestinationDomain.lo DestinationDomain.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT DestinationDomain.lo -MD -MP -MF .deps/DestinationDomain.Tpo -c DestinationDomain.cc -o DestinationDomain.o mv -f .deps/DestinationDomain.Tpo .deps/DestinationDomain.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT DestinationIp.lo -MD -MP -MF .deps/DestinationIp.Tpo -c -o DestinationIp.lo DestinationIp.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT DestinationIp.lo -MD -MP -MF .deps/DestinationIp.Tpo -c DestinationIp.cc -o DestinationIp.o mv -f .deps/DestinationIp.Tpo .deps/DestinationIp.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT DomainData.lo -MD -MP -MF .deps/DomainData.Tpo -c -o DomainData.lo DomainData.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT DomainData.lo -MD -MP -MF .deps/DomainData.Tpo -c DomainData.cc -o DomainData.o mv -f .deps/DomainData.Tpo .deps/DomainData.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT ExtUser.lo -MD -MP -MF .deps/ExtUser.Tpo -c -o ExtUser.lo ExtUser.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT ExtUser.lo -MD -MP -MF .deps/ExtUser.Tpo -c ExtUser.cc -o ExtUser.o mv -f .deps/ExtUser.Tpo .deps/ExtUser.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT HttpHeaderData.lo -MD -MP -MF .deps/HttpHeaderData.Tpo -c -o HttpHeaderData.lo HttpHeaderData.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT HttpHeaderData.lo -MD -MP -MF .deps/HttpHeaderData.Tpo -c HttpHeaderData.cc -o HttpHeaderData.o mv -f .deps/HttpHeaderData.Tpo .deps/HttpHeaderData.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT HttpRepHeader.lo -MD -MP -MF .deps/HttpRepHeader.Tpo -c -o HttpRepHeader.lo HttpRepHeader.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT HttpRepHeader.lo -MD -MP -MF .deps/HttpRepHeader.Tpo -c HttpRepHeader.cc -o HttpRepHeader.o mv -f .deps/HttpRepHeader.Tpo .deps/HttpRepHeader.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT HttpReqHeader.lo -MD -MP -MF .deps/HttpReqHeader.Tpo -c -o HttpReqHeader.lo HttpReqHeader.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT HttpReqHeader.lo -MD -MP -MF .deps/HttpReqHeader.Tpo -c HttpReqHeader.cc -o HttpReqHeader.o mv -f .deps/HttpReqHeader.Tpo .deps/HttpReqHeader.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT HttpStatus.lo -MD -MP -MF .deps/HttpStatus.Tpo -c -o HttpStatus.lo HttpStatus.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT HttpStatus.lo -MD -MP -MF .deps/HttpStatus.Tpo -c HttpStatus.cc -o HttpStatus.o mv -f .deps/HttpStatus.Tpo .deps/HttpStatus.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Ip.lo -MD -MP -MF .deps/Ip.Tpo -c -o Ip.lo Ip.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Ip.lo -MD -MP -MF .deps/Ip.Tpo -c Ip.cc -o Ip.o mv -f .deps/Ip.Tpo .deps/Ip.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT MaxConnection.lo -MD -MP -MF .deps/MaxConnection.Tpo -c -o MaxConnection.lo MaxConnection.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT MaxConnection.lo -MD -MP -MF .deps/MaxConnection.Tpo -c MaxConnection.cc -o MaxConnection.o mv -f .deps/MaxConnection.Tpo .deps/MaxConnection.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Method.lo -MD -MP -MF .deps/Method.Tpo -c -o Method.lo Method.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Method.lo -MD -MP -MF .deps/Method.Tpo -c Method.cc -o Method.o mv -f .deps/Method.Tpo .deps/Method.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT MethodData.lo -MD -MP -MF .deps/MethodData.Tpo -c -o MethodData.lo MethodData.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT MethodData.lo -MD -MP -MF .deps/MethodData.Tpo -c MethodData.cc -o MethodData.o mv -f .deps/MethodData.Tpo .deps/MethodData.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT MyIp.lo -MD -MP -MF .deps/MyIp.Tpo -c -o MyIp.lo MyIp.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT MyIp.lo -MD -MP -MF .deps/MyIp.Tpo -c MyIp.cc -o MyIp.o mv -f .deps/MyIp.Tpo .deps/MyIp.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT MyPort.lo -MD -MP -MF .deps/MyPort.Tpo -c -o MyPort.lo MyPort.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT MyPort.lo -MD -MP -MF .deps/MyPort.Tpo -c MyPort.cc -o MyPort.o mv -f .deps/MyPort.Tpo .deps/MyPort.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT MyPortName.lo -MD -MP -MF .deps/MyPortName.Tpo -c -o MyPortName.lo MyPortName.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT MyPortName.lo -MD -MP -MF .deps/MyPortName.Tpo -c MyPortName.cc -o MyPortName.o mv -f .deps/MyPortName.Tpo .deps/MyPortName.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT PeerName.lo -MD -MP -MF .deps/PeerName.Tpo -c -o PeerName.lo PeerName.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT PeerName.lo -MD -MP -MF .deps/PeerName.Tpo -c PeerName.cc -o PeerName.o mv -f .deps/PeerName.Tpo .deps/PeerName.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Protocol.lo -MD -MP -MF .deps/Protocol.Tpo -c -o Protocol.lo Protocol.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Protocol.lo -MD -MP -MF .deps/Protocol.Tpo -c Protocol.cc -o Protocol.o mv -f .deps/Protocol.Tpo .deps/Protocol.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT ProtocolData.lo -MD -MP -MF .deps/ProtocolData.Tpo -c -o ProtocolData.lo ProtocolData.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT ProtocolData.lo -MD -MP -MF .deps/ProtocolData.Tpo -c ProtocolData.cc -o ProtocolData.o mv -f .deps/ProtocolData.Tpo .deps/ProtocolData.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Referer.lo -MD -MP -MF .deps/Referer.Tpo -c -o Referer.lo Referer.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Referer.lo -MD -MP -MF .deps/Referer.Tpo -c Referer.cc -o Referer.o mv -f .deps/Referer.Tpo .deps/Referer.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT ReplyMimeType.lo -MD -MP -MF .deps/ReplyMimeType.Tpo -c -o ReplyMimeType.lo ReplyMimeType.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT ReplyMimeType.lo -MD -MP -MF .deps/ReplyMimeType.Tpo -c ReplyMimeType.cc -o ReplyMimeType.o mv -f .deps/ReplyMimeType.Tpo .deps/ReplyMimeType.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT RequestMimeType.lo -MD -MP -MF .deps/RequestMimeType.Tpo -c -o RequestMimeType.lo RequestMimeType.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT RequestMimeType.lo -MD -MP -MF .deps/RequestMimeType.Tpo -c RequestMimeType.cc -o RequestMimeType.o mv -f .deps/RequestMimeType.Tpo .deps/RequestMimeType.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT SourceDomain.lo -MD -MP -MF .deps/SourceDomain.Tpo -c -o SourceDomain.lo SourceDomain.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT SourceDomain.lo -MD -MP -MF .deps/SourceDomain.Tpo -c SourceDomain.cc -o SourceDomain.o mv -f .deps/SourceDomain.Tpo .deps/SourceDomain.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT SourceIp.lo -MD -MP -MF .deps/SourceIp.Tpo -c -o SourceIp.lo SourceIp.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT SourceIp.lo -MD -MP -MF .deps/SourceIp.Tpo -c SourceIp.cc -o SourceIp.o mv -f .deps/SourceIp.Tpo .deps/SourceIp.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Tag.lo -MD -MP -MF .deps/Tag.Tpo -c -o Tag.lo Tag.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Tag.lo -MD -MP -MF .deps/Tag.Tpo -c Tag.cc -o Tag.o mv -f .deps/Tag.Tpo .deps/Tag.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Url.lo -MD -MP -MF .deps/Url.Tpo -c -o Url.lo Url.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Url.lo -MD -MP -MF .deps/Url.Tpo -c Url.cc -o Url.o mv -f .deps/Url.Tpo .deps/Url.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT UrlPath.lo -MD -MP -MF .deps/UrlPath.Tpo -c -o UrlPath.lo UrlPath.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT UrlPath.lo -MD -MP -MF .deps/UrlPath.Tpo -c UrlPath.cc -o UrlPath.o mv -f .deps/UrlPath.Tpo .deps/UrlPath.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT UrlPort.lo -MD -MP -MF .deps/UrlPort.Tpo -c -o UrlPort.lo UrlPort.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT UrlPort.lo -MD -MP -MF .deps/UrlPort.Tpo -c UrlPort.cc -o UrlPort.o mv -f .deps/UrlPort.Tpo .deps/UrlPort.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT UserData.lo -MD -MP -MF .deps/UserData.Tpo -c -o UserData.lo UserData.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT UserData.lo -MD -MP -MF .deps/UserData.Tpo -c UserData.cc -o UserData.o mv -f .deps/UserData.Tpo .deps/UserData.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Gadgets.lo -MD -MP -MF .deps/Gadgets.Tpo -c -o Gadgets.lo Gadgets.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Gadgets.lo -MD -MP -MF .deps/Gadgets.Tpo -c Gadgets.cc -o Gadgets.o mv -f .deps/Gadgets.Tpo .deps/Gadgets.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT CertificateData.lo -MD -MP -MF .deps/CertificateData.Tpo -c -o CertificateData.lo CertificateData.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT CertificateData.lo -MD -MP -MF .deps/CertificateData.Tpo -c CertificateData.cc -o CertificateData.o mv -f .deps/CertificateData.Tpo .deps/CertificateData.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Certificate.lo -MD -MP -MF .deps/Certificate.Tpo -c -o Certificate.lo Certificate.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Certificate.lo -MD -MP -MF .deps/Certificate.Tpo -c Certificate.cc -o Certificate.o mv -f .deps/Certificate.Tpo .deps/Certificate.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT SslError.lo -MD -MP -MF .deps/SslError.Tpo -c -o SslError.lo SslError.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT SslError.lo -MD -MP -MF .deps/SslError.Tpo -c SslError.cc -o SslError.o mv -f .deps/SslError.Tpo .deps/SslError.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT SslErrorData.lo -MD -MP -MF .deps/SslErrorData.Tpo -c -o SslErrorData.lo SslErrorData.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT SslErrorData.lo -MD -MP -MF .deps/SslErrorData.Tpo -c SslErrorData.cc -o SslErrorData.o mv -f .deps/SslErrorData.Tpo .deps/SslErrorData.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libacls.la IntRange.lo RegexData.lo StringData.lo Time.lo TimeData.lo Asn.lo Browser.lo DestinationDomain.lo DestinationIp.lo DomainData.lo ExtUser.lo HttpHeaderData.lo HttpRepHeader.lo HttpReqHeader.lo HttpStatus.lo Ip.lo MaxConnection.lo Method.lo MethodData.lo MyIp.lo MyPort.lo MyPortName.lo PeerName.lo Protocol.lo ProtocolData.lo Referer.lo ReplyMimeType.lo RequestMimeType.lo SourceDomain.lo SourceIp.lo Tag.lo Url.lo UrlPath.lo UrlPort.lo UserData.lo Gadgets.lo CertificateData.lo Certificate.lo SslError.lo SslErrorData.lo libtool: link: ar cru .libs/libacls.a IntRange.o RegexData.o StringData.o Time.o TimeData.o Asn.o Browser.o DestinationDomain.o DestinationIp.o DomainData.o ExtUser.o HttpHeaderData.o HttpRepHeader.o HttpReqHeader.o HttpStatus.o Ip.o MaxConnection.o Method.o MethodData.o MyIp.o MyPort.o MyPortName.o PeerName.o Protocol.o ProtocolData.o Referer.o ReplyMimeType.o RequestMimeType.o SourceDomain.o SourceIp.o Tag.o Url.o UrlPath.o UrlPort.o UserData.o Gadgets.o CertificateData.o Certificate.o SslError.o SslErrorData.o libtool: link: ranlib .libs/libacls.a libtool: link: ( cd ".libs" && rm -f "libacls.la" && ln -s "../libacls.la" "libacls.la" ) Making all in fs /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT StoreFSufs.lo -MD -MP -MF .deps/StoreFSufs.Tpo -c -o StoreFSufs.lo `test -f 'ufs/StoreFSufs.cc' || echo './'`ufs/StoreFSufs.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT StoreFSufs.lo -MD -MP -MF .deps/StoreFSufs.Tpo -c ufs/StoreFSufs.cc -o StoreFSufs.o mv -f .deps/StoreFSufs.Tpo .deps/StoreFSufs.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT store_dir_ufs.lo -MD -MP -MF .deps/store_dir_ufs.Tpo -c -o store_dir_ufs.lo `test -f 'ufs/store_dir_ufs.cc' || echo './'`ufs/store_dir_ufs.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT store_dir_ufs.lo -MD -MP -MF .deps/store_dir_ufs.Tpo -c ufs/store_dir_ufs.cc -o store_dir_ufs.o mv -f .deps/store_dir_ufs.Tpo .deps/store_dir_ufs.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT store_io_ufs.lo -MD -MP -MF .deps/store_io_ufs.Tpo -c -o store_io_ufs.lo `test -f 'ufs/store_io_ufs.cc' || echo './'`ufs/store_io_ufs.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT store_io_ufs.lo -MD -MP -MF .deps/store_io_ufs.Tpo -c ufs/store_io_ufs.cc -o store_io_ufs.o mv -f .deps/store_io_ufs.Tpo .deps/store_io_ufs.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT ufscommon.lo -MD -MP -MF .deps/ufscommon.Tpo -c -o ufscommon.lo `test -f 'ufs/ufscommon.cc' || echo './'`ufs/ufscommon.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT ufscommon.lo -MD -MP -MF .deps/ufscommon.Tpo -c ufs/ufscommon.cc -o ufscommon.o mv -f .deps/ufscommon.Tpo .deps/ufscommon.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libufs.la StoreFSufs.lo store_dir_ufs.lo store_io_ufs.lo ufscommon.lo libtool: link: ar cru .libs/libufs.a StoreFSufs.o store_dir_ufs.o store_io_ufs.o ufscommon.o libtool: link: ranlib .libs/libufs.a libtool: link: ( cd ".libs" && rm -f "libufs.la" && ln -s "../libufs.la" "libufs.la" ) /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT StoreFSdiskd.lo -MD -MP -MF .deps/StoreFSdiskd.Tpo -c -o StoreFSdiskd.lo `test -f 'diskd/StoreFSdiskd.cc' || echo './'`diskd/StoreFSdiskd.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT StoreFSdiskd.lo -MD -MP -MF .deps/StoreFSdiskd.Tpo -c diskd/StoreFSdiskd.cc -o StoreFSdiskd.o mv -f .deps/StoreFSdiskd.Tpo .deps/StoreFSdiskd.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libdiskd.la StoreFSdiskd.lo libtool: link: ar cru .libs/libdiskd.a StoreFSdiskd.o libtool: link: ranlib .libs/libdiskd.a libtool: link: ( cd ".libs" && rm -f "libdiskd.la" && ln -s "../libdiskd.la" "libdiskd.la" ) /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT StoreFSaufs.lo -MD -MP -MF .deps/StoreFSaufs.Tpo -c -o StoreFSaufs.lo `test -f 'aufs/StoreFSaufs.cc' || echo './'`aufs/StoreFSaufs.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT StoreFSaufs.lo -MD -MP -MF .deps/StoreFSaufs.Tpo -c aufs/StoreFSaufs.cc -o StoreFSaufs.o mv -f .deps/StoreFSaufs.Tpo .deps/StoreFSaufs.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libaufs.la StoreFSaufs.lo libtool: link: ar cru .libs/libaufs.a StoreFSaufs.o libtool: link: ranlib .libs/libaufs.a libtool: link: ( cd ".libs" && rm -f "libaufs.la" && ln -s "../libaufs.la" "libaufs.la" ) /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Module.lo -MD -MP -MF .deps/Module.Tpo -c -o Module.lo Module.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Module.lo -MD -MP -MF .deps/Module.Tpo -c Module.cc -o Module.o mv -f .deps/Module.Tpo .deps/Module.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libfs.la Module.lo libufs.la libdiskd.la libaufs.la libtool: link: (cd .libs/libfs.lax/libufs.a && ar x "/var/tmp/export/ports/www/squid31/work/squid-3.1.21/src/fs/./.libs/libufs.a") libtool: link: (cd .libs/libfs.lax/libdiskd.a && ar x "/var/tmp/export/ports/www/squid31/work/squid-3.1.21/src/fs/./.libs/libdiskd.a") libtool: link: (cd .libs/libfs.lax/libaufs.a && ar x "/var/tmp/export/ports/www/squid31/work/squid-3.1.21/src/fs/./.libs/libaufs.a") libtool: link: ar cru .libs/libfs.a Module.o .libs/libfs.lax/libufs.a/StoreFSufs.o .libs/libfs.lax/libufs.a/store_dir_ufs.o .libs/libfs.lax/libufs.a/store_io_ufs.o .libs/libfs.lax/libufs.a/ufscommon.o .libs/libfs.lax/libdiskd.a/StoreFSdiskd.o .libs/libfs.lax/libaufs.a/StoreFSaufs.o libtool: link: ranlib .libs/libfs.a libtool: link: rm -fr .libs/libfs.lax libtool: link: ( cd ".libs" && rm -f "libfs.la" && ln -s "../libfs.la" "libfs.la" ) Making all in repl depbase=`echo lru/store_repl_lru.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT lru/store_repl_lru.o -MD -MP -MF $depbase.Tpo -c -o lru/store_repl_lru.o lru/store_repl_lru.cc && mv -f $depbase.Tpo $depbase.Po rm -f liblru.a ar cru liblru.a lru/store_repl_lru.o ranlib liblru.a depbase=`echo heap/store_heap_replacement.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT heap/store_heap_replacement.o -MD -MP -MF $depbase.Tpo -c -o heap/store_heap_replacement.o heap/store_heap_replacement.cc && mv -f $depbase.Tpo $depbase.Po depbase=`echo heap/store_repl_heap.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT heap/store_repl_heap.o -MD -MP -MF $depbase.Tpo -c -o heap/store_repl_heap.o heap/store_repl_heap.cc && mv -f $depbase.Tpo $depbase.Po rm -f libheap.a ar cru libheap.a heap/store_heap_replacement.o heap/store_repl_heap.o ranlib libheap.a Making all in auth /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Config.lo -MD -MP -MF .deps/Config.Tpo -c -o Config.lo Config.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Config.lo -MD -MP -MF .deps/Config.Tpo -c Config.cc -o Config.o mv -f .deps/Config.Tpo .deps/Config.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c -o Scheme.lo Scheme.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c Scheme.cc -o Scheme.o mv -f .deps/Scheme.Tpo .deps/Scheme.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT User.lo -MD -MP -MF .deps/User.Tpo -c -o User.lo User.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT User.lo -MD -MP -MF .deps/User.Tpo -c User.cc -o User.o mv -f .deps/User.Tpo .deps/User.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c -o UserRequest.lo UserRequest.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c UserRequest.cc -o UserRequest.o mv -f .deps/UserRequest.Tpo .deps/UserRequest.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Gadgets.lo -MD -MP -MF .deps/Gadgets.Tpo -c -o Gadgets.lo Gadgets.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Gadgets.lo -MD -MP -MF .deps/Gadgets.Tpo -c Gadgets.cc -o Gadgets.o mv -f .deps/Gadgets.Tpo .deps/Gadgets.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT basicScheme.lo -MD -MP -MF .deps/basicScheme.Tpo -c -o basicScheme.lo `test -f 'basic/basicScheme.cc' || echo './'`basic/basicScheme.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT basicScheme.lo -MD -MP -MF .deps/basicScheme.Tpo -c basic/basicScheme.cc -o basicScheme.o mv -f .deps/basicScheme.Tpo .deps/basicScheme.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT auth_basic.lo -MD -MP -MF .deps/auth_basic.Tpo -c -o auth_basic.lo `test -f 'basic/auth_basic.cc' || echo './'`basic/auth_basic.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT auth_basic.lo -MD -MP -MF .deps/auth_basic.Tpo -c basic/auth_basic.cc -o auth_basic.o mv -f .deps/auth_basic.Tpo .deps/auth_basic.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libbasic.la basicScheme.lo auth_basic.lo libtool: link: ar cru .libs/libbasic.a basicScheme.o auth_basic.o libtool: link: ranlib .libs/libbasic.a libtool: link: ( cd ".libs" && rm -f "libbasic.la" && ln -s "../libbasic.la" "libbasic.la" ) /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT digestScheme.lo -MD -MP -MF .deps/digestScheme.Tpo -c -o digestScheme.lo `test -f 'digest/digestScheme.cc' || echo './'`digest/digestScheme.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT digestScheme.lo -MD -MP -MF .deps/digestScheme.Tpo -c digest/digestScheme.cc -o digestScheme.o mv -f .deps/digestScheme.Tpo .deps/digestScheme.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT auth_digest.lo -MD -MP -MF .deps/auth_digest.Tpo -c -o auth_digest.lo `test -f 'digest/auth_digest.cc' || echo './'`digest/auth_digest.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT auth_digest.lo -MD -MP -MF .deps/auth_digest.Tpo -c digest/auth_digest.cc -o auth_digest.o mv -f .deps/auth_digest.Tpo .deps/auth_digest.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libdigest.la digestScheme.lo auth_digest.lo libtool: link: ar cru .libs/libdigest.a digestScheme.o auth_digest.o libtool: link: ranlib .libs/libdigest.a libtool: link: ( cd ".libs" && rm -f "libdigest.la" && ln -s "../libdigest.la" "libdigest.la" ) /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT negotiateScheme.lo -MD -MP -MF .deps/negotiateScheme.Tpo -c -o negotiateScheme.lo `test -f 'negotiate/negotiateScheme.cc' || echo './'`negotiate/negotiateScheme.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT negotiateScheme.lo -MD -MP -MF .deps/negotiateScheme.Tpo -c negotiate/negotiateScheme.cc -o negotiateScheme.o mv -f .deps/negotiateScheme.Tpo .deps/negotiateScheme.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT auth_negotiate.lo -MD -MP -MF .deps/auth_negotiate.Tpo -c -o auth_negotiate.lo `test -f 'negotiate/auth_negotiate.cc' || echo './'`negotiate/auth_negotiate.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT auth_negotiate.lo -MD -MP -MF .deps/auth_negotiate.Tpo -c negotiate/auth_negotiate.cc -o auth_negotiate.o mv -f .deps/auth_negotiate.Tpo .deps/auth_negotiate.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libnegotiate.la negotiateScheme.lo auth_negotiate.lo libtool: link: ar cru .libs/libnegotiate.a negotiateScheme.o auth_negotiate.o libtool: link: ranlib .libs/libnegotiate.a libtool: link: ( cd ".libs" && rm -f "libnegotiate.la" && ln -s "../libnegotiate.la" "libnegotiate.la" ) /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT ntlmScheme.lo -MD -MP -MF .deps/ntlmScheme.Tpo -c -o ntlmScheme.lo `test -f 'ntlm/ntlmScheme.cc' || echo './'`ntlm/ntlmScheme.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT ntlmScheme.lo -MD -MP -MF .deps/ntlmScheme.Tpo -c ntlm/ntlmScheme.cc -o ntlmScheme.o mv -f .deps/ntlmScheme.Tpo .deps/ntlmScheme.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT auth_ntlm.lo -MD -MP -MF .deps/auth_ntlm.Tpo -c -o auth_ntlm.lo `test -f 'ntlm/auth_ntlm.cc' || echo './'`ntlm/auth_ntlm.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT auth_ntlm.lo -MD -MP -MF .deps/auth_ntlm.Tpo -c ntlm/auth_ntlm.cc -o auth_ntlm.o mv -f .deps/auth_ntlm.Tpo .deps/auth_ntlm.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libntlm.la ntlmScheme.lo auth_ntlm.lo libtool: link: ar cru .libs/libntlm.a ntlmScheme.o auth_ntlm.o libtool: link: ranlib .libs/libntlm.a libtool: link: ( cd ".libs" && rm -f "libntlm.la" && ln -s "../libntlm.la" "libntlm.la" ) /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libauth.la Config.lo Scheme.lo User.lo UserRequest.lo Gadgets.lo libbasic.la libdigest.la libnegotiate.la libntlm.la libtool: link: (cd .libs/libauth.lax/libbasic.a && ar x "/var/tmp/export/ports/www/squid31/work/squid-3.1.21/src/auth/./.libs/libbasic.a") libtool: link: (cd .libs/libauth.lax/libdigest.a && ar x "/var/tmp/export/ports/www/squid31/work/squid-3.1.21/src/auth/./.libs/libdigest.a") libtool: link: (cd .libs/libauth.lax/libnegotiate.a && ar x "/var/tmp/export/ports/www/squid31/work/squid-3.1.21/src/auth/./.libs/libnegotiate.a") libtool: link: (cd .libs/libauth.lax/libntlm.a && ar x "/var/tmp/export/ports/www/squid31/work/squid-3.1.21/src/auth/./.libs/libntlm.a") libtool: link: ar cru .libs/libauth.a Config.o Scheme.o User.o UserRequest.o Gadgets.o .libs/libauth.lax/libbasic.a/auth_basic.o .libs/libauth.lax/libbasic.a/basicScheme.o .libs/libauth.lax/libdigest.a/auth_digest.o .libs/libauth.lax/libdigest.a/digestScheme.o .libs/libauth.lax/libnegotiate.a/auth_negotiate.o .libs/libauth.lax/libnegotiate.a/negotiateScheme.o .libs/libauth.lax/libntlm.a/auth_ntlm.o .libs/libauth.lax/libntlm.a/ntlmScheme.o libtool: link: ranlib .libs/libauth.a libtool: link: rm -fr .libs/libauth.lax libtool: link: ( cd ".libs" && rm -f "libauth.la" && ln -s "../libauth.la" "libauth.la" ) /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Acl.lo -MD -MP -MF .deps/Acl.Tpo -c -o Acl.lo Acl.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Acl.lo -MD -MP -MF .deps/Acl.Tpo -c Acl.cc -o Acl.o mv -f .deps/Acl.Tpo .deps/Acl.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT AclMaxUserIp.lo -MD -MP -MF .deps/AclMaxUserIp.Tpo -c -o AclMaxUserIp.lo AclMaxUserIp.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT AclMaxUserIp.lo -MD -MP -MF .deps/AclMaxUserIp.Tpo -c AclMaxUserIp.cc -o AclMaxUserIp.o mv -f .deps/AclMaxUserIp.Tpo .deps/AclMaxUserIp.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT AclProxyAuth.lo -MD -MP -MF .deps/AclProxyAuth.Tpo -c -o AclProxyAuth.lo AclProxyAuth.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I. -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT AclProxyAuth.lo -MD -MP -MF .deps/AclProxyAuth.Tpo -c AclProxyAuth.cc -o AclProxyAuth.o mv -f .deps/AclProxyAuth.Tpo .deps/AclProxyAuth.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libacls.la Acl.lo AclMaxUserIp.lo AclProxyAuth.lo libtool: link: ar cru .libs/libacls.a Acl.o AclMaxUserIp.o AclProxyAuth.o libtool: link: ranlib .libs/libacls.a libtool: link: ( cd ".libs" && rm -f "libacls.la" && ln -s "../libacls.la" "libacls.la" ) Making all in ip /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT IpAddress.lo -MD -MP -MF .deps/IpAddress.Tpo -c -o IpAddress.lo IpAddress.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT IpAddress.lo -MD -MP -MF .deps/IpAddress.Tpo -c IpAddress.cc -o IpAddress.o mv -f .deps/IpAddress.Tpo .deps/IpAddress.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT IpIntercept.lo -MD -MP -MF .deps/IpIntercept.Tpo -c -o IpIntercept.lo IpIntercept.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT IpIntercept.lo -MD -MP -MF .deps/IpIntercept.Tpo -c IpIntercept.cc -o IpIntercept.o mv -f .deps/IpIntercept.Tpo .deps/IpIntercept.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT QosConfig.lo -MD -MP -MF .deps/QosConfig.Tpo -c -o QosConfig.lo QosConfig.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT QosConfig.lo -MD -MP -MF .deps/QosConfig.Tpo -c QosConfig.cc -o QosConfig.o mv -f .deps/QosConfig.Tpo .deps/QosConfig.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT tools.lo -MD -MP -MF .deps/tools.Tpo -c -o tools.lo tools.cc libtool: compile: c++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT tools.lo -MD -MP -MF .deps/tools.Tpo -c tools.cc -o tools.o mv -f .deps/tools.Tpo .deps/tools.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libip.la IpAddress.lo IpIntercept.lo QosConfig.lo tools.lo libtool: link: ar cru .libs/libip.a IpAddress.o IpIntercept.o QosConfig.o tools.o libtool: link: ranlib .libs/libip.a libtool: link: ( cd ".libs" && rm -f "libip.la" && ln -s "../libip.la" "libip.la" ) Making all in icmp /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Icmp.lo -MD -MP -MF .deps/Icmp.Tpo -c -o Icmp.lo Icmp.cc libtool: compile: c++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Icmp.lo -MD -MP -MF .deps/Icmp.Tpo -c Icmp.cc -o Icmp.o mv -f .deps/Icmp.Tpo .deps/Icmp.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libicmp-core.la Icmp.lo libtool: link: ar cru .libs/libicmp-core.a Icmp.o libtool: link: ranlib .libs/libicmp-core.a libtool: link: ( cd ".libs" && rm -f "libicmp-core.la" && ln -s "../libicmp-core.la" "libicmp-core.la" ) /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT IcmpSquid.lo -MD -MP -MF .deps/IcmpSquid.Tpo -c -o IcmpSquid.lo IcmpSquid.cc libtool: compile: c++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT IcmpSquid.lo -MD -MP -MF .deps/IcmpSquid.Tpo -c IcmpSquid.cc -o IcmpSquid.o mv -f .deps/IcmpSquid.Tpo .deps/IcmpSquid.Plo /bin/sh ../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT net_db.lo -MD -MP -MF .deps/net_db.Tpo -c -o net_db.lo net_db.cc libtool: compile: c++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT net_db.lo -MD -MP -MF .deps/net_db.Tpo -c net_db.cc -o net_db.o mv -f .deps/net_db.Tpo .deps/net_db.Plo /bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -rpath=/usr/local/lib -L/usr/local/lib -o libicmp.la IcmpSquid.lo net_db.lo libtool: link: ar cru .libs/libicmp.a IcmpSquid.o net_db.o libtool: link: ranlib .libs/libicmp.a libtool: link: ( cd ".libs" && rm -f "libicmp.la" && ln -s "../libicmp.la" "libicmp.la" ) c++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT IcmpPinger.o -MD -MP -MF .deps/IcmpPinger.Tpo -c -o IcmpPinger.o IcmpPinger.cc mv -f .deps/IcmpPinger.Tpo .deps/IcmpPinger.Po c++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../.. -I../../include -I../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -Os -O2 -pipe -march=pentium -mtune=pentium -I/usr/local/include -fno-strict-aliasing -MT Icmp4.o -MD -MP -MF .deps/Icmp4.Tpo -c -o Icmp4.o Icmp4.cc Icmp4.cc: In member function 'virtual void Icmp4::SendEcho(IpAddress&, int, const char*, int)': Icmp4.cc:96: error: invalid application of 'sizeof' to incomplete type 'icmp' Icmp4.cc:100: error: invalid application of 'sizeof' to incomplete type 'icmp' Icmp4.cc:103: error: invalid application of 'sizeof' to incomplete type 'icmp' Icmp4.cc:116: error: invalid use of incomplete type 'struct icmp' Icmp4.cc:96: error: forward declaration of 'struct icmp' Icmp4.cc:117: error: invalid use of incomplete type 'struct icmp' Icmp4.cc:96: error: forward declaration of 'struct icmp' Icmp4.cc:118: error: invalid use of incomplete type 'struct icmp' Icmp4.cc:96: error: forward declaration of 'struct icmp' Icmp4.cc:119: error: invalid use of incomplete type 'struct icmp' Icmp4.cc:96: error: forward declaration of 'struct icmp' Icmp4.cc:120: error: invalid use of incomplete type 'struct icmp' Icmp4.cc:96: error: forward declaration of 'struct icmp' Icmp4.cc:123: error: invalid use of incomplete type 'struct icmp' Icmp4.cc:96: error: forward declaration of 'struct icmp' Icmp4.cc:138: error: invalid use of incomplete type 'struct icmp' Icmp4.cc:96: error: forward declaration of 'struct icmp' Icmp4.cc:142: error: invalid application of 'sizeof' to incomplete type 'icmp' Icmp4.cc: In member function 'virtual void Icmp4::Recv()': Icmp4.cc:179: error: invalid application of 'sizeof' to incomplete type 'icmp' Icmp4.cc:184: error: invalid application of 'sizeof' to incomplete type 'icmp' Icmp4.cc:223: error: invalid use of incomplete type 'struct icmp' Icmp4.cc:167: error: forward declaration of 'struct icmp' Icmp4.cc:226: error: invalid use of incomplete type 'struct icmp' Icmp4.cc:167: error: forward declaration of 'struct icmp' Icmp4.cc:229: error: invalid use of incomplete type 'struct icmp' Icmp4.cc:167: error: forward declaration of 'struct icmp' Icmp4.cc:239: error: invalid application of 'sizeof' to incomplete type 'icmp' Icmp4.cc:241: error: invalid application of 'sizeof' to incomplete type 'icmp' Icmp4.cc:243: error: invalid use of incomplete type 'struct icmp' Icmp4.cc:167: error: forward declaration of 'struct icmp' Icmp4.cc:243: error: invalid use of incomplete type 'struct icmp' Icmp4.cc:167: error: forward declaration of 'struct icmp' *** [Icmp4.o] Error code 1 Stop in /var/tmp/export/ports/www/squid31/work/squid-3.1.21/src/icmp. *** [all-recursive] Error code 1 Stop in /var/tmp/export/ports/www/squid31/work/squid-3.1.21/src. *** [all] Error code 1 Stop in /var/tmp/export/ports/www/squid31/work/squid-3.1.21/src. *** [all-recursive] Error code 1 Stop in /var/tmp/export/ports/www/squid31/work/squid-3.1.21. *** [do-build] Error code 1 Stop in /export/ports/www/squid31. *** [build] Error code 1 Stop in /export/ports/www/squid31. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade20120928-93317-1rqb739-0 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=squid-3.1.20 UPGRADE_PORT_VER=3.1.20 make ** Fix the problem and try again. ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! www/squid31 (squid-3.1.20) (unknown build error) [root@cakebox ~]# exit Script done on Fri Sep 28 10:59:44 2012 --- build.log ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 10:40:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A382106566B; Fri, 28 Sep 2012 10:40:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F2308FC16; Fri, 28 Sep 2012 10:40:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SAeHFn014152; Fri, 28 Sep 2012 10:40:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SAeH0k014143; Fri, 28 Sep 2012 10:40:17 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 10:40:17 GMT Message-Id: <201209281040.q8SAeH0k014143@freefall.freebsd.org> To: freebsd@nagilum.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172139: www/squid31 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 10:40:17 -0000 Synopsis: www/squid31 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Sep 28 10:40:16 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172139 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 10:50:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8227F10656D4 for ; Fri, 28 Sep 2012 10:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 540BC8FC0C for ; Fri, 28 Sep 2012 10:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SAoAwV021277 for ; Fri, 28 Sep 2012 10:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SAoAGN021267; Fri, 28 Sep 2012 10:50:10 GMT (envelope-from gnats) Date: Fri, 28 Sep 2012 10:50:10 GMT Message-Id: <201209281050.q8SAoAGN021267@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/172139: www/squid31 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 10:50:10 -0000 The following reply was made to PR ports/172139; it has been noted by GNATS. From: Edwin Groothuis To: tmseck@web.de Cc: bug-followup@FreeBSD.org Subject: Re: ports/172139: www/squid31 Date: Fri, 28 Sep 2012 10:40:14 UT Maintainer of www/squid31, Please note that PR ports/172139 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/172139 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 11:10:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 220451065672 for ; Fri, 28 Sep 2012 11:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EDC558FC16 for ; Fri, 28 Sep 2012 11:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SBA6AH037837 for ; Fri, 28 Sep 2012 11:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SBA6o1037836; Fri, 28 Sep 2012 11:10:06 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 11:10:06 GMT Resent-Message-Id: <201209281110.q8SBA6o1037836@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Luis López Solé Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BED98106566B for ; Fri, 28 Sep 2012 11:09:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id A02EF8FC0C for ; Fri, 28 Sep 2012 11:09:36 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SB9aOo038125 for ; Fri, 28 Sep 2012 11:09:36 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8SB9aZ2038124; Fri, 28 Sep 2012 11:09:36 GMT (envelope-from nobody) Message-Id: <201209281109.q8SB9aZ2038124@red.freebsd.org> Date: Fri, 28 Sep 2012 11:09:36 GMT From: Luis López Solé To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172140: The /usr/ports/multimedia/pvr250 port is broken for FreeBSD 9 systems more than __FreeBSD_version = 900045 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 11:10:07 -0000 >Number: 172140 >Category: ports >Synopsis: The /usr/ports/multimedia/pvr250 port is broken for FreeBSD 9 systems more than __FreeBSD_version = 900045 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 11:10:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Luis López Solé >Release: FreeBSD 9.1-RC1 >Organization: n/a >Environment: FreeBSD workstation 9.1-RC1 FreeBSD 9.1-RC1 #0: Tue Aug 14 04:25:06 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The /usr/ports/multimedia/pvr250 port is broken for FreeBSD 9 systems more than __FreeBSD_version = 900045 If you try to build /usr/ports/multimedia/pvr250 in a system with a __FreeBSD_version >= 900045 you an see the following error: [...] cc1: warnings being treated as errors /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: In function 'cxm_encoder_dma_done': /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1397: warning: implicit declaration of function 'psignal' /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1397: warning: nested extern declaration of 'psignal' [-Wnested-externs] *** [cxm.o] Error code 1 Stop in /usr/ports/multimedia/pvr250/work/modules/cxm/cxm. *** [all] Error code 1 Stop in /usr/ports/multimedia/pvr250/work/modules/cxm. *** [do-build] Error code 1 Stop in /usr/ports/multimedia/pvr250. >How-To-Repeat: In a FreeBSD 9 (>=900045) system: # cd /usr/ports/multimedia/pvr250 && make install >Fix: The psignal function in has been changed by kern_psignal as you can see in http://svnweb.FreeBSD.org/base/head/sys/kern/kern_context.c?revision=225617&view=markup Fri Sep 16 13:58:51 2011 UTC (12 months, 1 week ago) by kmacy File MIME type: text/plain File size: 3653 byte(s) In order to maximize the re-usability of kernel code in user space this patch modifies makesyscalls.sh to prefix all of the non-compatibility calls (e.g. not linux_, freebsd32_) with sys_ and updates the kernel entry points and all places in the code that use them. It also fixes an additional name space collision between the kernel function psignal and the libc function of the same name by renaming the kernel psignal kern_psignal(). By introducing this change now we will ease future MFCs that change syscalls. Reviewed by: rwatson Approved by: re (bz) The following patch patch_to_build_pvr250_in_FreeBSD-9.txt made with #diff -u dev/cxm/cxm.c.orig dev/cxm/cxm.c > patch_to_build_pvr250_in_FreeBSD-9.txt fix the problem Patch attached with submission follows: --- dev/cxm/cxm.c.orig 2012-09-28 10:59:33.000000000 +0200 +++ dev/cxm/cxm.c 2012-09-28 11:13:03.000000000 +0200 @@ -1394,7 +1394,11 @@ /* signal anyone requesting notification */ if (sc->enc_proc) - psignal (sc->enc_proc, sc->enc_signal); +#if __FreeBSD_version >= 900045 + kern_psignal (sc->enc_proc, sc->enc_signal); +#else + psignal (sc->enc_proc, sc->enc_signal); +#endif /* wakeup anyone waiting for data */ wakeup(&sc->enc_pool.read); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 11:10:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C470E106566C; Fri, 28 Sep 2012 11:10:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 958278FC08; Fri, 28 Sep 2012 11:10:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SBAH33040172; Fri, 28 Sep 2012 11:10:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SBAHro040161; Fri, 28 Sep 2012 11:10:17 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 11:10:17 GMT Message-Id: <201209281110.q8SBAHro040161@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172140: The /usr/ports/multimedia/pvr250 port is broken for FreeBSD 9 systems more than __FreeBSD_version = 900045 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 11:10:18 -0000 Synopsis: The /usr/ports/multimedia/pvr250 port is broken for FreeBSD 9 systems more than __FreeBSD_version = 900045 Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Fri Sep 28 11:10:17 UTC 2012 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172140 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 11:10:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 718DE106564A; Fri, 28 Sep 2012 11:10:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 435588FC0C; Fri, 28 Sep 2012 11:10:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SBAMWn041145; Fri, 28 Sep 2012 11:10:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SBAM8L041137; Fri, 28 Sep 2012 11:10:22 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 11:10:22 GMT Message-Id: <201209281110.q8SBAM8L041137@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, edwin@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172140: The /usr/ports/multimedia/pvr250 port is broken for FreeBSD 9 systems more than __FreeBSD_version = 900045 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 11:10:22 -0000 Synopsis: The /usr/ports/multimedia/pvr250 port is broken for FreeBSD 9 systems more than __FreeBSD_version = 900045 Responsible-Changed-From-To: freebsd-ports-bugs->edwin Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 28 11:10:21 UTC 2012 Responsible-Changed-Why: edwin@mavetju.org => edwin@ (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172140 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 11:30:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 16795106566C for ; Fri, 28 Sep 2012 11:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DDBD78FC12 for ; Fri, 28 Sep 2012 11:30:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SBU4p7056231 for ; Fri, 28 Sep 2012 11:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SBU4tj056223; Fri, 28 Sep 2012 11:30:04 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 11:30:04 GMT Resent-Message-Id: <201209281130.q8SBU4tj056223@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 08DF51065673 for ; Fri, 28 Sep 2012 11:24:11 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 7D0CB8FC12 for ; Fri, 28 Sep 2012 11:24:10 +0000 (UTC) Received: (qmail invoked by alias); 28 Sep 2012 11:24:08 -0000 Received: from 201-230.4-85.cust.bluewin.ch (EHLO something.email.com) [85.4.230.201] by mail.gmx.net (mp002) with SMTP; 28 Sep 2012 13:24:08 +0200 Received: by something.email.com (sSMTP sendmail emulation); Fri, 28 Sep 2012 13:24:07 +0200 Message-Id: <20120928112411.08DF51065673@hub.freebsd.org> Date: Fri, 28 Sep 2012 13:24:07 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: sergey.dyatko@gmail.com Subject: ports/172141: [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, check for Wine on !i386 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 11:30:05 -0000 >Number: 172141 >Category: ports >Synopsis: [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, check for Wine on !i386 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 11:30:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Makefile changed +LICENSE= GPLv3 + wine:${PORTSDIR}/emulators/wine-devel \ OptionsNG +SUB_FILES= pkg-message +pre-build: +.if !exists(${LOCALBASE}/bin/wine) && ${ARCH} != "i386" - Update to 0.121 Added file(s): - files/pkg-message.in Removed file(s): - pkg-message Port maintainer (sergey.dyatko@gmail.com) is cc'd. Generated and tested manually, tested with port test and with RedPorts (all RELEASES, CLANG), sent with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: portlint -A WARN: Makefile: for new port, make $FreeBSD$ tag in comment section empty, to make SVN happy. 0 fatal errors and 1 warning found. Build log RedPorts https://redports.org/buildarchive/20120928102716-23012/ >Fix: --- q4wine-0.121.patch begins here --- diff -ruN --exclude=CVS /usr/ports/deskutils/q4wine/Makefile ./Makefile --- /usr/ports/deskutils/q4wine/Makefile 2012-06-06 08:43:27.000000000 +0200 +++ ./Makefile 2012-09-28 12:34:28.000000000 +0200 @@ -5,43 +5,64 @@ # $FreeBSD: ports/deskutils/q4wine/Makefile,v 1.12 2012/06/06 06:43:27 miwi Exp $ PORTNAME= q4wine -PORTVERSION= 0.120 -PORTREVISION= 1 +PORTVERSION= 0.121 CATEGORIES= deskutils emulators MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}%20${PORTVERSION} MAINTAINER= sergey.dyatko@gmail.com COMMENT= QT4 front-end for WINE +LICENSE= GPLv3 + BUILD_DEPENDS= icotool:${PORTSDIR}/graphics/icoutils RUN_DEPENDS= sudo:${PORTSDIR}/security/sudo \ - wine:${PORTSDIR}/emulators/wine \ + wine:${PORTSDIR}/emulators/wine-devel \ wget:${PORTSDIR}/ftp/wget \ cabextract:${PORTSDIR}/archivers/cabextract \ icotool:${PORTSDIR}/graphics/icoutils +USE_CMAKE= yes +CMAKE_ARGS+= -DMANPAGE_ENTRY_PATH=${MANPREFIX}/man/ +USE_LDCONFIG= yes USE_QT4= qmake_build rcc_build moc_build uic_build \ linguist_build corelib gui sql network -ONLY_FOR_ARCHS= i386 -ONLY_FOR_ARCHS_REASON= depends on wine which is only available for i386 - MAN1= q4wine-cli.1 q4wine-helper.1 q4wine.1 -USE_CMAKE= yes -CMAKE_ARGS+= -DMANPAGE_ENTRY_PATH=${MANPREFIX}/man/ +SUB_FILES= pkg-message + +OPTIONS_DEFINE= DBUS -OPTIONS= DBUS "Enable DBus notification support" on +OPTIONS_DEFAULT= DBUS .include -.if defined(WITHOUT_DBUS) -CMAKE_ARGS+= -DWITH_DBUS:BOOL=OFF -.else +.if ${PORT_OPTIONS:MDBUS} USE_QT4+= dbus +.else +CMAKE_ARGS+= -DWITH_DBUS:BOOL=OFF +.endif + +pre-build: +.if !exists(${LOCALBASE}/bin/wine) && ${ARCH} != "i386" + @${ECHO_MSG} + @${ECHO_MSG} "Depends on Wine Port which is only available for i386" + @${ECHO_MSG} + @${ECHO_MSG} " http://wiki.freebsd.org/Wine" + @${ECHO_MSG} + @${ECHO_MSG} "FreeBSD/amd64 works with Wine 32bit binary from" + @${ECHO_MSG} + @${ECHO_MSG} " http://www.mediafire.com/wine_fbsd64" + @${ECHO_MSG} + exit 1 .endif post-install: @-update-desktop-database +# pkg-message + @${ECHO_CMD} + @${CAT} ${PKGMESSAGE} + @${ECHO_CMD} + .include diff -ruN --exclude=CVS /usr/ports/deskutils/q4wine/distinfo ./distinfo --- /usr/ports/deskutils/q4wine/distinfo 2011-03-20 13:48:39.000000000 +0100 +++ ./distinfo 2012-09-26 13:18:37.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (q4wine-0.120.tar.gz) = 9db9cc021722403709e6f2bb81318e285cfad9eba24d1343532b0fa32f823996 -SIZE (q4wine-0.120.tar.gz) = 836328 +SHA256 (q4wine-0.121.tar.gz) = 3d4905132e44cfdb13e2f297efae6750dabb7240a3df2d1863ad4bade9cd7b3b +SIZE (q4wine-0.121.tar.gz) = 884771 diff -ruN --exclude=CVS /usr/ports/deskutils/q4wine/files/pkg-message.in ./files/pkg-message.in --- /usr/ports/deskutils/q4wine/files/pkg-message.in 1970-01-01 01:00:00.000000000 +0100 +++ ./files/pkg-message.in 2012-09-28 12:02:56.000000000 +0200 @@ -0,0 +1,17 @@ +################################################################################ + +This programm will attempt to obtain some system information by accessing files +in procfs. You must mount procfs filesystem for this to work correctly. +This can be accomplished by adding the following line to your /etc/fstab file: + +# Device Mountpoint FStype Options Dump Pass# +proc /proc procfs rw 0 0 + +and then, as root, executing the command: + +mount /proc + +Also you need passwordless sudo for mdconfig, mount_cd9660, umount commands for +work with ISO images + +################################################################################ diff -ruN --exclude=CVS /usr/ports/deskutils/q4wine/pkg-message ./pkg-message --- /usr/ports/deskutils/q4wine/pkg-message 2010-10-29 00:24:57.000000000 +0200 +++ ./pkg-message 1970-01-01 01:00:00.000000000 +0100 @@ -1,17 +0,0 @@ -################################################################################ - -This programm will attempt to obtain some system information by accessing files -in procfs. You must mount procfs filesystem for this to work correctly. This can -be accomplished by adding the following line to your /etc/fstab file: - -# Device Mountpoint FStype Options Dump Pass# -proc /proc procfs rw 0 0 - -and then, as root, executing the command: - -mount /proc - -Also you need passwordless sudo for mdconfig, mount_cd9660, umount commands for -work with ISO images - -################################################################################ diff -ruN --exclude=CVS /usr/ports/deskutils/q4wine/pkg-plist ./pkg-plist --- /usr/ports/deskutils/q4wine/pkg-plist 2010-10-29 00:24:57.000000000 +0200 +++ ./pkg-plist 2012-09-26 13:34:54.000000000 +0200 @@ -5,9 +5,12 @@ share/applications/q4wine.desktop share/pixmaps/q4wine.png %%DATADIR%%/i18n/cs_cz.qm +%%DATADIR%%/i18n/de_de.qm %%DATADIR%%/i18n/en_us.qm %%DATADIR%%/i18n/es_es.qm +%%DATADIR%%/i18n/he_il.qm %%DATADIR%%/i18n/it_it.qm +%%DATADIR%%/i18n/pl_pl.qm %%DATADIR%%/i18n/pt_br.qm %%DATADIR%%/i18n/ru_ru.qm %%DATADIR%%/i18n/uk_ua.qm --- q4wine-0.121.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 11:30:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 937571065670 for ; Fri, 28 Sep 2012 11:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 67F268FC16 for ; Fri, 28 Sep 2012 11:30:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SBU547056266 for ; Fri, 28 Sep 2012 11:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SBU5QH056263; Fri, 28 Sep 2012 11:30:05 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 11:30:05 GMT Resent-Message-Id: <201209281130.q8SBU5QH056263@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 267A6106566C for ; Fri, 28 Sep 2012 11:24:22 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 9C0078FC14 for ; Fri, 28 Sep 2012 11:24:21 +0000 (UTC) Received: (qmail invoked by alias); 28 Sep 2012 11:24:19 -0000 Received: from 201-230.4-85.cust.bluewin.ch (EHLO something.email.com) [85.4.230.201] by mail.gmx.net (mp010) with SMTP; 28 Sep 2012 13:24:19 +0200 Received: by something.email.com (sSMTP sendmail emulation); Fri, 28 Sep 2012 13:24:18 +0200 Message-Id: <20120928112422.267A6106566C@hub.freebsd.org> Date: Fri, 28 Sep 2012 13:24:18 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172142: [NEW PORT] emulators/swine: QT4 Graphical Wine frontend X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 11:30:05 -0000 >Number: 172142 >Category: ports >Synopsis: [NEW PORT] emulators/swine: QT4 Graphical Wine frontend >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 11:30:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Swine is a graphical wine frontend, that makes it easy to install and run Windows software on Linux systems. Swine uses a modern QT4 interface to offer most of the Wine command-line tools to users. WWW: http://www.swine-tool.de/ Generated and tested manually, tested with port test and with RedPorts (all RELEASES, CLANG), sent with FreeBSD Port Tools 0.99_6 (mode: new) >How-To-Repeat: portlint -A looks fine. Build log RedPorts https://redports.org/buildarchive/20120928102632-5158/ >Fix: --- .shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # swine # swine/Makefile # swine/pkg-descr # swine/distinfo # swine/files # swine/files/pkg-message.in # swine/pkg-plist # echo c - swine mkdir -p swine > /dev/null 2>&1 echo x - swine/Makefile sed 's/^X//' >swine/Makefile << '5ec2bb2deed935d227c055927aa98ec7' X# $FreeBSD$ X XPORTNAME= swine XPORTVERSION= 1.0.2 XCATEGORIES= emulators deskutils python XMASTER_SITES= GITHUB X XMAINTAINER= nemysis@gmx.ch XCOMMENT= QT4 Graphical Wine frontend X XLICENSE= GPLv2 X XBUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}qt4-core>=${PYQT_VERSION}:${PORTSDIR}/devel/py-qt4-core \ X pyrcc4:${PORTSDIR}/textproc/py-qt4-xml \ X lconvert:${PORTSDIR}/devel/qt4-linguist XRUN_DEPENDS= wine:${PORTSDIR}/emulators/wine-devel \ X xterm:${PORTSDIR}/x11/xterm \ X cabextract:${PORTSDIR}/archivers/cabextract \ X icotool:${PORTSDIR}/graphics/icoutils X XDATADIRLIB= ${PREFIX}/lib/${PORTNAME} X XUSE_GITHUB= yes XGH_ACCOUNT= dswd XGH_PROJECT= Swine XGH_TAGNAME= master XGH_COMMIT= d14b9f0 X XUSE_PYTHON= yes XUSE_GMAKE= yes X XPORTDOCS= README X XSUB_FILES= pkg-message X X.include X Xpost-patch: X @${REINPLACE_CMD} -e 's|/usr|/usr/local|g' ${WRKSRC}/Makefile X @${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|' ${WRKSRC}/version.sh X Xpre-build: X.if !exists(${LOCALBASE}/bin/wine) && ${ARCH} != "i386" X @${ECHO_MSG} X @${ECHO_MSG} "Depends on Wine Port which is only available for i386" X @${ECHO_MSG} X @${ECHO_MSG} " http://wiki.freebsd.org/Wine" X @${ECHO_MSG} X @${ECHO_MSG} "FreeBSD/amd64 works with Wine 32bit binary from" X @${ECHO_MSG} X @${ECHO_MSG} " http://www.mediafire.com/wine_fbsd64" X @${ECHO_MSG} X exit 1 X.endif X Xdo-build: X @(cd ${WRKSRC} ; gmake) X Xdo-install: X ${MKDIR} ${DATADIRLIB} X ${INSTALL_DATA} ${WRKSRC}/resources.qrc ${DATADIRLIB} X ${INSTALL_SCRIPT} ${WRKSRC}/*.py ${DATADIRLIB} X ${LN} -sf ${DATADIRLIB}/${PORTNAME}.py ${PREFIX}/bin/${PORTNAME} X ${LN} -sf ${DATADIRLIB}/${PORTNAME}cli.py ${PREFIX}/bin/${PORTNAME}cli X ${LN} -sf ${DATADIRLIB}/${PORTNAME}run.py ${PREFIX}/bin/${PORTNAME}run X ${MKDIR} ${DATADIR} X @(cd ${WRKSRC} && ${COPYTREE_SHARE} "translations images" ${DATADIR}) X X# Pixmaps and Desktop X ${LN} -sf ${DATADIR}/images/swine32.png ${PREFIX}/share/pixmaps/${PORTNAME}.png X ${MKDIR} ${PREFIX}/share/applications X ${INSTALL_DATA} ${WRKSRC}/resources/*.desktop ${PREFIX}/share/applications/ X X# Documentation X.if ${PORT_OPTIONS:MDOCS} X ${MKDIR} ${DOCSDIR} X ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} X.endif X X# pkg-message X @${ECHO_CMD} X @${CAT} ${PKGMESSAGE} X @${ECHO_CMD} X X.include 5ec2bb2deed935d227c055927aa98ec7 echo x - swine/pkg-descr sed 's/^X//' >swine/pkg-descr << 'f0cd512c8dadddfaf311ee678aac28eb' XSwine is a graphical wine frontend, that makes it easy to install and run XWindows software on Linux systems. Swine uses a modern QT4 interface to offer Xmost of the Wine command-line tools to users. X XWWW: http://www.swine-tool.de/ f0cd512c8dadddfaf311ee678aac28eb echo x - swine/distinfo sed 's/^X//' >swine/distinfo << '7c88e659758cde99629ae623ef5a247a' XSHA256 (swine-1.0.2.tar.gz) = 938aa8f261d6f566da2fd5a75c19685a853d8dec3f1c258746cb4f2ca0b564fc XSIZE (swine-1.0.2.tar.gz) = 203558 7c88e659758cde99629ae623ef5a247a echo c - swine/files mkdir -p swine/files > /dev/null 2>&1 echo x - swine/files/pkg-message.in sed 's/^X//' >swine/files/pkg-message.in << '389c9b4c57a84de88d8d807ce2b249db' X################################################################################ X XThis programm will attempt to obtain some system information by accessing files Xin procfs. You must mount procfs filesystem for this to work correctly. XThis can be accomplished by adding the following line to your /etc/fstab file: X X# Device Mountpoint FStype Options Dump Pass# Xproc /proc procfs rw 0 0 X Xand then, as root, executing the command: X Xmount /proc X X################################################################################ 389c9b4c57a84de88d8d807ce2b249db echo x - swine/pkg-plist sed 's/^X//' >swine/pkg-plist << 'd0dbadc1b69e573ca5a6e0f5a1f27d0a' Xbin/swine Xbin/swinecli Xbin/swinerun Xlib/swine/AboutDialog.py Xlib/swine/IconDialog.py Xlib/swine/MainWindow.py Xlib/swine/ProgramDialog.py Xlib/swine/RunnerDialog.py Xlib/swine/Settings.py Xlib/swine/ShortcutImport.py Xlib/swine/SlotSettings.py Xlib/swine/config.py Xlib/swine/icolib.py Xlib/swine/resources.qrc Xlib/swine/resources_rc.py Xlib/swine/shortcutlib.py Xlib/swine/swine.py Xlib/swine/swinecli.py Xlib/swine/swinelib.py Xlib/swine/swinerun.py Xlib/swine/winetricks.py Xshare/applications/swine-extensions.desktop Xshare/applications/swine.desktop Xshare/pixmaps/swine.png X%%DATADIR%%/images/add.png X%%DATADIR%%/images/application.png X%%DATADIR%%/images/application_add.png X%%DATADIR%%/images/application_delete.png X%%DATADIR%%/images/application_edit.png X%%DATADIR%%/images/application_form_magnify.png X%%DATADIR%%/images/application_lightning.png X%%DATADIR%%/images/application_xp_terminal.png X%%DATADIR%%/images/arrow_divide.png X%%DATADIR%%/images/arrow_refresh.png X%%DATADIR%%/images/cog.png X%%DATADIR%%/images/computer.png X%%DATADIR%%/images/computer_edit.png X%%DATADIR%%/images/cross.png X%%DATADIR%%/images/document-open-folder.png X%%DATADIR%%/images/document-open.png X%%DATADIR%%/images/drive_add.png X%%DATADIR%%/images/drive_cd.png X%%DATADIR%%/images/drive_delete.png X%%DATADIR%%/images/drive_magnify.png X%%DATADIR%%/images/drive_rename.png X%%DATADIR%%/images/film.png X%%DATADIR%%/images/film_add.png X%%DATADIR%%/images/find.png X%%DATADIR%%/images/folder.png X%%DATADIR%%/images/folder_explore.png X%%DATADIR%%/images/folder_grey.png X%%DATADIR%%/images/font.png X%%DATADIR%%/images/font_add.png X%%DATADIR%%/images/information.png X%%DATADIR%%/images/lightning_add.png X%%DATADIR%%/images/lightning_delete.png X%%DATADIR%%/images/package_add.png X%%DATADIR%%/images/package_go.png X%%DATADIR%%/images/pencil.png X%%DATADIR%%/images/pencil_add.png X%%DATADIR%%/images/plugin.png X%%DATADIR%%/images/plugin_add.png X%%DATADIR%%/images/script_gear.png X%%DATADIR%%/images/script_save.png X%%DATADIR%%/images/shape_flip_vertical.png X%%DATADIR%%/images/swine32.png X%%DATADIR%%/images/textfield_rename.png X%%DATADIR%%/images/wabi.png X%%DATADIR%%/images/wine.png X%%DATADIR%%/images/world.png X%%DATADIR%%/images/world_add.png X%%DATADIR%%/images/world_go.png X%%DATADIR%%/images/wrench.png X%%DATADIR%%/images/wrench_orange.png X%%DATADIR%%/translations/de.qm X%%DATADIR%%/translations/en.qm X%%DATADIR%%/translations/es.qm X%%DATADIR%%/translations/fr.qm X%%DATADIR%%/translations/he.qm X@dirrm %%DATADIR%%/translations X@dirrm %%DATADIR%%/images X@dirrm %%DATADIR%% X@dirrmtry share/applications X@dirrm lib/swine d0dbadc1b69e573ca5a6e0f5a1f27d0a exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 11:30:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50ED7106566B for ; Fri, 28 Sep 2012 11:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1DC468FC19 for ; Fri, 28 Sep 2012 11:30:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SBU5S8056343 for ; Fri, 28 Sep 2012 11:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SBU5ro056336; Fri, 28 Sep 2012 11:30:05 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 11:30:05 GMT Resent-Message-Id: <201209281130.q8SBU5ro056336@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Anton Shterenlikht Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 39B381065672 for ; Fri, 28 Sep 2012 11:24:55 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.freebsd.org (Postfix) with ESMTP id E92E78FC0C for ; Fri, 28 Sep 2012 11:24:54 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1THYgf-0000pY-Nj for FreeBSD-gnats-submit@freebsd.org; Fri, 28 Sep 2012 12:24:53 +0100 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncsc.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1THYgf-0000f5-8m for FreeBSD-gnats-submit@freebsd.org; Fri, 28 Sep 2012 12:24:53 +0100 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5) with ESMTP id q8SBOq1O007481 for ; Fri, 28 Sep 2012 12:24:52 +0100 (BST) (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5/Submit) id q8SBOq3i007480; Fri, 28 Sep 2012 12:24:52 +0100 (BST) (envelope-from mexas) Message-Id: <201209281124.q8SBOq3i007480@mech-cluster241.men.bris.ac.uk> Date: Fri, 28 Sep 2012 12:24:52 +0100 (BST) From: Anton Shterenlikht To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172143: updated astro/xearth to build with clang with no warnings X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anton Shterenlikht List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 11:30:06 -0000 >Number: 172143 >Category: ports >Synopsis: updated astro/xearth to build with clang with no warnings >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 11:30:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Anton Shterenlikht >Release: FreeBSD 10.0-CURRENT ia64 >Organization: University of Bristol, UK >Environment: System: FreeBSD mech-cluster241.men.bris.ac.uk 10.0-CURRENT FreeBSD 10.0-CURRENT #6 r237134: Mon Jun 18 09:02:17 BST 2012 root@mech-cluster241.men.bris.ac.uk:/usr/obj/usr/src/sys/TZAV ia64 >Description: astro/xearth is abandoned upstream. Well.. there's just no upstream anymore. So, I made my changes to the source, rather than with patches. The changes: 1. Updated the software's own makefile. 2. Updated 2 src C files, and one documentation file. 3. Build with BSD make, not imake. 4. Removed pkg-plist, and replaced it with PLIST_FILES, PLIST_DIRS. 5. I now distribute the tarball compressed with xz. 6. Bumped PORTVERSION 7. Because PORTVERSION changed, I have to update the number of the tarball. Since the new tarball is only available from my site at this point, modified MASTER_SITES accordingly. >How-To-Repeat: >Fix: Index: Makefile =================================================================== --- Makefile (revision 304979) +++ Makefile (working copy) @@ -1,34 +1,29 @@ -# New ports collection makefile for: xearth -# Date created: 29 October 1994 -# Whom: piero -# +# Created: 29 October 1994 by piero # $FreeBSD$ -# PORTNAME= xearth -PORTVERSION= 1.1 -PORTREVISION= 2 -CATEGORIES= astro geography -MASTER_SITES= XCONTRIB/applications \ - http://seis.bris.ac.uk/~mexas/ \ - LOCAL/simon +PORTVERSION= 1.2 +CATEGORIES= astro +MASTER_SITES= http://seis.bris.ac.uk/~mexas/ MAINTAINER= mexas@bristol.ac.uk COMMENT= Set the root window to the image of earth -BUILD_DEPENDS= imake:${PORTSDIR}/devel/imake - USE_XORG= x11 xext sm ice xt +USE_XZ= yes MAN1= xearth.1 +PLIST_FILES= bin/xearth \ + lib/X11/xearth/freebsd.committers.markers \ + lib/X11/xearth/freebsd.ftp.markers \ + lib/X11/xearth/freebsd.submitters.markers +PLIST_DIRS= lib/X11/xearth -pre-build: - cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${XMKMF} - post-install: + @${INSTALL_PROGRAM} ${WRKSRC}/xearth ${PREFIX}/bin + @${INSTALL_MAN} ${WRKSRC}/xearth.man ${MANPREFIX}/man/man1/xearth.1 @${MKDIR} ${PREFIX}/lib/X11/xearth - @${INSTALL_MAN} ${WRKSRC}/xearth.man ${MANPREFIX}/man/man1/xearth.1 # Copy the list of FreeBSD sites & committers locations -.for marker in freebsd.committers.markers freebsd.submitters.markers freebsd.ftp.markers +.for marker in freebsd.committers.markers freebsd.ftp.markers freebsd.submitters.markers @${INSTALL_DATA} ${FILESDIR}/${marker} ${PREFIX}/lib/X11/xearth .endfor Index: distinfo =================================================================== --- distinfo (revision 304979) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (xearth-1.1.tar.gz) = bcb1407cc35b3f6dd3606b2c6072273b6a912cbd9ed1ae22fb2d26694541309c -SIZE (xearth-1.1.tar.gz) = 157887 +SHA256 (xearth-1.2.tar.xz) = fdbe24111fbb05ef1d554643ae189696a8a7a2c28d69d6be475ad1c39f8b0daf +SIZE (xearth-1.2.tar.xz) = 241816 Index: pkg-descr =================================================================== --- pkg-descr (revision 304979) +++ pkg-descr (working copy) @@ -6,7 +6,9 @@ Xearth can also render directly into PPM and GIF files instead of drawing in the root window. -There are two additional marker files installed in +WWW: http://xearth.org + +There are three additional marker files installed in /usr/local/lib/X11/xearth which specify the locations of various FreeBSD people and places: Index: pkg-plist =================================================================== --- pkg-plist (revision 304979) +++ pkg-plist (working copy) @@ -1,5 +0,0 @@ -bin/xearth -lib/X11/xearth/freebsd.committers.markers -lib/X11/xearth/freebsd.submitters.markers -lib/X11/xearth/freebsd.ftp.markers -@dirrm lib/X11/xearth >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 11:30:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 970121065672; Fri, 28 Sep 2012 11:30:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 55E808FC1A; Fri, 28 Sep 2012 11:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SBUHj6058028; Fri, 28 Sep 2012 11:30:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SBUHDJ058014; Fri, 28 Sep 2012 11:30:17 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 11:30:17 GMT Message-Id: <201209281130.q8SBUHDJ058014@freefall.freebsd.org> To: nemysis@gmx.ch, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172141: [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, check for Wine on !i386 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 11:30:17 -0000 Synopsis: [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, check for Wine on !i386 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Sep 28 11:30:16 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172141 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 11:40:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A8F9106564A for ; Fri, 28 Sep 2012 11:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E80318FC19 for ; Fri, 28 Sep 2012 11:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SBe7c9070118 for ; Fri, 28 Sep 2012 11:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SBe7EG070112; Fri, 28 Sep 2012 11:40:07 GMT (envelope-from gnats) Date: Fri, 28 Sep 2012 11:40:07 GMT Message-Id: <201209281140.q8SBe7EG070112@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/172141: [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, check for Wine on !i386 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 11:40:08 -0000 The following reply was made to PR ports/172141; it has been noted by GNATS. From: Edwin Groothuis To: sergey.dyatko@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/172141: [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, check for Wine on !i386 Date: Fri, 28 Sep 2012 11:30:12 UT Maintainer of deskutils/q4wine, Please note that PR ports/172141 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/172141 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 12:31:58 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C6B0106564A; Fri, 28 Sep 2012 12:31:58 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0F81D8FC12; Fri, 28 Sep 2012 12:31:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SCVvRs023151; Fri, 28 Sep 2012 12:31:57 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SCVvo3023147; Fri, 28 Sep 2012 12:31:57 GMT (envelope-from madpilot) Date: Fri, 28 Sep 2012 12:31:57 GMT Message-Id: <201209281231.q8SCVvo3023147@freefall.freebsd.org> To: madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sylvio@FreeBSD.org From: madpilot@FreeBSD.org Cc: Subject: Re: ports/171635: databases/rrdtool-1.4.7_2 build fails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 12:31:58 -0000 Synopsis: databases/rrdtool-1.4.7_2 build fails Responsible-Changed-From-To: freebsd-ports-bugs->sylvio Responsible-Changed-By: madpilot Responsible-Changed-When: Fri Sep 28 12:31:57 UTC 2012 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=171635 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 14:30:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91FB01065676 for ; Fri, 28 Sep 2012 14:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 69A008FC19 for ; Fri, 28 Sep 2012 14:30:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SEU7KM023021 for ; Fri, 28 Sep 2012 14:30:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SEU7Fk023020; Fri, 28 Sep 2012 14:30:07 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 14:30:07 GMT Resent-Message-Id: <201209281430.q8SEU7Fk023020@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Miklos Magyari Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2F52106566C for ; Fri, 28 Sep 2012 14:25:20 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id D36918FC16 for ; Fri, 28 Sep 2012 14:25:20 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SEPK2p082951 for ; Fri, 28 Sep 2012 14:25:20 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8SEPKNi082934; Fri, 28 Sep 2012 14:25:20 GMT (envelope-from nobody) Message-Id: <201209281425.q8SEPKNi082934@red.freebsd.org> Date: Fri, 28 Sep 2012 14:25:20 GMT From: Miklos Magyari To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172145: mail/filtermail fails to build using clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 14:30:07 -0000 >Number: 172145 >Category: ports >Synopsis: mail/filtermail fails to build using clang >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 14:30:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Miklos Magyari >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD mira 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: mail/filtermail fails to build using clang. [...snip...] flex -+ -i -Prfc -orfc822.cc rfc822.ll clang++ -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -I. -I../include -I.. -DLOCALEDIR=\"/usr/local/share/locale\" -I../intl -I.. -I../include -I. -I/usr/local/include -Wall -O2 -pipe -fno-strict-aliasing -MT rfc822.o -MD -MP -MF .deps/rfc822.Tpo -c -o rfc822.o rfc822.cc mv -f .deps/rfc822.Tpo .deps/rfc822.Po clang++ -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -I. -I../include -I.. -DLOCALEDIR=\"/usr/local/share/locale\" -I../intl -I.. -I../include -I. -I/usr/local/include -Wall -O2 -pipe -fno-strict-aliasing -MT filtermail.o -MD -MP -MF .deps/filtermail.Tpo -c -o filtermail.o filtermail.cc mv -f .deps/filtermail.Tpo .deps/filtermail.Po clang++ -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -I. -I../include -I.. -DLOCALEDIR=\"/usr/local/share/locale\" -I../intl -I.. -I../include -I. -I/usr/local/include -Wall -O2 -pipe -fno-strict-aliasing -MT header.o -MD -MP -MF .deps/header.Tpo -c -o header.o header.cc mv -f .deps/header.Tpo .deps/header.Po clang++ -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -I. -I../include -I.. -DLOCALEDIR=\"/usr/local/share/locale\" -I../intl -I.. -I../include -I. -I/usr/local/include -Wall -O2 -pipe -fno-strict-aliasing -MT weeder.o -MD -MP -MF .deps/weeder.Tpo -c -o weeder.o weeder.cc mv -f .deps/weeder.Tpo .deps/weeder.Po clang++ -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -I. -I../include -I.. -DLOCALEDIR=\"/usr/local/share/locale\" -I../intl -I.. -I../include -I. -I/usr/local/include -Wall -O2 -pipe -fno-strict-aliasing -MT preferences.o -MD -MP -MF .deps/preferences.Tpo -c -o preferences.o preferences.cc preferences.cc:86:51: error: expression is not assignable ((Size_score)(Preferences :: size_score)).score = 0; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ preferences.cc:87:51: error: expression is not assignable ((Size_score)(Preferences :: size_score)).size = 0; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ 2 errors generated. gmake[2]: *** [preferences.o] Error 1 gmake[2]: Leaving directory `/usr/ports/mail/filtermail/work/filtermail-0.8.2/src' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/mail/filtermail/work/filtermail-0.8.2' gmake: *** [all] Error 2 *** [do-build] Error code 1 Stop in /usr/ports/mail/filtermail. >How-To-Repeat: # cd /usr/ports/mail/filtermail # make >Fix: I have managed to compile the port applying the below patch to the source code: --- src/preferences.cc.old 2012-09-28 16:19:14.000000000 +0200 +++ src/preferences.cc 2012-09-28 16:19:49.000000000 +0200 @@ -83,8 +83,8 @@ void Preferences :: init (void) { - ((Size_score)(Preferences :: size_score)).score = 0; - ((Size_score)(Preferences :: size_score)).size = 0; + Preferences :: size_score.score = 0; + Preferences :: size_score.size = 0; } void Preferences :: kill (void) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 14:30:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98001106564A; Fri, 28 Sep 2012 14:30:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6B2F28FC18; Fri, 28 Sep 2012 14:30:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SEUMwU025208; Fri, 28 Sep 2012 14:30:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SEUM0I025196; Fri, 28 Sep 2012 14:30:22 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 14:30:22 GMT Message-Id: <201209281430.q8SEUM0I025196@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sylvio@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172145: mail/filtermail fails to build using clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 14:30:22 -0000 Synopsis: mail/filtermail fails to build using clang Responsible-Changed-From-To: freebsd-ports-bugs->sylvio Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 28 14:30:21 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172145 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 14:40:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 421E01065672 for ; Fri, 28 Sep 2012 14:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 135718FC1B for ; Fri, 28 Sep 2012 14:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SEe2nl033290 for ; Fri, 28 Sep 2012 14:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SEe2ed033287; Fri, 28 Sep 2012 14:40:02 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 14:40:02 GMT Resent-Message-Id: <201209281440.q8SEe2ed033287@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tim Niemueller Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA5BE1065675 for ; Fri, 28 Sep 2012 14:30:15 +0000 (UTC) (envelope-from tim@barbossa.kbsg.rwth-aachen.de) Received: from barbossa.kbsg.rwth-aachen.de (barbossa.kbsg.rwth-aachen.de [137.226.233.18]) by mx1.freebsd.org (Postfix) with ESMTP id 51E838FC17 for ; Fri, 28 Sep 2012 14:30:14 +0000 (UTC) Received: from barbossa.kbsg.rwth-aachen.de (localhost [127.0.0.1]) by barbossa.kbsg.rwth-aachen.de (8.14.5/8.14.5) with ESMTP id q8SEEHDd082563 for ; Fri, 28 Sep 2012 16:14:17 +0200 (CEST) (envelope-from tim@barbossa.kbsg.rwth-aachen.de) Received: (from tim@localhost) by barbossa.kbsg.rwth-aachen.de (8.14.5/8.14.5/Submit) id q8SEEHh5082562; Fri, 28 Sep 2012 16:14:17 +0200 (CEST) (envelope-from tim) Message-Id: <201209281414.q8SEEHh5082562@barbossa.kbsg.rwth-aachen.de> Date: Fri, 28 Sep 2012 16:14:17 +0200 (CEST) From: Tim Niemueller To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172146: New port: devel/yaml-cpp Library to parse/emit YAML files from C++ X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tim Niemueller List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 14:40:03 -0000 >Number: 172146 >Category: ports >Synopsis: New port: devel/yaml-cpp Library to parse/emit YAML files from C++ >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 14:40:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Tim Niemueller >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD barbossa 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 02:52:29 UTC 2012 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: A new port to add the yaml-cpp library to parse and emit YAML documents from C++. YAML is a text file format allowing human readable but yet easily and effciently machine parseable documents. It is gaining more and more popularity, for example in the robotics world for configuration or data structure definition in ROS and Fawkes. >How-To-Repeat: >Fix: --- yaml-cpp.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # yaml-cpp # yaml-cpp/pkg-plist # yaml-cpp/pkg-descr # yaml-cpp/distinfo # yaml-cpp/Makefile # echo c - yaml-cpp mkdir -p yaml-cpp > /dev/null 2>&1 echo x - yaml-cpp/pkg-plist sed 's/^X//' >yaml-cpp/pkg-plist << '27294cd0260b470c149ae4012eac919e' Xinclude/yaml-cpp/aliasmanager.h Xinclude/yaml-cpp/anchor.h Xinclude/yaml-cpp/binary.h Xinclude/yaml-cpp/contrib/anchordict.h Xinclude/yaml-cpp/contrib/graphbuilder.h Xinclude/yaml-cpp/conversion.h Xinclude/yaml-cpp/dll.h Xinclude/yaml-cpp/emitfromevents.h Xinclude/yaml-cpp/emitter.h Xinclude/yaml-cpp/emittermanip.h Xinclude/yaml-cpp/eventhandler.h Xinclude/yaml-cpp/exceptions.h Xinclude/yaml-cpp/iterator.h Xinclude/yaml-cpp/ltnode.h Xinclude/yaml-cpp/mark.h Xinclude/yaml-cpp/node.h Xinclude/yaml-cpp/nodeimpl.h Xinclude/yaml-cpp/nodereadimpl.h Xinclude/yaml-cpp/nodeutil.h Xinclude/yaml-cpp/noncopyable.h Xinclude/yaml-cpp/null.h Xinclude/yaml-cpp/ostream.h Xinclude/yaml-cpp/parser.h Xinclude/yaml-cpp/stlemitter.h Xinclude/yaml-cpp/stlnode.h Xinclude/yaml-cpp/traits.h Xinclude/yaml-cpp/yaml.h Xlib/libyaml-cpp.so Xlib/libyaml-cpp.so.0.3 Xlib/libyaml-cpp.so.0.3.0 Xlibdata/pkgconfig/yaml-cpp.pc 27294cd0260b470c149ae4012eac919e echo x - yaml-cpp/pkg-descr sed 's/^X//' >yaml-cpp/pkg-descr << '2a28ffd8bbe6efc96475d6b70b902ca0' Xyaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec. X XWWW: http://code.google.com/p/yaml-cpp/ 2a28ffd8bbe6efc96475d6b70b902ca0 echo x - yaml-cpp/distinfo sed 's/^X//' >yaml-cpp/distinfo << 'e76ef46efa8c2c41925eaafb01068958' XSHA256 (yaml-cpp-0.3.0.tar.gz) = 2cd038b5a1583b6745e949e196fba525f6d0d5fd340566585fde24fc7e117b82 XSIZE (yaml-cpp-0.3.0.tar.gz) = 82674 e76ef46efa8c2c41925eaafb01068958 echo x - yaml-cpp/Makefile sed 's/^X//' >yaml-cpp/Makefile << '67eb9ddfaa94228fdb96a31c0556e5e0' X# New ports collection makefile for: yaml-cpp X# Date created: 28 Sep 2012 X# Whom: Tim Niemueller X# X# $FreeBSD$ X# X XPORTNAME= yaml-cpp XPORTVERSION= 0.3.0 XPORTREVISION= 1 XCATEGORIES= devel XMASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} X XMAINTAINER= tim@niemueller.de XCOMMENT= YAML parser and emitter in C++ matching the YAML 1.2 spec X XLICENSE= MIT X XWRKSRC= ${WRKDIR}/${PORTNAME} XUSE_CMAKE= yes XMAKE_JOBS_SAFE= yes XCMAKE_ARGS+= -DBUILD_SHARED_LIBS:BOOL=ON -DYAML_CPP_BUILD_TOOLS=0 X Xpost-patch: .SILENT X ${REINPLACE_CMD} 's|$${LIB_INSTALL_DIR}/pkgconfig|${LOCALBASE}/libdata/pkgconfig|' \ X ${WRKSRC}/CMakeLists.txt X X.include 67eb9ddfaa94228fdb96a31c0556e5e0 exit --- yaml-cpp.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 15:10:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 51CB81065673 for ; Fri, 28 Sep 2012 15:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 298428FC18 for ; Fri, 28 Sep 2012 15:10:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SFA38W058880 for ; Fri, 28 Sep 2012 15:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SFA3vE058879; Fri, 28 Sep 2012 15:10:03 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 15:10:03 GMT Resent-Message-Id: <201209281510.q8SFA3vE058879@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Miklos Magyari Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 683F9106564A for ; Fri, 28 Sep 2012 15:00:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 482848FC0A for ; Fri, 28 Sep 2012 15:00:55 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SF0tY5038695 for ; Fri, 28 Sep 2012 15:00:55 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8SF0sPH038694; Fri, 28 Sep 2012 15:00:54 GMT (envelope-from nobody) Message-Id: <201209281500.q8SF0sPH038694@red.freebsd.org> Date: Fri, 28 Sep 2012 15:00:54 GMT From: Miklos Magyari To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172147: sysutils/isomd5sum build fails with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 15:10:03 -0000 >Number: 172147 >Category: ports >Synopsis: sysutils/isomd5sum build fails with clang >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 15:10:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Miklos Magyari >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD mira 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Building sysutils/isomd5sum build fails with clang # make clean all ===> Cleaning for isomd5sum-1.0.4_1 ===> Extracting for isomd5sum-1.0.4_1 => SHA256 Checksum OK for isomd5sum-1.0.4.tar.bz2. ===> Patching for isomd5sum-1.0.4_1 ===> Applying FreeBSD patches for isomd5sum-1.0.4_1 ===> isomd5sum-1.0.4_1 depends on file: /usr/local/bin/python2.7 - found ===> isomd5sum-1.0.4_1 depends on executable: gmake - found ===> isomd5sum-1.0.4_1 depends on shared library: popt.0 - found ===> Configuring for isomd5sum-1.0.4_1 ===> Building for isomd5sum-1.0.4_1 clang -c -O -Wall -Werror -D_GNU_SOURCE=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -fPIC -I/usr/local/include/python2.7 -I/usr/local/include -L/usr/local/lib -o implantisomd5.o implantisomd5.c clang: error: argument unused during compilation: '-L/usr/local/lib' gmake: *** [implantisomd5.o] Error 1 *** [do-build] Error code 1 Stop in /usr/ports/sysutils/isomd5sum. *** [/usr/ports/sysutils/isomd5sum/work/.build_done.isomd5sum._usr_local] Error code 1 Stop in /usr/ports/sysutils/isomd5sum. >How-To-Repeat: cd /usr/ports/sysutils/isomd5sum make >Fix: I have managed to compile after modifying two patchfiles under files/ # cat files/patch-Makefile --- Makefile.orig 2008-02-08 05:30:07.000000000 +0100 +++ Makefile 2012-09-28 16:54:36.000000000 +0200 @@ -1,14 +1,14 @@ PYVER := $(shell python -c 'import sys; print sys.version[0:3]') PYTHON = python$(PYVER) -PYTHONINCLUDE = /usr/include/$(PYTHON) +PYTHONINCLUDE = ${PYTHON_INCLUDEDIR} -ifneq (,$(filter ppc64 x86_64 s390x,$(shell uname -m))) -LIBDIR = lib64 -else +#ifneq (,$(filter ppc64 x86_64 s390x,$(shell uname -m))) +#LIBDIR = lib64 +#else LIBDIR = lib -endif +#endif -CFLAGS = $(RPM_OPT_FLAGS) -Wall -Werror -D_GNU_SOURCE=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -fPIC -I$(PYTHONINCLUDE) +CFLAGS = $(RPM_OPT_FLAGS) -Wall -Werror -D_GNU_SOURCE=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -fPIC -I$(PYTHONINCLUDE) -I${LOCALBASE}/include OBJECTS = md5.o libimplantisomd5.o checkisomd5.o implantisomd5 SOURCES = $(patsubst %.o,%.c,$(OBJECTS)) @@ -22,34 +22,34 @@ $(CC) -c -O $(CFLAGS) -o $@ $< implantisomd5: implantisomd5.o libimplantisomd5.a - $(CC) -lpopt $(CFLAGS) implantisomd5.o libimplantisomd5.a -o implantisomd5 + $(CC) -L${LOCALBASE}/lib -lpopt $(CFLAGS) implantisomd5.o libimplantisomd5.a -o implantisomd5 checkisomd5: checkisomd5.o libcheckisomd5.a - $(CC) -lpopt $(CFLAGS) checkisomd5.o libcheckisomd5.a -o checkisomd5 + $(CC) -L${LOCALBASE}/lib -lpopt $(CFLAGS) checkisomd5.o libcheckisomd5.a -o checkisomd5 libimplantisomd5.a: libimplantisomd5.a(libimplantisomd5.o md5.o) libcheckisomd5.a: libcheckisomd5.a(libcheckisomd5.o md5.o) pyisomd5sum.so: $(PYOBJS) - $(CC) -shared -g -o pyisomd5sum.so -fpic $(PYOBJS) $(LDFLAGS) + $(CC) -shared -o pyisomd5sum.so -fpic $(PYOBJS) $(LDFLAGS) install: all - mkdir -p $(DESTDIR)/usr/$(LIBDIR)/$(PYTHON)/site-packages - mkdir -p $(DESTDIR)/usr/include - mkdir -p $(DESTDIR)/usr/bin - mkdir -p $(DESTDIR)/usr/share/man/man1 - install -m 755 implantisomd5 $(DESTDIR)/usr/bin - install -m 755 checkisomd5 $(DESTDIR)/usr/bin - install -m 755 implantisomd5.1 $(DESTDIR)/usr/share/man/man1 - install -m 755 checkisomd5.1 $(DESTDIR)/usr/share/man/man1 - install -m 755 pyisomd5sum.so $(DESTDIR)/usr/$(LIBDIR)/$(PYTHON)/site-packages + mkdir -p $(PYTHONPREFIX_SITELIBDIR) + mkdir -p $(PREFIX)/include + mkdir -p $(PREFIX)/bin + mkdir -p $(PREFIX)/man/man1 + install -m 755 implantisomd5 $(PREFIX)/bin + install -m 755 checkisomd5 $(PREFIX)/bin + install -m 755 implantisomd5.1 $(PREFIX)/man/man1 + install -m 755 checkisomd5.1 $(PREFIX)/man/man1 + install -m 755 pyisomd5sum.so $(PYTHONPREFIX_SITELIBDIR) # ln -s ../../bin/implantisomd5 $(DESTDIR)/usr/lib/anaconda-runtime/implantisomd5 # ln -s ../../bin/checkisomd5 $(DESTDIR)/usr/lib/anaconda-runtime/checkisomd5 - install -m 644 libimplantisomd5.h $(DESTDIR)/usr/include/ - install -m 644 libcheckisomd5.h $(DESTDIR)/usr/include/ - install -m 644 libimplantisomd5.a $(DESTDIR)/usr/$(LIBDIR) - install -m 644 libcheckisomd5.a $(DESTDIR)/usr/$(LIBDIR) + install -m 644 libimplantisomd5.h $(PREFIX)/include/ + install -m 644 libcheckisomd5.h $(PREFIX)/include/ + install -m 644 libimplantisomd5.a $(PREFIX)/$(LIBDIR) + install -m 644 libcheckisomd5.a $(PREFIX)/$(LIBDIR) clean: rm -f *.o *.so *.pyc *.a .depend *~ # cat files/patch-md5.c --- md5.c.orig 2008-02-08 05:30:07.000000000 +0100 +++ md5.c 2012-09-28 16:54:40.000000000 +0200 @@ -20,13 +20,13 @@ */ #include -#include +#include #include "md5.h" void MD5_Transform(uint32 *buf, uint32 const *in); -#define IS_BIG_ENDIAN() (__BYTE_ORDER == __BIG_ENDIAN) -#define IS_LITTLE_ENDIAN() (__BYTE_ORDER == __LITTLE_ENDIAN) +#define IS_BIG_ENDIAN() (_BYTE_ORDER == _BIG_ENDIAN) +#define IS_LITTLE_ENDIAN() (_BYTE_ORDER == _LITTLE_ENDIAN) static void byteReverse(unsigned char *buf, unsigned longs); @@ -157,7 +157,7 @@ MD5_Transform(ctx->buf, (uint32 *) ctx->in); if (ctx->doByteReverse) byteReverse((unsigned char *) ctx->buf, 4); memcpy(digest, ctx->buf, 16); - memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */ + memset(ctx, 0, sizeof(struct MD5Context)); /* In case it's sensitive */ } #ifndef ASM_MD5 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 15:10:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD652106564A for ; Fri, 28 Sep 2012 15:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 962E88FC1A for ; Fri, 28 Sep 2012 15:10:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SFA3K9058897 for ; Fri, 28 Sep 2012 15:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SFA3KH058896; Fri, 28 Sep 2012 15:10:03 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 15:10:03 GMT Resent-Message-Id: <201209281510.q8SFA3KH058896@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, HU Dong Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 29CC31065672 for ; Fri, 28 Sep 2012 15:02:39 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 158208FC14 for ; Fri, 28 Sep 2012 15:02:39 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SF2cUN038760 for ; Fri, 28 Sep 2012 15:02:38 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8SF2cW9038759; Fri, 28 Sep 2012 15:02:38 GMT (envelope-from nobody) Message-Id: <201209281502.q8SF2cW9038759@red.freebsd.org> Date: Fri, 28 Sep 2012 15:02:38 GMT From: HU Dong To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172148: [MAINTAINER]: devel/edb is marked as broken on freebsd 7.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 15:10:03 -0000 >Number: 172148 >Category: ports >Synopsis: [MAINTAINER]: devel/edb is marked as broken on freebsd 7.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 15:10:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: HU Dong >Release: 9.0 Release i386 >Organization: None >Environment: FreeBSD hostname 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: devel/edb can't build on some systems due to sys/ptrace.h file. details: http://pointyhat.freebsd.org/errorlogs/amd64-errorlogs/e.7.20120924192130/edb-0.9.18.log >How-To-Repeat: build the port on FreeBSD 7.4, 8.0, etc. >Fix: see the attatched patch file. Patch attached with submission follows: diff -ruN edb.bak/Makefile edb/Makefile --- edb.bak/Makefile 2012-09-26 03:40:13.000000000 +0800 +++ edb/Makefile 2012-09-26 03:58:58.000000000 +0800 @@ -2,6 +2,7 @@ PORTNAME= edb PORTVERSION= 0.9.18 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://codef00.com/projects/ DISTNAME= debugger-${PORTVERSION} @@ -29,6 +30,12 @@ STRIP_FILES= bin/${PORTNAME} libexec/${PORTNAME}/*.so +.include + +.if ${OSVERSION} < 800505 +BROKEN= doesn't build due to lack of memroy map of ptrace +.endif + .include do-configure: @@ -47,4 +54,4 @@ ${INSTALL_MAN} ${WRKSRC}/edb.1 ${MANPREFIX}/man/man1/edb.1 ${STRIP_CMD} ${STRIP_FILES:S,^,${PREFIX}/,} -.include +.include diff -ruN edb.bak/pkg-descr edb/pkg-descr --- edb.bak/pkg-descr 2012-09-26 03:47:42.000000000 +0800 +++ edb/pkg-descr 2012-09-26 03:47:55.000000000 +0800 @@ -1,4 +1,4 @@ -edbg (Evan's Debugger) is a cross platform x86/x86-64 debugger. It +edb (Evan's Debugger) is a cross platform x86/x86-64 debugger. It was inspired by OllyDbg, but aims to function on x86 and x86-64 as well as multiple OS's. Linux is the only officially supported platform at the moment, but FreeBSD, OpenBSD, OSX and Windows ports >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 15:10:47 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3B4BB1065674; Fri, 28 Sep 2012 15:10:47 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0EEBB8FC12; Fri, 28 Sep 2012 15:10:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SFAkEm066915; Fri, 28 Sep 2012 15:10:46 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SFAk8U066911; Fri, 28 Sep 2012 15:10:46 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 15:10:46 GMT Message-Id: <201209281510.q8SFAk8U066911@freefall.freebsd.org> To: magyarimiki@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172147: sysutils/isomd5sum build fails with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 15:10:47 -0000 Synopsis: sysutils/isomd5sum build fails with clang State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Sep 28 15:10:46 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172147 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 15:18:36 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9AC2F106566C; Fri, 28 Sep 2012 15:18:36 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6EBA18FC0A; Fri, 28 Sep 2012 15:18:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SFIaPr068749; Fri, 28 Sep 2012 15:18:36 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SFIa6j068745; Fri, 28 Sep 2012 10:18:36 -0500 (CDT) (envelope-from bdrewery) Date: Fri, 28 Sep 2012 10:18:36 -0500 (CDT) Message-Id: <201209281518.q8SFIa6j068745@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/172148: [MAINTAINER]: devel/edb is marked as broken on freebsd 7.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 15:18:36 -0000 Synopsis: [MAINTAINER]: devel/edb is marked as broken on freebsd 7.4 Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Fri Sep 28 10:18:35 CDT 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172148 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 15:20:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20891106566C for ; Fri, 28 Sep 2012 15:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0AA358FC0A for ; Fri, 28 Sep 2012 15:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SFK7Xm069368 for ; Fri, 28 Sep 2012 15:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SFK7PZ069358; Fri, 28 Sep 2012 15:20:07 GMT (envelope-from gnats) Date: Fri, 28 Sep 2012 15:20:07 GMT Message-Id: <201209281520.q8SFK7PZ069358@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/172147: sysutils/isomd5sum build fails with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 15:20:08 -0000 The following reply was made to PR ports/172147; it has been noted by GNATS. From: Edwin Groothuis To: delgod@portaone.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/172147: sysutils/isomd5sum build fails with clang Date: Fri, 28 Sep 2012 15:10:44 UT Maintainer of sysutils/isomd5sum, Please note that PR ports/172147 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/172147 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 18:30:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C5341065672 for ; Fri, 28 Sep 2012 18:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DF8678FC16 for ; Fri, 28 Sep 2012 18:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SIU8uK039908 for ; Fri, 28 Sep 2012 18:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SIU8mw039904; Fri, 28 Sep 2012 18:30:08 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 18:30:08 GMT Resent-Message-Id: <201209281830.q8SIU8mw039904@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gennady Proskurin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A84D8106564A for ; Fri, 28 Sep 2012 18:24:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 942328FC08 for ; Fri, 28 Sep 2012 18:24:54 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SIOrjr066395 for ; Fri, 28 Sep 2012 18:24:53 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8SIOrqe066394; Fri, 28 Sep 2012 18:24:53 GMT (envelope-from nobody) Message-Id: <201209281824.q8SIOrqe066394@red.freebsd.org> Date: Fri, 28 Sep 2012 18:24:53 GMT From: Gennady Proskurin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172149: textproc/aspell ignores NLS option X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 18:30:09 -0000 >Number: 172149 >Category: ports >Synopsis: textproc/aspell ignores NLS option >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 18:30:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Gennady Proskurin >Release: 10.0-CURRENT >Organization: >Environment: FreeBSD gpr.nnz-home.ru 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r240189: Sat Sep 8 04:29:12 MSK 2012 gpr@gpr.nnz-home.ru:/usr/obj/usr/src/freebsd-head/sys/GPR amd64 >Description: textproc/aspell always depends on gettext, ignoring NLS option Bug was introduced in revision 1.102 See also 1.86-1.87 patch >How-To-Repeat: Turn off NLS option, and then: /usr/ports/textproc/aspell % make depends ===> aspell-0.60.6.1_2 depends on file: /usr/local/bin/perl5.14.2 - found ===> aspell-0.60.6.1_2 depends on file: /usr/local/bin/perl5.14.2 - found ===> aspell-0.60.6.1_2 depends on shared library: iconv.3 - found ===> aspell-0.60.6.1_2 depends on shared library: intl - found ===> aspell-0.60.6.1_2 depends on executable: gmake - found ===> aspell-0.60.6.1_2 depends on file: /usr/local/bin/perl5.14.2 - found You see intl dependency >Fix: patch attached Patch attached with submission follows: --- textproc/aspell/Makefile 2012-09-28 19:35:02.384124434 +0400 +++ /tmp/aspell/Makefile 2012-09-28 20:55:27.000000000 +0400 @@ -35,15 +35,14 @@ SUB_LIST= VERINST=${VERINST} .include .if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes PLIST_SUB+= NLS="" .else -USE_GETTEXT= yes CONFIGURE_ARGS+= --disable-nls PLIST_SUB+= NLS="@comment " .endif .if ${PORT_OPTIONS:MISPELL} CONFLICTS+= ispell* ??-ispell* SCRIPTS= ispell spell >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 18:30:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 91AD3106564A; Fri, 28 Sep 2012 18:30:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 659C18FC18; Fri, 28 Sep 2012 18:30:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SIUMwm041911; Fri, 28 Sep 2012 18:30:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SIUMWO041899; Fri, 28 Sep 2012 18:30:22 GMT (envelope-from edwin) Date: Fri, 28 Sep 2012 18:30:22 GMT Message-Id: <201209281830.q8SIUMWO041899@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, office@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172149: textproc/aspell ignores NLS option X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 18:30:22 -0000 Synopsis: textproc/aspell ignores NLS option Responsible-Changed-From-To: freebsd-ports-bugs->office Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 28 18:30:21 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172149 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 19:05:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A99D4106566C; Fri, 28 Sep 2012 19:05:07 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7CE348FC08; Fri, 28 Sep 2012 19:05:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SJ57Pj075978; Fri, 28 Sep 2012 19:05:07 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SJ57sp075974; Fri, 28 Sep 2012 14:05:07 -0500 (CDT) (envelope-from bdrewery) Date: Fri, 28 Sep 2012 14:05:07 -0500 (CDT) Message-Id: <201209281905.q8SJ57sp075974@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/172138: sysutils/devstat: update to 0.3.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 19:05:07 -0000 Synopsis: sysutils/devstat: update to 0.3.3 Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Fri Sep 28 14:05:06 CDT 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172138 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 19:15:58 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 19C7A106564A; Fri, 28 Sep 2012 19:15:58 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E17368FC16; Fri, 28 Sep 2012 19:15:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SJFvbU085792; Fri, 28 Sep 2012 19:15:57 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SJFvXh085788; Fri, 28 Sep 2012 14:15:57 -0500 (CDT) (envelope-from bdrewery) Date: Fri, 28 Sep 2012 14:15:57 -0500 (CDT) Message-Id: <201209281915.q8SJFvXh085788@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/172134: [patch] update deskutils/plasma-applets-cwp from 1.6.3 to 1.6.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 19:15:58 -0000 Synopsis: [patch] update deskutils/plasma-applets-cwp from 1.6.3 to 1.6.4 Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Fri Sep 28 14:15:57 CDT 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172134 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 19:20:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88E41106566B for ; Fri, 28 Sep 2012 19:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 596DF8FC08 for ; Fri, 28 Sep 2012 19:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SJKB3J087231 for ; Fri, 28 Sep 2012 19:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SJKBYi087226; Fri, 28 Sep 2012 19:20:11 GMT (envelope-from gnats) Date: Fri, 28 Sep 2012 19:20:11 GMT Message-Id: <201209281920.q8SJKBYi087226@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Sergey V. Dyatko" Cc: Subject: Re: ports/172141: [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, check for Wine on !i386 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Sergey V. Dyatko" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 19:20:11 -0000 The following reply was made to PR ports/172141; it has been noted by GNATS. From: "Sergey V. Dyatko" To: bug-followup@FreeBSD.org, nemysis@gmx.ch Cc: Subject: Re: ports/172141: [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, check for Wine on !i386 Date: Fri, 28 Sep 2012 22:13:48 +0300 Hi, looks good just one question: why wine-devel ? -- wbr, tiger From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 20:13:35 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 812471065670; Fri, 28 Sep 2012 20:13:35 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 192238FC0A; Fri, 28 Sep 2012 20:13:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SKDYMI039084; Fri, 28 Sep 2012 20:13:34 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SKDYnK039075; Fri, 28 Sep 2012 20:13:34 GMT (envelope-from rm) Date: Fri, 28 Sep 2012 20:13:34 GMT Message-Id: <201209282013.q8SKDYnK039075@freefall.freebsd.org> To: hrkfdn@gmail.com, rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/170986: audio/mpdas: small fix in rc-script X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 20:13:35 -0000 Synopsis: audio/mpdas: small fix in rc-script Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Fri Sep 28 20:13:34 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170986 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 22:33:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 239EA1065672; Fri, 28 Sep 2012 22:33:15 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EA4C98FC18; Fri, 28 Sep 2012 22:33:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SMXE3C066759; Fri, 28 Sep 2012 22:33:14 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SMXECR066755; Fri, 28 Sep 2012 22:33:14 GMT (envelope-from pawel) Date: Fri, 28 Sep 2012 22:33:14 GMT Message-Id: <201209282233.q8SMXECR066755@freefall.freebsd.org> To: martin.dieringer@gmx.de, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/171796: [NEW PORT] cad/repsnapper: Controller and GCode generator for RepRap 3D printers X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 22:33:15 -0000 Synopsis: [NEW PORT] cad/repsnapper: Controller and GCode generator for RepRap 3D printers State-Changed-From-To: open->closed State-Changed-By: pawel State-Changed-When: Fri Sep 28 22:33:14 UTC 2012 State-Changed-Why: New port added, with minor changes. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=171796 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 22:40:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C919106566B for ; Fri, 28 Sep 2012 22:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 76DFD8FC0A for ; Fri, 28 Sep 2012 22:40:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SMe5Eg067604 for ; Fri, 28 Sep 2012 22:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SMe5Tp067595; Fri, 28 Sep 2012 22:40:05 GMT (envelope-from gnats) Date: Fri, 28 Sep 2012 22:40:05 GMT Message-Id: <201209282240.q8SMe5Tp067595@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/171796: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 22:40:05 -0000 The following reply was made to PR ports/171796; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/171796: commit references a PR Date: Fri, 28 Sep 2012 22:32:33 +0000 (UTC) Author: pawel Date: Fri Sep 28 22:32:18 2012 New Revision: 305014 URL: http://svn.freebsd.org/changeset/ports/305014 Log: RepSnapper is a host software for controlling a RepRap 3D printer. It has a 3D OpenGL interface, slices objects and calculates the extrusion toolpath. It can manipulate 3D objects and save constellations in STL and AMF format. WWW: http://reprap.org/wiki/RepSnapper_Manual:Introduction PR: ports/171796 Submitted by: Martin Dieringer Added: head/cad/repsnapper/ head/cad/repsnapper/Makefile (contents, props changed) head/cad/repsnapper/distinfo (contents, props changed) head/cad/repsnapper/pkg-descr (contents, props changed) head/cad/repsnapper/pkg-plist (contents, props changed) Modified: head/cad/Makefile Modified: head/cad/Makefile ============================================================================== --- head/cad/Makefile Fri Sep 28 20:25:53 2012 (r305013) +++ head/cad/Makefile Fri Sep 28 22:32:18 2012 (r305014) @@ -77,6 +77,7 @@ SUBDIR += qfsm SUBDIR += qmls SUBDIR += qucs + SUBDIR += repsnapper SUBDIR += salome SUBDIR += salome-geom SUBDIR += salome-gui Added: head/cad/repsnapper/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/repsnapper/Makefile Fri Sep 28 22:32:18 2012 (r305014) @@ -0,0 +1,84 @@ +# Created by: Martin Dieringer +# $FreeBSD$ + +PORTNAME= repsnapper +PORTVERSION= 2.0.0b01 +CATEGORIES= cad +MASTER_SITES= http://nodeload.github.com/timschmidt/repsnapper/tarball/ +DISTNAME= ${PORTVERSION} +EXTRACT_SUFX= # +DIST_SUBDIR= ${PORTNAME} + +MAINTAINER= martin.dieringer@gmx.de +COMMENT= Controller and GCode generator for RepRap 3D printers + +LICENSE= GPLv2 BSD MIT +LICENSE_COMB= multi + +BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser +LIB_DEPENDS= gtkglext:${PORTSDIR}/x11-toolkits/gtkglext \ + gtkmm-2:${PORTSDIR}/x11-toolkits/gtkmm24 \ + glademm-2:${PORTSDIR}/devel/libglademm24 \ + cairomm-1:${PORTSDIR}/graphics/cairomm \ + zip:${PORTSDIR}/archivers/libzip \ + atkmm-1.6:${PORTSDIR}/accessibility/atkmm \ + glibmm-2.4:${PORTSDIR}/devel/glibmm \ + pthread-stubs:${PORTSDIR}/devel/libpthread-stubs \ + sigc-2.0:${PORTSDIR}/devel/libsigc++20 \ + pcre:${PORTSDIR}/devel/pcre \ + drm:${PORTSDIR}/graphics/libdrm \ + png15:${PORTSDIR}/graphics/png \ + freetype:${PORTSDIR}/print/freetype2 \ + expat:${PORTSDIR}/textproc/expat2 \ + xml++-2.6:${PORTSDIR}/textproc/libxml++26 \ + fontconfig:${PORTSDIR}/x11-fonts/fontconfig \ + pangomm-1.4:${PORTSDIR}/x11-toolkits/pangomm \ + xcb:${PORTSDIR}/x11/libxcb + +MAKE_JOBS_SAFE= yes +USE_GNOME= gdkpixbuf2 gtk20 libxml2 +USE_GL= glu glut +USE_AUTOTOOLS= automake libtool +USE_GMAKE= yes +USE_ICONV= yes +USE_PKGCONFIG= build +USE_XORG= ice pixman sm x11 xau xcomposite xcursor xdamage xdmcp xext \ + xfixes xi xinerama xmu xrandr xrender xt xxf86vm + +.if !defined(WITHOUT_NLS) +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+= --disable-nls +PLIST_SUB+= NLS="@comment " +.endif + +WRKSRC= ${WRKDIR}/timschmidt-${PORTNAME}-39af569 +INSTALL_TARGET= install-strip +CONFIGURE_ARGS= --prefix=${PREFIX} + +pre-configure: + cd ${WRKSRC} && ./autogen.sh + +post-configure: + @${REINPLACE_CMD} 's|src/repsnapper.conf||' \ + ${WRKSRC}/Makefile + @${REINPLACE_CMD} 's|DATADIRNAME = lib|DATADIRNAME = share|' \ + ${WRKSRC}/po/Makefile + +post-install: + ${MKDIR} ${PREFIX}/etc/xdg/repsnapper + ${INSTALL_DATA} ${WRKSRC}/src/repsnapper.conf \ + ${PREFIX}/etc/xdg/repsnapper/repsnapper.conf.sample + @if [ ! -f ${PREFIX}/etc/xdg/repsnapper/repsnapper.conf ]; then \ + ${CP} -p ${PREFIX}/etc/xdg/repsnapper/repsnapper.conf.sample \ + ${PREFIX}/etc/xdg/repsnapper/repsnapper.conf ; \ + fi + +.include + +.if ${OSVERSION} < 800000 +IGNORE= needs acosl(3) function to compile +.endif + +.include Added: head/cad/repsnapper/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/repsnapper/distinfo Fri Sep 28 22:32:18 2012 (r305014) @@ -0,0 +1,2 @@ +SHA256 (repsnapper/2.0.0b01) = 01ac8745933f87661972492476eb94b90ae2272e522b6accec64e6b2a938f60d +SIZE (repsnapper/2.0.0b01) = 1340375 Added: head/cad/repsnapper/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/repsnapper/pkg-descr Fri Sep 28 22:32:18 2012 (r305014) @@ -0,0 +1,5 @@ +RepSnapper is a host software for controlling a RepRap 3D printer. It has a +3D OpenGL interface, slices objects and calculates the extrusion toolpath. +It can manipulate 3D objects and save constellations in STL and AMF format. + +WWW: http://reprap.org/wiki/RepSnapper_Manual:Introduction Added: head/cad/repsnapper/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/repsnapper/pkg-plist Fri Sep 28 22:32:18 2012 (r305014) @@ -0,0 +1,13 @@ +bin/repsnapper +@unexec if cmp -s %D/etc/xdg/repsnapper/repsnapper.conf.sample %D/etc/xdg/repsnapper/repsnapper.conf; then rm -f %D/etc/xdg/repsnapper/repsnapper.conf; fi +etc/xdg/repsnapper/repsnapper.conf.sample +@exec if [ ! -f %D/etc/xdg/repsnapper/repsnapper.conf ] ; then cp -p %D/%F %B/xdg/repsnapper/repsnapper.conf; fi +share/applications/repsnapper.desktop +share/locale/en_GB/LC_MESSAGES/repsnapper.mo +share/locale/de_DE/LC_MESSAGES/repsnapper.mo +share/repsnapper/repsnapper.ui +@dirrmtry etc/xdg/repsnapper +@dirrmtry share/applications +@dirrmtry share/locale/de_DE/LC_MESSAGES +@dirrmtry share/locale/de_DE +@dirrm share/repsnapper _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 22:40:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 15CD71065673 for ; Fri, 28 Sep 2012 22:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DAE068FC0C for ; Fri, 28 Sep 2012 22:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SMe7Ge068018 for ; Fri, 28 Sep 2012 22:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SMe7LJ068017; Fri, 28 Sep 2012 22:40:07 GMT (envelope-from gnats) Date: Fri, 28 Sep 2012 22:40:07 GMT Message-Id: <201209282240.q8SMe7LJ068017@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: nemysis Cc: Subject: Re: ports/172141: [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, check for Wine on !i386 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nemysis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 22:40:08 -0000 The following reply was made to PR ports/172141; it has been noted by GNATS. From: nemysis To: "Sergey V. Dyatko" , bug-followup@FreeBSD.org Cc: Subject: Re: ports/172141: [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, check for Wine on !i386 Date: Sat, 29 Sep 2012 00:33:59 +0200 On Fri, 28 Sep 2012 22:13:48 +0300 "Sergey V. Dyatko" wrote: > Hi, > > looks good > > just one question: why wine-devel ? > Why is emulators/wine old 1.4.1 and emulators/wine-devel is 1.5.13 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 28 23:30:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9410D106566B for ; Fri, 28 Sep 2012 23:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6BA6B8FC0A for ; Fri, 28 Sep 2012 23:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SNU8AQ010959 for ; Fri, 28 Sep 2012 23:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8SNU8hZ010956; Fri, 28 Sep 2012 23:30:08 GMT (envelope-from gnats) Resent-Date: Fri, 28 Sep 2012 23:30:08 GMT Resent-Message-Id: <201209282330.q8SNU8hZ010956@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eric Turgeon Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6FCF5106564A for ; Fri, 28 Sep 2012 23:26:15 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5932F8FC14 for ; Fri, 28 Sep 2012 23:26:15 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8SNQFKY071233 for ; Fri, 28 Sep 2012 23:26:15 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8SNQFTk071232; Fri, 28 Sep 2012 23:26:15 GMT (envelope-from nobody) Message-Id: <201209282326.q8SNQFTk071232@red.freebsd.org> Date: Fri, 28 Sep 2012 23:26:15 GMT From: Eric Turgeon To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172152: update geany 0.21 to 1.22 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2012 23:30:08 -0000 >Number: 172152 >Category: ports >Synopsis: update geany 0.21 to 1.22 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 28 23:30:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eric Turgeon >Release: FreeBSD 9.1-RC1 >Organization: GhostBSD >Environment: FreeBSD eric.ghostbsd.org 9.1-RC1 FreeBSD 9.1-RC1 #1 r239622M: Fri Aug 24 07:03:27 ADT 2012 root@eric.ghostbsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I have seen that Geany is out of date. I decide to try to update the ports in my system. It work! I have try to join the maintainer of this port but he don't respond. I have decide to commit this update myself. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # geany # geany/Makefile # geany/distinfo # geany/pkg-descr # geany/pkg-plist # echo c - geany mkdir -p geany > /dev/null 2>&1 echo x - geany/Makefile sed 's/^X//' >geany/Makefile << '80abd55df0d4de17491232b108fcbfc0' X# New ports collection Makefile for: geany X# Date Created: 15 Jan 06 X# Whom: Remington Lang X# X# $FreeBSD: ports/devel/geany/Makefile,v 1.25 2012/06/01 05:17:27 dinoex Exp $ X# X XPORTNAME= geany XPORTVERSION= 1.22 XPORTREVISION= 1 XCATEGORIES= devel editors XMASTER_SITES= http://download.geany.org/ SF X XMAINTAINER= ar@null.lv XCOMMENT= A fast and lightweight GTK+ IDE X XLICENSE= GPLv2 X XGNU_CONFIGURE= yes XINSTALLS_ICONS= yes XUSE_BZIP2= yes XUSE_GMAKE= yes XUSE_GNOME= gnomehack gtk20 XCPPFLAGS+= -I${LOCALBASE}/include XLDFLAGS+= -L${LOCALBASE}/lib X XOPTIONS= VTE "Enable Virtual Terminal Emulation support" on \ X NLS "Enable Native Language support" on X XMAN1= geany.1 X X.include X X.if !defined(WITHOUT_NLS) XUSE_GETTEXT= yes XPLIST_SUB+= NLS="" X.else XCONFIGURE_ARGS+=--disable-nls XPLIST_SUB+= NLS="@comment " X.endif X X.if !defined(WITHOUT_VTE) XUSE_GNOME+= vte XCONFIGURE_ARGS+=--enable-vte X.else XCONFIGURE_ARGS+=--disable-vte X.endif X Xpost-patch: X.if defined(NOPORTDOCS) X @${REINPLACE_CMD} -e '/^SUBDIRS/ s|doc||' ${WRKSRC}/Makefile.in X.endif X.if defined(WITHOUT_NLS) X @${REINPLACE_CMD} -e '/^SUBDIRS/ s|po||' ${WRKSRC}/Makefile.in X.endif X Xpost-install: X ${INSTALL_DATA} ${WRKSRC}/geany.desktop ${PREFIX}/share/applications/ X ${INSTALL_MAN} ${WRKSRC}/doc/geany.1 ${MAN1PREFIX}/man/man1 X X.include 80abd55df0d4de17491232b108fcbfc0 echo x - geany/distinfo sed 's/^X//' >geany/distinfo << '8fb7202615bdb096fd48bba2cefd07b3' XSHA256 (geany-1.22.tar.bz2) = 901a35a7395ef10a80fb10b3ab63bae3871693a4e82d56388e9521a27877577e XSIZE (geany-1.22.tar.bz2) = 3198289 8fb7202615bdb096fd48bba2cefd07b3 echo x - geany/pkg-descr sed 's/^X//' >geany/pkg-descr << '04ba03058c77d21380c06691599d0803' XGeany is a small and lightweight integrated development environment. It was Xdeveloped to provide a small and fast IDE, which has only a few dependencies Xon other packages. Another goal was to be as independent as possible from a Xspecial Desktop Environment like KDE or GNOME. X XWWW: http://www.geany.org 04ba03058c77d21380c06691599d0803 echo x - geany/pkg-plist sed 's/^X//' >geany/pkg-plist << '30f8f646ff253c207fd29321d690c584' Xbin/geany Xinclude/geany/document.h Xinclude/geany/editor.h Xinclude/geany/encodings.h Xinclude/geany/filetypes.h Xinclude/geany/geany.h Xinclude/geany/geanyfunctions.h Xinclude/geany/geanyplugin.h Xinclude/geany/highlighting.h Xinclude/geany/keybindings.h Xinclude/geany/msgwindow.h Xinclude/geany/plugindata.h Xinclude/geany/prefs.h Xinclude/geany/project.h Xinclude/geany/scintilla/SciLexer.h Xinclude/geany/scintilla/Scintilla.h Xinclude/geany/scintilla/Scintilla.iface Xinclude/geany/scintilla/ScintillaWidget.h Xinclude/geany/search.h Xinclude/geany/stash.h Xinclude/geany/support.h Xinclude/geany/tagmanager/tm_file_entry.h Xinclude/geany/tagmanager/tm_project.h Xinclude/geany/tagmanager/tm_source_file.h Xinclude/geany/tagmanager/tm_symbol.h Xinclude/geany/tagmanager/tm_tag.h Xinclude/geany/tagmanager/tm_tagmanager.h Xinclude/geany/tagmanager/tm_work_object.h Xinclude/geany/tagmanager/tm_workspace.h Xinclude/geany/templates.h Xinclude/geany/toolbar.h Xinclude/geany/ui_utils.h Xinclude/geany/utils.h Xlib/geany/classbuilder.la Xlib/geany/classbuilder.so Xlib/geany/export.la Xlib/geany/export.so Xlib/geany/filebrowser.la Xlib/geany/filebrowser.so Xlib/geany/htmlchars.la Xlib/geany/htmlchars.so Xlib/geany/saveactions.la Xlib/geany/saveactions.so Xlib/geany/splitwindow.la Xlib/geany/splitwindow.so Xlibdata/pkgconfig/geany.pc Xshare/applications/geany.desktop X%%PORTDOCS%%%%DOCSDIR%%/AUTHORS X%%PORTDOCS%%%%DOCSDIR%%/COPYING X%%PORTDOCS%%%%DOCSDIR%%/ChangeLog X%%PORTDOCS%%%%DOCSDIR%%/NEWS X%%PORTDOCS%%%%DOCSDIR%%/README X%%PORTDOCS%%%%DOCSDIR%%/ScintillaLicense.txt X%%PORTDOCS%%%%DOCSDIR%%/THANKS X%%PORTDOCS%%%%DOCSDIR%%/TODO X%%PORTDOCS%%%%DOCSDIR%%/html/images/build_menu_commands_dialog.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/find_dialog.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/find_in_files_dialog.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/main_window.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_edit_completions.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_edit_display.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_edit_features.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_edit_indentation.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_files.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_gen_misc.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_gen_startup.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_interface_interface.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_interface_notebook.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_interface_toolbar.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_keys.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_printing.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_templ.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_tools.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_various.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/pref_dialog_vte.png X%%PORTDOCS%%%%DOCSDIR%%/html/images/replace_dialog.png X%%PORTDOCS%%%%DOCSDIR%%/html/index.html X%%PORTDOCS%%%%DOCSDIR%%/manual.txt X%%DATADIR%%/GPL-2 X%%DATADIR%%/c99.tags X%%DATADIR%%/colorschemes/alt.conf X%%DATADIR%%/filetype_extensions.conf X%%DATADIR%%/filetypes.Cython.conf X%%DATADIR%%/filetypes.Genie.conf X%%DATADIR%%/filetypes.Scala.conf X%%DATADIR%%/filetypes.abc X%%DATADIR%%/filetypes.actionscript X%%DATADIR%%/filetypes.ada X%%DATADIR%%/filetypes.asm X%%DATADIR%%/filetypes.c X%%DATADIR%%/filetypes.caml X%%DATADIR%%/filetypes.cmake X%%DATADIR%%/filetypes.cobol X%%DATADIR%%/filetypes.common X%%DATADIR%%/filetypes.conf X%%DATADIR%%/filetypes.cpp X%%DATADIR%%/filetypes.cs X%%DATADIR%%/filetypes.css X%%DATADIR%%/filetypes.d X%%DATADIR%%/filetypes.diff X%%DATADIR%%/filetypes.docbook X%%DATADIR%%/filetypes.erlang X%%DATADIR%%/filetypes.f77 X%%DATADIR%%/filetypes.ferite X%%DATADIR%%/filetypes.forth X%%DATADIR%%/filetypes.fortran X%%DATADIR%%/filetypes.freebasic X%%DATADIR%%/filetypes.glsl X%%DATADIR%%/filetypes.haskell X%%DATADIR%%/filetypes.haxe X%%DATADIR%%/filetypes.html X%%DATADIR%%/filetypes.java X%%DATADIR%%/filetypes.javascript X%%DATADIR%%/filetypes.latex X%%DATADIR%%/filetypes.lisp X%%DATADIR%%/filetypes.lua X%%DATADIR%%/filetypes.makefile X%%DATADIR%%/filetypes.markdown X%%DATADIR%%/filetypes.matlab X%%DATADIR%%/filetypes.nsis X%%DATADIR%%/filetypes.pascal X%%DATADIR%%/filetypes.perl X%%DATADIR%%/filetypes.php X%%DATADIR%%/filetypes.po X%%DATADIR%%/filetypes.python X%%DATADIR%%/filetypes.r X%%DATADIR%%/filetypes.restructuredtext X%%DATADIR%%/filetypes.ruby X%%DATADIR%%/filetypes.sh X%%DATADIR%%/filetypes.sql X%%DATADIR%%/filetypes.tcl X%%DATADIR%%/filetypes.txt2tags X%%DATADIR%%/filetypes.vala X%%DATADIR%%/filetypes.verilog X%%DATADIR%%/filetypes.vhdl X%%DATADIR%%/filetypes.xml X%%DATADIR%%/filetypes.yaml X%%DATADIR%%/html_entities.tags X%%DATADIR%%/pascal.tags X%%DATADIR%%/php.tags X%%DATADIR%%/python.tags X%%DATADIR%%/snippets.conf X%%DATADIR%%/templates/bsd X%%DATADIR%%/templates/changelog X%%DATADIR%%/templates/fileheader X%%DATADIR%%/templates/files/file.html X%%DATADIR%%/templates/files/file.php X%%DATADIR%%/templates/files/file.rb X%%DATADIR%%/templates/files/file.tex X%%DATADIR%%/templates/files/main.c X%%DATADIR%%/templates/files/main.cxx X%%DATADIR%%/templates/files/main.d X%%DATADIR%%/templates/files/main.java X%%DATADIR%%/templates/files/main.py X%%DATADIR%%/templates/files/main.vala X%%DATADIR%%/templates/files/program.pas X%%DATADIR%%/templates/function X%%DATADIR%%/templates/gpl X%%DATADIR%%/ui_toolbar.xml Xshare/icons/hicolor/16x16/apps/classviewer-class.png Xshare/icons/hicolor/16x16/apps/classviewer-macro.png Xshare/icons/hicolor/16x16/apps/classviewer-member.png Xshare/icons/hicolor/16x16/apps/classviewer-method.png Xshare/icons/hicolor/16x16/apps/classviewer-namespace.png Xshare/icons/hicolor/16x16/apps/classviewer-other.png Xshare/icons/hicolor/16x16/apps/classviewer-struct.png Xshare/icons/hicolor/16x16/apps/classviewer-var.png Xshare/icons/hicolor/16x16/apps/geany.png Xshare/icons/hicolor/48x48/apps/geany.png Xshare/icons/hicolor/scalable/apps/geany.svg X%%NLS%%share/locale/ast/LC_MESSAGES/geany.mo X%%NLS%%share/locale/be/LC_MESSAGES/geany.mo X%%NLS%%share/locale/bg/LC_MESSAGES/geany.mo X%%NLS%%share/locale/ca/LC_MESSAGES/geany.mo X%%NLS%%share/locale/cs/LC_MESSAGES/geany.mo X%%NLS%%share/locale/de/LC_MESSAGES/geany.mo X%%NLS%%share/locale/el/LC_MESSAGES/geany.mo X%%NLS%%share/locale/en_GB/LC_MESSAGES/geany.mo X%%NLS%%share/locale/es/LC_MESSAGES/geany.mo X%%NLS%%share/locale/fa/LC_MESSAGES/geany.mo X%%NLS%%share/locale/fi/LC_MESSAGES/geany.mo X%%NLS%%share/locale/fr/LC_MESSAGES/geany.mo X%%NLS%%share/locale/gl/LC_MESSAGES/geany.mo X%%NLS%%share/locale/hu/LC_MESSAGES/geany.mo X%%NLS%%share/locale/it/LC_MESSAGES/geany.mo X%%NLS%%share/locale/ja/LC_MESSAGES/geany.mo X%%NLS%%share/locale/kk/LC_MESSAGES/geany.mo X%%NLS%%share/locale/ko/LC_MESSAGES/geany.mo X%%NLS%%share/locale/lb/LC_MESSAGES/geany.mo X%%NLS%%share/locale/nl/LC_MESSAGES/geany.mo X%%NLS%%share/locale/pl/LC_MESSAGES/geany.mo X%%NLS%%share/locale/pt/LC_MESSAGES/geany.mo X%%NLS%%share/locale/pt_BR/LC_MESSAGES/geany.mo X%%NLS%%share/locale/ro/LC_MESSAGES/geany.mo X%%NLS%%share/locale/ru/LC_MESSAGES/geany.mo X%%NLS%%share/locale/sl/LC_MESSAGES/geany.mo X%%NLS%%share/locale/sv/LC_MESSAGES/geany.mo X%%NLS%%share/locale/tr/LC_MESSAGES/geany.mo X%%NLS%%share/locale/uk/LC_MESSAGES/geany.mo X%%NLS%%share/locale/vi/LC_MESSAGES/geany.mo X%%NLS%%share/locale/zh_CN/LC_MESSAGES/geany.mo X%%NLS%%share/locale/zh_TW/LC_MESSAGES/geany.mo X%%NLS%%@dirrmtry share/locale/lb/LC_MESSAGES X%%NLS%%@dirrmtry share/locale/lb X%%NLS%%@dirrmtry share/locale/kk/LC_MESSAGES X%%NLS%%@dirrmtry share/locale/kk X%%NLS%%@dirrmtry share/locale/ast/LC_MESSAGES X%%NLS%%@dirrmtry share/locale/ast X@dirrm %%DATADIR%%/templates/files X@dirrm %%DATADIR%%/templates X@dirrm %%DATADIR%%/colorschemes X@dirrm %%DATADIR%% X%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/images X%%PORTDOCS%%@dirrm %%DOCSDIR%%/html X%%PORTDOCS%%@dirrm %%DOCSDIR%% X@dirrmtry share/applications X@dirrm lib/geany X@dirrm include/geany/tagmanager X@dirrm include/geany/scintilla X@dirrm include/geany 30f8f646ff253c207fd29321d690c584 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 00:10:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5247D106564A for ; Sat, 29 Sep 2012 00:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 294438FC12 for ; Sat, 29 Sep 2012 00:10:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8T0A3M8052153 for ; Sat, 29 Sep 2012 00:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8T0A2NC052152; Sat, 29 Sep 2012 00:10:03 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 00:10:03 GMT Resent-Message-Id: <201209290010.q8T0A2NC052152@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "4721@hushmail.com" <4721@hushmail.com> Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A2A03106566B for ; Sat, 29 Sep 2012 00:06:27 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 7418C8FC08 for ; Sat, 29 Sep 2012 00:06:27 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8T06RhB021131 for ; Sat, 29 Sep 2012 00:06:27 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8T06RmG021130; Sat, 29 Sep 2012 00:06:27 GMT (envelope-from nobody) Message-Id: <201209290006.q8T06RmG021130@red.freebsd.org> Date: Sat, 29 Sep 2012 00:06:27 GMT From: "4721@hushmail.com" <4721@hushmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172153: [patch] upgrade www/youtube_dl from 2012.02.27 to 2012.09.27 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 00:10:03 -0000 >Number: 172153 >Category: ports >Synopsis: [patch] upgrade www/youtube_dl from 2012.02.27 to 2012.09.27 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 00:10:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: 4721@hushmail.com >Release: >Organization: >Environment: >Description: * update port to last version * vendor drops support for python 2.5, remove from acceptable range * switch to USE_GITHUB >How-To-Repeat: >Fix: Patch attached with submission follows: Index: www/youtube_dl/distinfo =================================================================== --- www/youtube_dl/distinfo (revision 305009) +++ www/youtube_dl/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (youtube_dl/2012.02.27/youtube-dl) = 98146a510fed3d39a34a686e1100d6df4efa2b9b9e194649e615afc1ff646834 -SIZE (youtube_dl/2012.02.27/youtube-dl) = 159848 +SHA256 (youtube_dl-2012.09.27) = 45e88c1a5b81e633bddd43d5363e7ade92af2eeb534c37a5170f4b68d73605ea +SIZE (youtube_dl-2012.09.27) = 2874838 Index: www/youtube_dl/Makefile =================================================================== --- www/youtube_dl/Makefile (revision 305009) +++ www/youtube_dl/Makefile (working copy) @@ -6,24 +6,26 @@ # PORTNAME= youtube_dl -PORTVERSION= 2012.02.27 +PORTVERSION= 2012.09.27 CATEGORIES= www -MASTER_SITES= https://raw.github.com/rg3/youtube-dl/${PORTVERSION}/ \ +MASTER_SITES= GH \ CRITICAL -DISTNAME= youtube-dl EXTRACT_SUFX= # empty -DIST_SUBDIR= ${PORTNAME}/${PORTVERSION} -EXTRACT_ONLY= # empty MAINTAINER= araujo@FreeBSD.org COMMENT= A program for downloading videos from YouTube.com LICENSE= GPLv2 -NO_BUILD= yes -NO_WRKSUBDIR= yes -USE_PYTHON_RUN= 2.5-2.7 +BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip +USE_PYTHON_RUN= 2.6-2.7 +ALL_TARGET= compile +USE_GITHUB= yes +GH_ACCOUNT= rg3 +GH_PROJECT= youtube-dl +GH_COMMIT= b5de8af + PLIST_FILES= bin/youtube-dl OPTIONS= RTMPDUMP "Use RTMPDUMP to download rtmp video streams" on \ @@ -44,9 +46,6 @@ . endif .endif -post-extract: - @${CP} ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME} ${WRKSRC}/youtube-dl - do-install: @${INSTALL_SCRIPT} ${WRKSRC}/youtube-dl ${PREFIX}/bin/youtube-dl >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 00:10:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2AA421065672; Sat, 29 Sep 2012 00:10:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F12968FC0A; Sat, 29 Sep 2012 00:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8T0ADHt054522; Sat, 29 Sep 2012 00:10:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8T0ADSK054509; Sat, 29 Sep 2012 00:10:13 GMT (envelope-from edwin) Date: Sat, 29 Sep 2012 00:10:13 GMT Message-Id: <201209290010.q8T0ADSK054509@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, araujo@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172153: [patch] upgrade www/youtube_dl from 2012.02.27 to 2012.09.27 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 00:10:14 -0000 Synopsis: [patch] upgrade www/youtube_dl from 2012.02.27 to 2012.09.27 Responsible-Changed-From-To: freebsd-ports-bugs->araujo Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 29 00:10:13 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172153 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 02:50:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32C67106564A; Sat, 29 Sep 2012 02:50:15 +0000 (UTC) (envelope-from jbeich@tormail.org) Received: from outgoing.tormail.org (outgoing.tormail.org [82.221.96.22]) by mx1.freebsd.org (Postfix) with ESMTP id C35978FC08; Sat, 29 Sep 2012 02:50:14 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=internal.tormail.org) by outgoing.tormail.org with esmtp (Exim 4.72) (envelope-from ) id 1THn87-0002Z4-WA; Sat, 29 Sep 2012 06:50:12 +0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tormail.org; s=tm; h=Message-Id:X-TorMail-User:Content-Type:MIME-Version:Date:In-Reply-To:Subject:Cc:To:From; bh=LEvVFJZ2bAurDHcDf//sdWyuZ5sGrnawlUfOU82zP6I=; b=aqk34JaVYkWBBfCkFGAOKjHvf+duwpWj/Q8qidO8lUEQY7i70hehNqdnHKhXRdfDKwGk/cJs/4H5xnf0/O9QRmyGaam5wCT6eqXWtnKv8cX+F2bdjQpM2ICD2F8umJJpKmuEZPGVbDjsJFvkFcri+mguHnRV1OfZemZ+OQmZIPs=; Received: from jbeich by internal.tormail.org with local (Exim 4.63) (envelope-from ) id 1THn6C-000EaU-DD; Sat, 29 Sep 2012 02:48:13 +0000 From: Jan Beich To: obrien@FreeBSD.org In-Reply-To: obrien@freebsd.org's message of "Fri Sep 28 23\:39\:33 UTC 2012" Date: Fri, 28 Sep 2012 18:41:56 -0800 MIME-Version: 1.0 Content-Type: text/plain X-TorMail-User: jbeich Message-Id: <1THn6C-000EaU-DD@internal.tormail.org> Cc: freebsd-ports-bugs@freebsd.org, bug-followup@FreeBSD.org Subject: Re: [patch] vietnamese/libviet: respect CC/CFLAGS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 02:50:15 -0000 obrien@FreeBSD.org writes: > State-Changed-From-To: open->closed > State-Changed-By: obrien > State-Changed-When: Fri Sep 28 23:39:33 UTC 2012 > State-Changed-Why: > This seems fixed to me. Exactly when? I can still reproduce. If you're referring to clang -exp runs see last comment in ports/159117. Leaving aside the issue of portmgr@ embracing false positives # notice 'cc' is used with no clang-specific warnings (then 'cc' is 'gcc') # notice '-O2 -pipe -fno-strict-aliasing' are not actually used http://pointyhat-west.isc.freebsd.org/errorlogs/amd64-errorlogs/a.9-exp-clang.20120902011351.pointyhat-west/vi-libviet-20010210_1.log.bz2 So, try USE_GCC=4.6+ and see if the log contains gcc46 or set CC yourself but place a few traps to prevent build from lying (see quote below). > >Environment: > # slightly different from pointyhat > $ export PATH=~/.bin:$PATH > $ for cc in CC cc c++ gcc g++ cpp; do ln -s /usr/bin/false ~/.bin/${cc}; done Note, assignment on command line has higher precedence than in Makefile. For example, the following $ make CC=gcc46 overrides CC=cc in lib/viqr/Makefile but fails to work when CC is set via environment, make.conf or bsd.gcc.mk (USE_GCC). From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 04:50:04 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B0D6106566B for ; Sat, 29 Sep 2012 04:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 053FD8FC16 for ; Sat, 29 Sep 2012 04:50:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8T4o3wW006499 for ; Sat, 29 Sep 2012 04:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8T4o3Z1006498; Sat, 29 Sep 2012 04:50:03 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 04:50:03 GMT Resent-Message-Id: <201209290450.q8T4o3Z1006498@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris Petrik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AEEC1106566C for ; Sat, 29 Sep 2012 04:49:29 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5F0428FC08 for ; Sat, 29 Sep 2012 04:49:29 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8T4nTKf094032 for ; Sat, 29 Sep 2012 04:49:29 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8T4nTn1094031; Sat, 29 Sep 2012 04:49:29 GMT (envelope-from nobody) Message-Id: <201209290449.q8T4nTn1094031@red.freebsd.org> Date: Sat, 29 Sep 2012 04:49:29 GMT From: Chris Petrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172155: [PATCH] science/peekabot request maintainer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 04:50:04 -0000 >Number: 172155 >Category: ports >Synopsis: [PATCH] science/peekabot request maintainer >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 04:50:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Chris Petrik >Release: >Organization: none >Environment: >Description: Request maintainer for my old port >How-To-Repeat: >Fix: Patch attached with submission follows: Index: peekabot/Makefile =================================================================== --- peekabot/Makefile (revision 305022) +++ peekabot/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= science MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:R}.x -MAINTAINER= 5u623l20@gmail.com +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Distributed real-time 3D visualization tool for robotics researchers LICENSE= BSL GPLv3 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 04:50:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0AC4F106566C; Sat, 29 Sep 2012 04:50:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D2F5C8FC0C; Sat, 29 Sep 2012 04:50:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8T4oGep008571; Sat, 29 Sep 2012 04:50:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8T4oGjh008563; Sat, 29 Sep 2012 04:50:16 GMT (envelope-from edwin) Date: Sat, 29 Sep 2012 04:50:16 GMT Message-Id: <201209290450.q8T4oGjh008563@freefall.freebsd.org> To: c.petrik.sosa@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172155: [PATCH] science/peekabot request maintainer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 04:50:17 -0000 Synopsis: [PATCH] science/peekabot request maintainer State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Sep 29 04:50:16 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172155 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 05:00:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 428E1106564A for ; Sat, 29 Sep 2012 05:00:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2CD4A8FC0C for ; Sat, 29 Sep 2012 05:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8T50OV4015231 for ; Sat, 29 Sep 2012 05:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8T50O02015225; Sat, 29 Sep 2012 05:00:24 GMT (envelope-from gnats) Date: Sat, 29 Sep 2012 05:00:24 GMT Message-Id: <201209290500.q8T50O02015225@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/172155: [PATCH] science/peekabot request maintainer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 05:00:24 -0000 The following reply was made to PR ports/172155; it has been noted by GNATS. From: Edwin Groothuis To: 5u623l20@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/172155: [PATCH] science/peekabot request maintainer Date: Sat, 29 Sep 2012 04:50:12 UT Maintainer of science/peekabot, Please note that PR ports/172155 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/172155 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 05:10:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62E5B106566B for ; Sat, 29 Sep 2012 05:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 33DDA8FC0A for ; Sat, 29 Sep 2012 05:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8T5A8xt023976 for ; Sat, 29 Sep 2012 05:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8T5A8Qm023968; Sat, 29 Sep 2012 05:10:08 GMT (envelope-from gnats) Date: Sat, 29 Sep 2012 05:10:08 GMT Message-Id: <201209290510.q8T5A8Qm023968@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Muhammad Moinur Rahman <5u623l20@gmail.com> Cc: Subject: Re: ports/172155: [PATCH] science/peekabot request maintainer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Muhammad Moinur Rahman <5u623l20@gmail.com> List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 05:10:08 -0000 The following reply was made to PR ports/172155; it has been noted by GNATS. From: Muhammad Moinur Rahman <5u623l20@gmail.com> To: bug-followup@freebsd.org Cc: Subject: Re: ports/172155: [PATCH] science/peekabot request maintainer Date: Sat, 29 Sep 2012 11:07:56 +0600 --047d7bf0d174d0d88704cad027d3 Content-Type: text/plain; charset=UTF-8 Approved. On Sat, Sep 29, 2012 at 10:50 AM, Edwin Groothuis wrote: > Maintainer of science/peekabot, > > Please note that PR ports/172155 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/172155 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > --047d7bf0d174d0d88704cad027d3 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Approved= .

On Sat, Sep 29, 20= 12 at 10:50 AM, Edwin Groothuis <edwin@freebsd.org> wrote:
Maintainer of science/peekabot,

Please note that PR ports/172155 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
=C2=A0 =C2=A0 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dpor= ts/172155

--
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org

--047d7bf0d174d0d88704cad027d3-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 06:26:00 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42E04106566B; Sat, 29 Sep 2012 06:26:00 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 15C648FC08; Sat, 29 Sep 2012 06:26:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8T6PxMh095916; Sat, 29 Sep 2012 06:25:59 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8T6Px8s095912; Sat, 29 Sep 2012 01:25:59 -0500 (CDT) (envelope-from bdrewery) Date: Sat, 29 Sep 2012 01:25:59 -0500 (CDT) Message-Id: <201209290625.q8T6Px8s095912@freefall.freebsd.org> To: 5u623l20@gmail.com, bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/172155: [PATCH] science/peekabot request maintainer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 06:26:00 -0000 Synopsis: [PATCH] science/peekabot request maintainer Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Sat Sep 29 01:25:59 CDT 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172155 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 08:10:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88DAF1065675 for ; Sat, 29 Sep 2012 08:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 48B8B8FC12 for ; Sat, 29 Sep 2012 08:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8T8ABJ6097875 for ; Sat, 29 Sep 2012 08:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8T8AB9J097872; Sat, 29 Sep 2012 08:10:11 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 08:10:11 GMT Resent-Message-Id: <201209290810.q8T8AB9J097872@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, RyoTa SimaMoto Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1DED106566B for ; Sat, 29 Sep 2012 08:06:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CDA9A8FC0C for ; Sat, 29 Sep 2012 08:06:19 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8T86JDQ015747 for ; Sat, 29 Sep 2012 08:06:19 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8T86J1p015733; Sat, 29 Sep 2012 08:06:19 GMT (envelope-from nobody) Message-Id: <201209290806.q8T86J1p015733@red.freebsd.org> Date: Sat, 29 Sep 2012 08:06:19 GMT From: RyoTa SimaMoto To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172156: graphics/opencv with QT4 option needs qtestlib too X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 08:10:11 -0000 >Number: 172156 >Category: ports >Synopsis: graphics/opencv with QT4 option needs qtestlib too >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 08:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: RyoTa SimaMoto >Release: 9-STABLE >Organization: >Environment: FreeBSD takiba.fakenet 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0 r240880: Tue Sep 25 17:08:36 JST 2012 root@takiba.fakenet:/usr/obj/usr/src/sys/VAIO i386 >Description: When enabling QT4 option (Build with Qt backend support), OpenCV-2.3.1 fails to build of modules/highgui/src/window_QT.cpp with an error message like as: In file included from /usr/ports/graphics/opencv/work/OpenCV-2.3.1/modules/highgui/src/window_QT.cpp:44: /usr/ports/graphics/opencv/work/OpenCV-2.3.1/modules/highgui/src/window_QT.h:82:10: fatal error: 'QtTest/QTest' file not found #include ^ 1 warning and 1 error generated. >How-To-Repeat: >Fix: Add 'qtestlib' into USE_QT4 variable collection of the port's Makefile >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 08:10:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B1B1106564A; Sat, 29 Sep 2012 08:10:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2EDBA8FC0A; Sat, 29 Sep 2012 08:10:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8T8ANlc000684; Sat, 29 Sep 2012 08:10:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8T8ANu1000677; Sat, 29 Sep 2012 08:10:23 GMT (envelope-from edwin) Date: Sat, 29 Sep 2012 08:10:23 GMT Message-Id: <201209290810.q8T8ANu1000677@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mm@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172156: graphics/opencv with QT4 option needs qtestlib too X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 08:10:23 -0000 Synopsis: graphics/opencv with QT4 option needs qtestlib too Responsible-Changed-From-To: freebsd-ports-bugs->mm Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 29 08:10:22 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172156 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 10:55:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A428C1065680; Sat, 29 Sep 2012 10:55:07 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5C8AC8FC08; Sat, 29 Sep 2012 10:55:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TAt7Ae055011; Sat, 29 Sep 2012 10:55:07 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TAt70i055007; Sat, 29 Sep 2012 10:55:07 GMT (envelope-from pawel) Date: Sat, 29 Sep 2012 10:55:07 GMT Message-Id: <201209291055.q8TAt70i055007@freefall.freebsd.org> To: nemysis@gmx.ch, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/171881: [NEW PORT] multimedia/freetuxtv: WebTV player based on GTK2+ and LibVLC X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 10:55:07 -0000 Synopsis: [NEW PORT] multimedia/freetuxtv: WebTV player based on GTK2+ and LibVLC State-Changed-From-To: open->closed State-Changed-By: pawel State-Changed-When: Sat Sep 29 10:55:06 UTC 2012 State-Changed-Why: New port added, with minor changes. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=171881 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 11:00:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E306C106566C for ; Sat, 29 Sep 2012 11:00:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CB9908FC08 for ; Sat, 29 Sep 2012 11:00:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TB0K04055555 for ; Sat, 29 Sep 2012 11:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TB0KXE055546; Sat, 29 Sep 2012 11:00:20 GMT (envelope-from gnats) Date: Sat, 29 Sep 2012 11:00:20 GMT Message-Id: <201209291100.q8TB0KXE055546@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/171881: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 11:00:21 -0000 The following reply was made to PR ports/171881; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/171881: commit references a PR Date: Sat, 29 Sep 2012 10:55:17 +0000 (UTC) Author: pawel Date: Sat Sep 29 10:54:52 2012 New Revision: 305032 URL: http://svn.freebsd.org/changeset/ports/305032 Log: FreetuxTV is a WebTV player working on the Linux platform based on GTK2+ and LibVLC. The goal of this project is to create a WebTV player. It can be used by french people to watch ADSL TV on the PC with ISPs or by other people to watch WebTV and Web Radio in many languages. The GUI is developed in GTK2+ and is using the VLC engine to display the channels. Features : - Play TV (Free, SFR and WebTV) - Play in full screen mode - Play in miniature Mode - Support for multimedia keys - Add new groups of channels from M3U playlists WWW: https://code.google.com/p/freetuxtv/wiki/HomePage?wl=en PR: ports/171881 Submitted by: nemysis Added: head/multimedia/freetuxtv/ head/multimedia/freetuxtv/Makefile (contents, props changed) head/multimedia/freetuxtv/distinfo (contents, props changed) head/multimedia/freetuxtv/files/ head/multimedia/freetuxtv/files/patch-po-Makefile.in.in (contents, props changed) head/multimedia/freetuxtv/pkg-descr (contents, props changed) head/multimedia/freetuxtv/pkg-plist (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Sat Sep 29 08:04:31 2012 (r305031) +++ head/multimedia/Makefile Sat Sep 29 10:54:52 2012 (r305032) @@ -62,6 +62,7 @@ SUBDIR += flvtool++ SUBDIR += fpc-dts SUBDIR += fpc-matroska + SUBDIR += freetuxtv SUBDIR += freevo SUBDIR += fxtv SUBDIR += gaupol Added: head/multimedia/freetuxtv/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/freetuxtv/Makefile Sat Sep 29 10:54:52 2012 (r305032) @@ -0,0 +1,54 @@ +# $FreeBSD$ + +PORTNAME= freetuxtv +PORTVERSION= 0.6.5 +CATEGORIES= multimedia +MASTER_SITES= GOOGLE_CODE + +MAINTAINER= nemysis@gmx.ch +COMMENT= WebTV player based on GTK2+ and LibVLC + +LICENSE= GPLv3 + +LIB_DEPENDS= vlc:${PORTSDIR}/multimedia/vlc \ + dbus-glib:${PORTSDIR}/devel/dbus-glib \ + sqlite3:${PORTSDIR}/databases/sqlite3 \ + curl:${PORTSDIR}/ftp/curl \ + notify:${PORTSDIR}/devel/libnotify \ + pthread-stubs:${PORTSDIR}/devel/libpthread-stubs \ + pcre:${PORTSDIR}/devel/pcre \ + cairo:${PORTSDIR}/graphics/cairo \ + png15:${PORTSDIR}/graphics/png \ + freetype:${PORTSDIR}/print/freetype2 \ + expat:${PORTSDIR}/textproc/expat2 \ + fontconfig:${PORTSDIR}/x11-fonts/fontconfig \ + xcb:${PORTSDIR}/x11/libxcb + +USE_GNOME= glib20 gtk20 +USE_XORG= pixman x11 xau xcomposite xcursor xdamage xdmcp xext xfixes \ + xi xinerama xrandr xrender +GNU_CONFIGURE= yes +USE_GMAKE= yes +USE_PKGCONF= build +USE_ICONV= yes +INSTALLS_ICONS= yes + +CONFIGURE_ARGS+=--with-gtk=2.0 + +OPTIONS_DEFINE= NLS +OPTIONS_DEFAULT= NLS + +.include + +.if ${PORT_OPTIONS:MNLS} +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+= --disable-nls +PLIST_SUB+= NLS="@comment " +.endif + +post-install: + ${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png ${PREFIX}/share/pixmaps/ + +.include Added: head/multimedia/freetuxtv/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/freetuxtv/distinfo Sat Sep 29 10:54:52 2012 (r305032) @@ -0,0 +1,2 @@ +SHA256 (freetuxtv-0.6.5.tar.gz) = aa437510fb192c7fcece4ef39344ea8098e2c66bd4878c95a425e02a25954356 +SIZE (freetuxtv-0.6.5.tar.gz) = 1445535 Added: head/multimedia/freetuxtv/files/patch-po-Makefile.in.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/freetuxtv/files/patch-po-Makefile.in.in Sat Sep 29 10:54:52 2012 (r305032) @@ -0,0 +1,11 @@ +--- po/Makefile.in.in.orig 2012-05-08 19:34:01.000000000 +0200 ++++ po/Makefile.in.in 2012-09-22 10:34:08.000000000 +0200 +@@ -34,7 +34,7 @@ + datarootdir = @datarootdir@ + libdir = @libdir@ + DATADIRNAME = @DATADIRNAME@ +-itlocaledir = $(prefix)/$(DATADIRNAME)/locale ++itlocaledir = $(datarootdir)/locale + subdir = po + install_sh = @install_sh@ + # Automake >= 1.8 provides @mkdir_p@. Added: head/multimedia/freetuxtv/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/freetuxtv/pkg-descr Sat Sep 29 10:54:52 2012 (r305032) @@ -0,0 +1,16 @@ +FreetuxTV is a WebTV player working on the Linux platform based on GTK2+ +and LibVLC. + +The goal of this project is to create a WebTV player. +It can be used by french people to watch ADSL TV on the PC with ISPs or by +other people to watch WebTV and Web Radio in many languages. The GUI is +developed in GTK2+ and is using the VLC engine to display the channels. + +Features : + - Play TV (Free, SFR and WebTV) + - Play in full screen mode + - Play in miniature Mode + - Support for multimedia keys + - Add new groups of channels from M3U playlists + +WWW: https://code.google.com/p/freetuxtv/wiki/HomePage?wl=en Added: head/multimedia/freetuxtv/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/freetuxtv/pkg-plist Sat Sep 29 10:54:52 2012 (r305032) @@ -0,0 +1,462 @@ +bin/freetuxtv +include/libdbevolution/db-evolution-instance.h +include/libvlc-gtk/gtk-libvlc-include.h +include/libvlc-gtk/gtk-libvlc-instance.h +include/libvlc-gtk/gtk-libvlc-media-player.h +include/libvlc-gtk/gtk-libvlc-media.h +lib/libdbevolution.a +lib/libdbevolution.la +lib/libvlc-gtk.a +lib/libvlc-gtk.la +share/applications/freetuxtv.desktop +%%DATADIR%%/channels_groups.xml +%%DATADIR%%/doc/AUTHORS +%%DATADIR%%/doc/COPYING +%%DATADIR%%/doc/ChangeLog +%%DATADIR%%/doc/INSTALL +%%DATADIR%%/doc/NEWS +%%DATADIR%%/doc/README +%%DATADIR%%/images/channels/100pourcentradio.png +%%DATADIR%%/images/channels/1onairconnect.png +%%DATADIR%%/images/channels/2mmaroc.png +%%DATADIR%%/images/channels/_none.png +%%DATADIR%%/images/channels/ab1.png +%%DATADIR%%/images/channels/abmoteurs.png +%%DATADIR%%/images/channels/abudhabitv.png +%%DATADIR%%/images/channels/accrotv.png +%%DATADIR%%/images/channels/aci.png +%%DATADIR%%/images/channels/action.png +%%DATADIR%%/images/channels/adofm.png +%%DATADIR%%/images/channels/aljazeera.png +%%DATADIR%%/images/channels/aljazeerachildren.png +%%DATADIR%%/images/channels/aljazeerainternational.png +%%DATADIR%%/images/channels/almasriya.png +%%DATADIR%%/images/channels/alouettefm.png +%%DATADIR%%/images/channels/alsace20.png +%%DATADIR%%/images/channels/alsatictv.png +%%DATADIR%%/images/channels/america-free-tv.png +%%DATADIR%%/images/channels/apsaratv.png +%%DATADIR%%/images/channels/aptv.png +%%DATADIR%%/images/channels/archeotv.png +%%DATADIR%%/images/channels/argentquebec.png +%%DATADIR%%/images/channels/armeniapublictv.png +%%DATADIR%%/images/channels/armeniatv.png +%%DATADIR%%/images/channels/arretsurimages.png +%%DATADIR%%/images/channels/artchannel.png +%%DATADIR%%/images/channels/arte.png +%%DATADIR%%/images/channels/artplatv.png +%%DATADIR%%/images/channels/astrocentertv.png +%%DATADIR%%/images/channels/astv.png +%%DATADIR%%/images/channels/aupradio.png +%%DATADIR%%/images/channels/babylontv.png +%%DATADIR%%/images/channels/bambochtv.png +%%DATADIR%%/images/channels/baraem.png +%%DATADIR%%/images/channels/bastilletv.png +%%DATADIR%%/images/channels/bbc.png +%%DATADIR%%/images/channels/bbcworld.png +%%DATADIR%%/images/channels/bbcworldnews.png +%%DATADIR%%/images/channels/beijingtv.png +%%DATADIR%%/images/channels/bestofshopping.png +%%DATADIR%%/images/channels/beurfm.png +%%DATADIR%%/images/channels/beurtv.png +%%DATADIR%%/images/channels/bfmradio.png +%%DATADIR%%/images/channels/bfmtv.png +%%DATADIR%%/images/channels/biscottetv.png +%%DATADIR%%/images/channels/bloombergtv.png +%%DATADIR%%/images/channels/boardriderstv.png +%%DATADIR%%/images/channels/bulgariatv.png +%%DATADIR%%/images/channels/c9.png +%%DATADIR%%/images/channels/calaistv.png +%%DATADIR%%/images/channels/canal10tucuman.png +%%DATADIR%%/images/channels/canal26.png +%%DATADIR%%/images/channels/canal4sanjuan.png +%%DATADIR%%/images/channels/canal5tucuman.png +%%DATADIR%%/images/channels/canal6posadas.png +%%DATADIR%%/images/channels/canal9entrerios.png +%%DATADIR%%/images/channels/canalacademie.png +%%DATADIR%%/images/channels/canalalgerie.png +%%DATADIR%%/images/channels/canalinfonews.png +%%DATADIR%%/images/channels/canalmoza.png +%%DATADIR%%/images/channels/canalplus.png +%%DATADIR%%/images/channels/canalrural.png +%%DATADIR%%/images/channels/canalsavoir.png +%%DATADIR%%/images/channels/canaltv.png +%%DATADIR%%/images/channels/cap24-paris.png +%%DATADIR%%/images/channels/cashtv.png +%%DATADIR%%/images/channels/cctv1.png +%%DATADIR%%/images/channels/cctv10.png +%%DATADIR%%/images/channels/cctv11.png +%%DATADIR%%/images/channels/cctv12.png +%%DATADIR%%/images/channels/cctv2.png +%%DATADIR%%/images/channels/cctv4.png +%%DATADIR%%/images/channels/cctv7.png +%%DATADIR%%/images/channels/cctv9.png +%%DATADIR%%/images/channels/cctv_e.png +%%DATADIR%%/images/channels/cctvdivertissement.png +%%DATADIR%%/images/channels/cctvf.png +%%DATADIR%%/images/channels/channelonerussia-orti.png +%%DATADIR%%/images/channels/chantefrance.png +%%DATADIR%%/images/channels/cheriefm.png +%%DATADIR%%/images/channels/chongqing_tv.png +%%DATADIR%%/images/channels/cinefirst.png +%%DATADIR%%/images/channels/cinefx.png +%%DATADIR%%/images/channels/cinepolar.png +%%DATADIR%%/images/channels/ckiafm.png +%%DATADIR%%/images/channels/claptv.png +%%DATADIR%%/images/channels/clermontpremiere.png +%%DATADIR%%/images/channels/clubbingtv.png +%%DATADIR%%/images/channels/cmusictv.png +%%DATADIR%%/images/channels/cnbc.png +%%DATADIR%%/images/channels/contactfm.png +%%DATADIR%%/images/channels/corriland.png +%%DATADIR%%/images/channels/couleur3-rsr.png +%%DATADIR%%/images/channels/cpac.png +%%DATADIR%%/images/channels/ct2e.png +%%DATADIR%%/images/channels/demaintv.png +%%DATADIR%%/images/channels/direct8.png +%%DATADIR%%/images/channels/directstar.png +%%DATADIR%%/images/channels/dubaitv.png +%%DATADIR%%/images/channels/dwtv-deutschewelle.png +%%DATADIR%%/images/channels/ekodesgarrigues.png +%%DATADIR%%/images/channels/equidia.png +%%DATADIR%%/images/channels/ertworld.png +%%DATADIR%%/images/channels/espacefm.png +%%DATADIR%%/images/channels/espacemusique.png +%%DATADIR%%/images/channels/etbsat.png +%%DATADIR%%/images/channels/euronews.png +%%DATADIR%%/images/channels/europe1.png +%%DATADIR%%/images/channels/evasionfm.png +%%DATADIR%%/images/channels/extra3channel.png +%%DATADIR%%/images/channels/fashiontv.png +%%DATADIR%%/images/channels/fazzmusic.png +%%DATADIR%%/images/channels/fcradiolessentiel.png +%%DATADIR%%/images/channels/fip.png +%%DATADIR%%/images/channels/flyfm.png +%%DATADIR%%/images/channels/fmen.png +%%DATADIR%%/images/channels/foxlife.png +%%DATADIR%%/images/channels/france2.png +%%DATADIR%%/images/channels/france24.png +%%DATADIR%%/images/channels/france3.png +%%DATADIR%%/images/channels/france4.png +%%DATADIR%%/images/channels/france5.png +%%DATADIR%%/images/channels/francebleu.png +%%DATADIR%%/images/channels/franceculture.png +%%DATADIR%%/images/channels/franceinfo.png +%%DATADIR%%/images/channels/franceinter.png +%%DATADIR%%/images/channels/francemusique.png +%%DATADIR%%/images/channels/franceo.png +%%DATADIR%%/images/channels/franceteleachat.png +%%DATADIR%%/images/channels/francevivace.png +%%DATADIR%%/images/channels/freenewstv.png +%%DATADIR%%/images/channels/frequence3.png +%%DATADIR%%/images/channels/frequenceindia.png +%%DATADIR%%/images/channels/funradio.png +%%DATADIR%%/images/channels/funtv.png +%%DATADIR%%/images/channels/gameone.png +%%DATADIR%%/images/channels/gameonemusichd.png +%%DATADIR%%/images/channels/godtv.png +%%DATADIR%%/images/channels/gong.png +%%DATADIR%%/images/channels/grandlille_tv.png +%%DATADIR%%/images/channels/grossecaisse.png +%%DATADIR%%/images/channels/guangdongsoutherntv.png +%%DATADIR%%/images/channels/gulli.png +%%DATADIR%%/images/channels/guysentv.png +%%DATADIR%%/images/channels/hebei_tv.png +%%DATADIR%%/images/channels/heilongjiangtv.png +%%DATADIR%%/images/channels/hilaltv.png +%%DATADIR%%/images/channels/hiscore.png +%%DATADIR%%/images/channels/hitmusictv.png +%%DATADIR%%/images/channels/hitwest.png +%%DATADIR%%/images/channels/hunansatellitetv.png +%%DATADIR%%/images/channels/idf1.png +%%DATADIR%%/images/channels/imedtv.png +%%DATADIR%%/images/channels/infosport.png +%%DATADIR%%/images/channels/inraci.png +%%DATADIR%%/images/channels/inspirationnetwork.png +%%DATADIR%%/images/channels/ishtartv.png +%%DATADIR%%/images/channels/itelevision.png +%%DATADIR%%/images/channels/jamzine.png +%%DATADIR%%/images/channels/jazzradio-exfrequencejazz.png +%%DATADIR%%/images/channels/jazzradioblack.png +%%DATADIR%%/images/channels/jazzradioblues.png +%%DATADIR%%/images/channels/jazzradioladies.png +%%DATADIR%%/images/channels/jazzradiolounge.png +%%DATADIR%%/images/channels/jazzradioreprises.png +%%DATADIR%%/images/channels/jet.png +%%DATADIR%%/images/channels/jordansatellitechannel.png +%%DATADIR%%/images/channels/jpopsukitv.png +%%DATADIR%%/images/channels/jukebox.png +%%DATADIR%%/images/channels/kanal24.png +%%DATADIR%%/images/channels/kanal7int.png +%%DATADIR%%/images/channels/kanalavrupa.png +%%DATADIR%%/images/channels/kiss-fm.png +%%DATADIR%%/images/channels/kto.png +%%DATADIR%%/images/channels/kuwaittv1.png +%%DATADIR%%/images/channels/kuwaittv2.png +%%DATADIR%%/images/channels/labelletv.png +%%DATADIR%%/images/channels/lachainechinoise.png +%%DATADIR%%/images/channels/lachainedejiangsu.png +%%DATADIR%%/images/channels/lachaineparlementaire.png +%%DATADIR%%/images/channels/lalocale.png +%%DATADIR%%/images/channels/laradiodelamer.png +%%DATADIR%%/images/channels/lcm-marseille.png +%%DATADIR%%/images/channels/lcnquebec.png +%%DATADIR%%/images/channels/lemouv.png +%%DATADIR%%/images/channels/lequipetv.png +%%DATADIR%%/images/channels/libertytv.png +%%DATADIR%%/images/channels/localesidf.png +%%DATADIR%%/images/channels/luxetv.png +%%DATADIR%%/images/channels/m6.png +%%DATADIR%%/images/channels/m6boutique.png +%%DATADIR%%/images/channels/m6musicblack.png +%%DATADIR%%/images/channels/m6musicclub.png +%%DATADIR%%/images/channels/m6musichits.png +%%DATADIR%%/images/channels/m6musicrock.png +%%DATADIR%%/images/channels/mangas.png +%%DATADIR%%/images/channels/mboatv.png +%%DATADIR%%/images/channels/mce-ma_chaine_etudiante.png +%%DATADIR%%/images/channels/mcm.png +%%DATADIR%%/images/channels/mcmpop.png +%%DATADIR%%/images/channels/mcmtop.png +%%DATADIR%%/images/channels/medi1sat.png +%%DATADIR%%/images/channels/metropolys.png +%%DATADIR%%/images/channels/mezzo.png +%%DATADIR%%/images/channels/mfm.png +%%DATADIR%%/images/channels/mfmflashback.png +%%DATADIR%%/images/channels/mfmserenite.png +%%DATADIR%%/images/channels/mfmsexy.png +%%DATADIR%%/images/channels/mixxradio.png +%%DATADIR%%/images/channels/miziktropical.png +%%DATADIR%%/images/channels/mjcapt.png +%%DATADIR%%/images/channels/modem-radio.png +%%DATADIR%%/images/channels/montecarlodoualiya.png +%%DATADIR%%/images/channels/montereybayaquarium.png +%%DATADIR%%/images/channels/mosaiquefm.png +%%DATADIR%%/images/channels/mplusm.png +%%DATADIR%%/images/channels/mtv.png +%%DATADIR%%/images/channels/mtv2.png +%%DATADIR%%/images/channels/mtvdance.png +%%DATADIR%%/images/channels/mtvhits.png +%%DATADIR%%/images/channels/musicplusclassicrock.png +%%DATADIR%%/images/channels/musicplushits.png +%%DATADIR%%/images/channels/musicpluspoprock.png +%%DATADIR%%/images/channels/myzentv.png +%%DATADIR%%/images/channels/nasatv.png +%%DATADIR%%/images/channels/natgeomusic.png +%%DATADIR%%/images/channels/nationalgeographic.png +%%DATADIR%%/images/channels/nhk.png +%%DATADIR%%/images/channels/nightmagcom.png +%%DATADIR%%/images/channels/nolife.png +%%DATADIR%%/images/channels/normandietv.png +%%DATADIR%%/images/channels/nostalgie.png +%%DATADIR%%/images/channels/nrj.png +%%DATADIR%%/images/channels/nrj12.png +%%DATADIR%%/images/channels/nrjhits.png +%%DATADIR%%/images/channels/nrjnouveautes.png +%%DATADIR%%/images/channels/nrjparis.png +%%DATADIR%%/images/channels/nt1.png +%%DATADIR%%/images/channels/nti.png +%%DATADIR%%/images/channels/orangesportinfos.png +%%DATADIR%%/images/channels/orleanstv.png +%%DATADIR%%/images/channels/ouesttv.png +%%DATADIR%%/images/channels/ouifm.png +%%DATADIR%%/images/channels/oxyradio.png +%%DATADIR%%/images/channels/ozradio.png +%%DATADIR%%/images/channels/parentheseradio.png +%%DATADIR%%/images/channels/parispremiere.png +%%DATADIR%%/images/channels/phoenixchinesenewsandentertainment.png +%%DATADIR%%/images/channels/phoenixinfonews.png +%%DATADIR%%/images/channels/physiquetv.png +%%DATADIR%%/images/channels/pokerchannel.png +%%DATADIR%%/images/channels/powerturktv.png +%%DATADIR%%/images/channels/presstv.png +%%DATADIR%%/images/channels/publicsenat.png +%%DATADIR%%/images/channels/purescreens.png +%%DATADIR%%/images/channels/radio-corsica.png +%%DATADIR%%/images/channels/radio-scoop-powerdance.png +%%DATADIR%%/images/channels/radio-tropicale.png +%%DATADIR%%/images/channels/radio8.png +%%DATADIR%%/images/channels/radiocanada.png +%%DATADIR%%/images/channels/radiocean.png +%%DATADIR%%/images/channels/radioclapas.png +%%DATADIR%%/images/channels/radioclassique.png +%%DATADIR%%/images/channels/radioethic.png +%%DATADIR%%/images/channels/radiofg.png +%%DATADIR%%/images/channels/radiofgamerica.png +%%DATADIR%%/images/channels/radiofgchic.png +%%DATADIR%%/images/channels/radiofgclassics.png +%%DATADIR%%/images/channels/radiofgdance.png +%%DATADIR%%/images/channels/radiofgunderground.png +%%DATADIR%%/images/channels/radioicietmaintenant.png +%%DATADIR%%/images/channels/radiojunior.png +%%DATADIR%%/images/channels/radiolatina.png +%%DATADIR%%/images/channels/radiolibertaire.png +%%DATADIR%%/images/channels/radiomelodie.png +%%DATADIR%%/images/channels/radiomontblanc.png +%%DATADIR%%/images/channels/radioneo.png +%%DATADIR%%/images/channels/radionotredame.png +%%DATADIR%%/images/channels/radionova.png +%%DATADIR%%/images/channels/radioo.png +%%DATADIR%%/images/channels/radiopublicsante.png +%%DATADIR%%/images/channels/radioscoop.png +%%DATADIR%%/images/channels/radioscoop80s.png +%%DATADIR%%/images/channels/radioscoopmusicpod.png +%%DATADIR%%/images/channels/radiosingsing.png +%%DATADIR%%/images/channels/radiostar.png +%%DATADIR%%/images/channels/radiosun.png +%%DATADIR%%/images/channels/rai.png +%%DATADIR%%/images/channels/raidue.png +%%DATADIR%%/images/channels/railtv.png +%%DATADIR%%/images/channels/raitre.png +%%DATADIR%%/images/channels/raiuno.png +%%DATADIR%%/images/channels/rbg.png +%%DATADIR%%/images/channels/rdicanada.png +%%DATADIR%%/images/channels/recordinternacional.png +%%DATADIR%%/images/channels/relaxtv.png +%%DATADIR%%/images/channels/renaulttv.png +%%DATADIR%%/images/channels/reservoirfilms.png +%%DATADIR%%/images/channels/rfi.png +%%DATADIR%%/images/channels/rfm.png +%%DATADIR%%/images/channels/rfo.png +%%DATADIR%%/images/channels/rireetchansons.png +%%DATADIR%%/images/channels/rkingtv.png +%%DATADIR%%/images/channels/rmc.png +%%DATADIR%%/images/channels/rmn.png +%%DATADIR%%/images/channels/rne.png +%%DATADIR%%/images/channels/rocktv.png +%%DATADIR%%/images/channels/rossija24.png +%%DATADIR%%/images/channels/rsr-suisse.png +%%DATADIR%%/images/channels/rtbf.png +%%DATADIR%%/images/channels/rtcgsat.png +%%DATADIR%%/images/channels/rtcteleliege.png +%%DATADIR%%/images/channels/rtl.png +%%DATADIR%%/images/channels/rtl2.png +%%DATADIR%%/images/channels/rtl9.png +%%DATADIR%%/images/channels/rtpi.png +%%DATADIR%%/images/channels/rtrplaneta.png +%%DATADIR%%/images/channels/rtsfm.png +%%DATADIR%%/images/channels/russiatoday.png +%%DATADIR%%/images/channels/rve.png +%%DATADIR%%/images/channels/sabcnews.png +%%DATADIR%%/images/channels/samanyolutv.png +%%DATADIR%%/images/channels/seebittv.png +%%DATADIR%%/images/channels/shanghaidragontv.png +%%DATADIR%%/images/channels/shenzhen_tv.png +%%DATADIR%%/images/channels/skynews.png +%%DATADIR%%/images/channels/skynewsinternational.png +%%DATADIR%%/images/channels/skyrock.png +%%DATADIR%%/images/channels/soleil_la_radio.png +%%DATADIR%%/images/channels/soleiltv.png +%%DATADIR%%/images/channels/souvenirfromearth.png +%%DATADIR%%/images/channels/stlfm.png +%%DATADIR%%/images/channels/sudradio.png +%%DATADIR%%/images/channels/suroyotv.png +%%DATADIR%%/images/channels/tele102.png +%%DATADIR%%/images/channels/teleblagon.png +%%DATADIR%%/images/channels/telegrenoble.png +%%DATADIR%%/images/channels/telemelody.png +%%DATADIR%%/images/channels/telenantes.png +%%DATADIR%%/images/channels/telenight.png +%%DATADIR%%/images/channels/telenova.png +%%DATADIR%%/images/channels/teleplaisance.png +%%DATADIR%%/images/channels/telessonne.png +%%DATADIR%%/images/channels/telesur.png +%%DATADIR%%/images/channels/televisionsavoir.png +%%DATADIR%%/images/channels/telif.png +%%DATADIR%%/images/channels/tempomix.png +%%DATADIR%%/images/channels/teva.png +%%DATADIR%%/images/channels/tf1.png +%%DATADIR%%/images/channels/tfou.png +%%DATADIR%%/images/channels/tfouwebtv.png +%%DATADIR%%/images/channels/tllteleloire.png +%%DATADIR%%/images/channels/tlm-lyon.png +%%DATADIR%%/images/channels/tlt-toulouse.png +%%DATADIR%%/images/channels/tmc.png +%%DATADIR%%/images/channels/tn.png +%%DATADIR%%/images/channels/tna.png +%%DATADIR%%/images/channels/topmusic.png +%%DATADIR%%/images/channels/tracetropical.png +%%DATADIR%%/images/channels/tracetv.png +%%DATADIR%%/images/channels/tropiquesfm.png +%%DATADIR%%/images/channels/trt1.png +%%DATADIR%%/images/channels/trtcocuk.png +%%DATADIR%%/images/channels/trtint.png +%%DATADIR%%/images/channels/tsfjazz.png +%%DATADIR%%/images/channels/turnerclassicmovies.png +%%DATADIR%%/images/channels/tv34.png +%%DATADIR%%/images/channels/tv3cat-extvci.png +%%DATADIR%%/images/channels/tv5.png +%%DATADIR%%/images/channels/tv7bordeaux.png +%%DATADIR%%/images/channels/tv7tunisia.png +%%DATADIR%%/images/channels/tv8montblanc.png +%%DATADIR%%/images/channels/tv8moselleest.png +%%DATADIR%%/images/channels/tvaquebec.png +%%DATADIR%%/images/channels/tvbiznes.png +%%DATADIR%%/images/channels/tveint.png +%%DATADIR%%/images/channels/tvfil78.png +%%DATADIR%%/images/channels/tvmeurope-exrtm1-rtmmaroc.png +%%DATADIR%%/images/channels/tvpi.png +%%DATADIR%%/images/channels/tvpolonia-tvp.png +%%DATADIR%%/images/channels/tvromania.png +%%DATADIR%%/images/channels/tvsf.png +%%DATADIR%%/images/channels/tvt.png +%%DATADIR%%/images/channels/tvtours.png +%%DATADIR%%/images/channels/tvvi.png +%%DATADIR%%/images/channels/urbaniatv.png +%%DATADIR%%/images/channels/vesti.png +%%DATADIR%%/images/channels/vh1.png +%%DATADIR%%/images/channels/vh1classic.png +%%DATADIR%%/images/channels/vibration.png +%%DATADIR%%/images/channels/videoclick.png +%%DATADIR%%/images/channels/vietnam-vtv4.png +%%DATADIR%%/images/channels/virgin17.png +%%DATADIR%%/images/channels/virginradio.png +%%DATADIR%%/images/channels/voltage.png +%%DATADIR%%/images/channels/voxafrica.png +%%DATADIR%%/images/channels/w9.png +%%DATADIR%%/images/channels/weo.png +%%DATADIR%%/images/channels/worldfashion.png +%%DATADIR%%/images/channels/xiamenstartv.png +%%DATADIR%%/images/channels/yementv.png +%%DATADIR%%/images/channels/zahratv.png +%%DATADIR%%/images/channels/zdf_de.png +%%DATADIR%%/images/channels/zhejiangstartv.png +%%DATADIR%%/images/channels/zona31.png +%%DATADIR%%/splashscreen.png +%%DATADIR%%/sqlite3-create-tables.sql +%%DATADIR%%/tv_channels.xml +%%DATADIR%%/ui/addchannelsgroups.glade +%%DATADIR%%/ui/addrecording.glade +%%DATADIR%%/ui/channelproperties.glade +%%DATADIR%%/ui/freetuxtv.glade +share/icons/hicolor/16x16/apps/freetuxtv.png +share/icons/hicolor/22x22/apps/freetuxtv.png +share/icons/hicolor/32x32/apps/freetuxtv.png +share/icons/hicolor/48x48/apps/freetuxtv.png +share/icons/hicolor/scalable/apps/freetuxtv.svg +%%NLS%%share/locale/de/LC_MESSAGES/freetuxtv.mo +%%NLS%%share/locale/fr/LC_MESSAGES/freetuxtv.mo +%%NLS%%share/locale/pt/LC_MESSAGES/freetuxtv.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/freetuxtv.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/freetuxtv.mo +share/pixmaps/freetuxtv.png +@dirrmtry share/icons/hicolor/scalable/apps +@dirrmtry share/icons/hicolor/scalable +@dirrmtry share/icons/hicolor/48x48/apps +@dirrmtry share/icons/hicolor/48x48 +@dirrmtry share/icons/hicolor/32x32/apps +@dirrmtry share/icons/hicolor/32x32 +@dirrmtry share/icons/hicolor/22x22/apps +@dirrmtry share/icons/hicolor/22x22 +@dirrmtry share/icons/hicolor/16x16/apps +@dirrmtry share/icons/hicolor/16x16 +@dirrmtry share/icons/hicolor +@dirrmtry share/icons +@dirrm %%DATADIR%%/ui +@dirrm %%DATADIR%%/images/channels +@dirrm %%DATADIR%%/images +@dirrm %%DATADIR%%/doc +@dirrm %%DATADIR%% +@dirrmtry share/applications +@dirrmtry include/libvlc-gtk +@dirrmtry include/libdbevolution _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 13:00:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C682F106566B for ; Sat, 29 Sep 2012 13:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9D26D8FC0A for ; Sat, 29 Sep 2012 13:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TD0JaM067222 for ; Sat, 29 Sep 2012 13:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TD0JJx067221; Sat, 29 Sep 2012 13:00:19 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 13:00:19 GMT Resent-Message-Id: <201209291300.q8TD0JJx067221@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Hartmann Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED2A7106564A for ; Sat, 29 Sep 2012 12:52:00 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id D7A278FC12 for ; Sat, 29 Sep 2012 12:52:00 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TCq0fA069905 for ; Sat, 29 Sep 2012 12:52:00 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8TCq0FS069904; Sat, 29 Sep 2012 12:52:00 GMT (envelope-from nobody) Message-Id: <201209291252.q8TCq0FS069904@red.freebsd.org> Date: Sat, 29 Sep 2012 12:52:00 GMT From: Oliver Hartmann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172157: x11/babl: Version 0.1.10 avaialble and usable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 13:00:19 -0000 >Number: 172157 >Category: ports >Synopsis: x11/babl: Version 0.1.10 avaialble and usable >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 13:00:19 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Hartmann >Release: FreeBSD 10.0-CURRENT/amd64 CLANG & FreeBSD 9.1-PRE/amd64 CLANG >Organization: FU Berlin >Environment: >Description: More modern libraries like GEGL 0.2.0 require more modern libraries like x11/babl version 0.1.10. FreeBSD ports contain the outdated 0.1.6. I was able to compile (CLANG 3.2 and GCC 4.6) and use 0.1.10 with Gimp. More testing with other on x11/babl dependend ports necessary. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # ./babl # ./babl/files # ./babl/files/patch-sse-fixups.c # ./babl/files/patch-docs-Makefile.in # ./babl/files/patch-babl-babl-palette.c # ./babl/distinfo # ./babl/pkg-descr # ./babl/pkg-plist # ./babl/Makefile # echo c - ./babl mkdir -p ./babl > /dev/null 2>&1 echo c - ./babl/files mkdir -p ./babl/files > /dev/null 2>&1 echo x - ./babl/files/patch-sse-fixups.c sed 's/^X//' >./babl/files/patch-sse-fixups.c << '5b2f04ffdc8fd3f3d24bec6bb971ea84' X--- extensions/sse-fixups.c~ X+++ extensions/sse-fixups.c X@@ -23,6 +23,8 @@ X X #if defined(__GNUC__) && (__GNUC__ >= 4) && defined(USE_SSE) && defined(USE_MMX) X X+#include X+ X #include X #include X X@@ -40,11 +42,11 @@ typedef int g2int __attribute__ ((ve X #define g4float_zero g4float_all(0.0) X #define g4float_ff g4float_all(255.0) X X-#define g4float_max(a,b) __builtin_ia32_maxps(a, b) X-#define g4float_min(a,b) __builtin_ia32_minps(a, b) X-#define g4float_cvt2pi(a) __builtin_ia32_cvtps2pi(a) X-#define g4float_movhl(a,b) __builtin_ia32_movhlps(a, b) X-#define g4float_emms __builtin_ia32_emms X+#define g4float_max(a,b) _mm_max_ps(a, b) X+#define g4float_min(a,b) _mm_min_ps(a, b) X+#define g4float_cvt2pi(a) _mm_cvtps_pi32(a) X+#define g4float_movhl(a,b) _mm_movehl_ps(a, b) X+#define g4float_emms _mm_empty X X X static INLINE long 5b2f04ffdc8fd3f3d24bec6bb971ea84 echo x - ./babl/files/patch-docs-Makefile.in sed 's/^X//' >./babl/files/patch-docs-Makefile.in << '9d3d7f377ccad94b812efb22e50dc870' X--- docs/Makefile.in.orig 2010-02-23 09:03:35.000000000 +0100 X+++ docs/Makefile.in 2010-02-23 09:04:01.000000000 +0100 X@@ -637,7 +637,7 @@ X Makefile.am X echo -n "HTML: $@" X cp $< $@ X- (which mktemp > /dev/null 2>&1 && TMPFILE=`mktemp` || TMPFILE="/tmp/babl_build_tempfile" ;\ X+ (which mktemp > /dev/null 2>&1 && TMPFILE=`mktemp -t babl` || TMPFILE="/tmp/babl_build_tempfile" ;\ X export BABL_PATH="$(top_builddir)/extensions:$(top_builddir)/extensions/.libs"; $(babl_html_dump) > $$TMPFILE;\ X $(SHELL) $(top_srcdir)/docs/tools/xml_insert.sh $@ BablBase $$TMPFILE;\ X rm -f $$TMPFILE ) 9d3d7f377ccad94b812efb22e50dc870 echo x - ./babl/files/patch-babl-babl-palette.c sed 's/^X//' >./babl/files/patch-babl-babl-palette.c << '0e6b44de671f8d2092da204a1e34b8e5' X--- babl/babl-palette.c.orig 2012-09-29 14:28:52.000000000 +0200 X+++ babl/babl-palette.c 2012-09-29 14:29:08.000000000 +0200 X@@ -19,7 +19,7 @@ X #include X #include X #include X-#include X+#include X #include X #include "config.h" X #include "babl-internal.h" 0e6b44de671f8d2092da204a1e34b8e5 echo x - ./babl/distinfo sed 's/^X//' >./babl/distinfo << 'b36886a1d87573942d394eb0ddd9b7d8' XSHA256 (babl-0.1.10.tar.bz2) = 943fc36ceac7dd25bc928256bc7b535a42989c6b971578146869eee5fe5955f4 XSIZE (babl-0.1.10.tar.bz2) = 449537 b36886a1d87573942d394eb0ddd9b7d8 echo x - ./babl/pkg-descr sed 's/^X//' >./babl/pkg-descr << '7fa7c51320f1e9ebf3185ff0686175ee' XBabl is a dynamic, any to any, pixel format conversion library. It Xprovides conversions between the myriad of buffer types images can be Xstored in. Babl doesn't only help with existing pixel formats, but also Xfacilitates creation of new and uncommon ones. X XWWW: http://www.gegl.org/babl/ 7fa7c51320f1e9ebf3185ff0686175ee echo x - ./babl/pkg-plist sed 's/^X//' >./babl/pkg-plist << '4ee42826e9b00103b55711926028d6b1' Xinclude/babl-0.1/babl/babl-macros.h Xinclude/babl-0.1/babl/babl-types.h Xinclude/babl-0.1/babl/babl-version.h Xinclude/babl-0.1/babl/babl.h Xlib/babl-0.1/CIE.a Xlib/babl-0.1/CIE.la Xlib/babl-0.1/CIE.so Xlib/babl-0.1/gegl-fixups.a Xlib/babl-0.1/gegl-fixups.la Xlib/babl-0.1/gegl-fixups.so Xlib/babl-0.1/gggl-lies.a Xlib/babl-0.1/gggl-lies.la Xlib/babl-0.1/gggl-lies.so Xlib/babl-0.1/gggl.a Xlib/babl-0.1/gggl.la Xlib/babl-0.1/gggl.so Xlib/babl-0.1/gimp-8bit.a Xlib/babl-0.1/gimp-8bit.la Xlib/babl-0.1/gimp-8bit.so Xlib/babl-0.1/naive-CMYK.a Xlib/babl-0.1/naive-CMYK.la Xlib/babl-0.1/naive-CMYK.so Xlib/babl-0.1/sse-fixups.a Xlib/babl-0.1/sse-fixups.la Xlib/babl-0.1/sse-fixups.so Xlib/girepository-1.0/Babl-0.1.typelib Xlib/libbabl-0.1.a Xlib/libbabl-0.1.la Xlib/libbabl-0.1.so Xlib/libbabl-0.1.so.0 Xlibdata/pkgconfig/babl.pc Xshare/gir-1.0/Babl-0.1.gir X@dirrmtry share/gir-1.0 X@dirrmtry lib/girepository-1.0 X@dirrm lib/babl-0.1 X@dirrm include/babl-0.1/babl X@dirrm include/babl-0.1 4ee42826e9b00103b55711926028d6b1 echo x - ./babl/Makefile sed 's/^X//' >./babl/Makefile << '8b2a9a32165310322432806e6a3f57bb' X# New ports collection makefile for: babl X# Date created: 2008-04-14 X# Whom: Michael Johnson X# X# $FreeBSD: head/x11/babl/Makefile 300897 2012-07-14 14:29:18Z beat $ X# X XPORTNAME= babl XPORTVERSION= 0.1.10 XCATEGORIES= x11 XMASTER_SITES= ftp://ftp.gimp.org/pub/%SUBDIR%/ \ X http://gimp.mirrors.hoobly.com/%SUBDIR%/ \ X http://ftp.gwdg.de/pub/misc/grafik/gimp/%SUBDIR%/ \ X ftp://ftp.fh-heilbronn.de/mirrors/ftp.gimp.org/%SUBDIR%/ \ X ftp://ftp.insync.net/pub/mirrors/ftp.gimp.org/%SUBDIR%/ \ X http://www.mirrorservice.org/sites/ftp.gimp.org/pub/%SUBDIR%/ \ X ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,graphics/%SUBDIR%,} XMASTER_SITE_SUBDIR= babl/${PORTVERSION:R} X XMAINTAINER= gnome@FreeBSD.org XCOMMENT= Dynamic pixel format conversion library X XBUILD_DEPENDS= g-ir-scanner:${PORTSDIR}/devel/gobject-introspection X XUSE_LDCONFIG= yes XUSE_BZIP2= yes XUSE_AUTOTOOLS= libtool XUSE_GNOME= pkgconfig gnomehack ltverhack XUSE_GMAKE= yes X XOPTIONS= SIMD "Use cpu-specific optimizations if available" off X X.include X X.if defined(WITHOUT_SIMD) XCONFIGURE_ARGS+=--disable-mmx \ X --disable-sse \ X --disable-altivec X.endif X Xpost-patch: X @${REINPLACE_CMD} -e 's|x86_64|amd64|g' \ X ${WRKSRC}/configure X X.include 8b2a9a32165310322432806e6a3f57bb exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 13:00:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41845106566B; Sat, 29 Sep 2012 13:00:32 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 138268FC15; Sat, 29 Sep 2012 13:00:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TD0VhE069122; Sat, 29 Sep 2012 13:00:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TD0VhJ069109; Sat, 29 Sep 2012 13:00:31 GMT (envelope-from edwin) Date: Sat, 29 Sep 2012 13:00:31 GMT Message-Id: <201209291300.q8TD0VhJ069109@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172157: x11/babl: Version 0.1.10 avaialble and usable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 13:00:32 -0000 Synopsis: x11/babl: Version 0.1.10 avaialble and usable Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 29 13:00:31 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172157 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 13:10:04 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6640B1065672 for ; Sat, 29 Sep 2012 13:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2FD768FC14 for ; Sat, 29 Sep 2012 13:10:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TDA4Pj076019 for ; Sat, 29 Sep 2012 13:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TDA4TD076018; Sat, 29 Sep 2012 13:10:04 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 13:10:04 GMT Resent-Message-Id: <201209291310.q8TDA4TD076018@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jimmy Olgeni Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 883A61065673; Sat, 29 Sep 2012 13:00:32 +0000 (UTC) (envelope-from g.olgeni@colby.it) Received: from mr003msb.fastweb.it (mr003msb.fastweb.it [85.18.95.87]) by mx1.freebsd.org (Postfix) with ESMTP id 08FD68FC14; Sat, 29 Sep 2012 13:00:32 +0000 (UTC) Received: from mail.colby.tv (93.62.141.58) by mr003msb.fastweb.it (8.5.140.03) id 501F510C0467A7A0; Sat, 29 Sep 2012 14:57:44 +0200 Received: from server.colby.local (localhost [127.0.0.1]) by server.colby.local (8.14.5/8.14.5) with ESMTP id q8TCvhAn029741; Sat, 29 Sep 2012 14:57:43 +0200 (CEST) (envelope-from g.olgeni@colby.it) Received: from exchange.colby.local ([192.168.1.11] helo=exchange.colby.local) with IPv4:25 by server.colby.local; 29 Sep 2012 14:57:43 +0200 Received: from backoffice.colby.local ([192.168.1.56]) by exchange.colby.local over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Sat, 29 Sep 2012 14:57:43 +0200 Received: from backoffice.colby.local (localhost [127.0.0.1]) by backoffice.colby.local (8.14.5/8.14.5) with ESMTP id q8TCvhXM052739; Sat, 29 Sep 2012 14:57:43 +0200 (CEST) (envelope-from olgeni@backoffice.colby.local) Received: (from olgeni@localhost) by backoffice.colby.local (8.14.5/8.14.5/Submit) id q8TCvhEH052738; Sat, 29 Sep 2012 14:57:43 +0200 (CEST) (envelope-from olgeni) Message-Id: <201209291257.q8TCvhEH052738@backoffice.colby.local> Date: Sat, 29 Sep 2012 14:57:43 +0200 (CEST) From: Jimmy Olgeni To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: wen@FreeBSD.org Subject: ports/172158: [PATCH] lang/cython: upgrade to 0.17.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 13:10:04 -0000 >Number: 172158 >Category: ports >Synopsis: [PATCH] lang/cython: upgrade to 0.17.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 13:10:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD olgeni 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #6 r240965: Wed Sep 26 21:29:52 CEST >Description: Upgrade to version 0.17.1. Port maintainer (wen@FreeBSD.org) is cc'd. >How-To-Repeat: >Fix: --- cython-0.17.1.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 305032) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= cython -PORTVERSION= 0.17 +PORTVERSION= 0.17.1 CATEGORIES= lang python MASTER_SITES= http://www.cython.org/release/ \ CHEESESHOP Index: distinfo =================================================================== --- distinfo (revision 305032) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (Cython-0.17.tar.gz) = 3969e04489e498cde982f5bebc774b2193e3ba5f9dff6803fd92b4e4897591a3 -SIZE (Cython-0.17.tar.gz) = 1282137 +SHA256 (Cython-0.17.1.tar.gz) = 0d631b67d73aece33eb98c70257adf946e1e5b31633d701c3fcac2dcf42f0e84 +SIZE (Cython-0.17.1.tar.gz) = 1283146 --- cython-0.17.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 13:10:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB9F0106564A; Sat, 29 Sep 2012 13:10:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9F3178FC15; Sat, 29 Sep 2012 13:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TDAFYk078555; Sat, 29 Sep 2012 13:10:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TDAFbM078547; Sat, 29 Sep 2012 13:10:15 GMT (envelope-from edwin) Date: Sat, 29 Sep 2012 13:10:15 GMT Message-Id: <201209291310.q8TDAFbM078547@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172158: [PATCH] lang/cython: upgrade to 0.17.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 13:10:15 -0000 Synopsis: [PATCH] lang/cython: upgrade to 0.17.1 Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 29 13:10:15 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172158 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 13:36:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CA1E106564A; Sat, 29 Sep 2012 13:36:15 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F8318FC17; Sat, 29 Sep 2012 13:36:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TDaFZh004934; Sat, 29 Sep 2012 13:36:15 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TDaF0q004930; Sat, 29 Sep 2012 13:36:15 GMT (envelope-from pawel) Date: Sat, 29 Sep 2012 13:36:15 GMT Message-Id: <201209291336.q8TDaF0q004930@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/171952: [PATCH] multimedia/dvdauthor: update to 0.7.1, take maintainership, OptionsNG X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 13:36:15 -0000 Synopsis: [PATCH] multimedia/dvdauthor: update to 0.7.1, take maintainership, OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sat Sep 29 13:36:14 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171952 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 13:50:05 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C79FC106564A for ; Sat, 29 Sep 2012 13:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 839A68FC08 for ; Sat, 29 Sep 2012 13:50:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TDo5WF013843 for ; Sat, 29 Sep 2012 13:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TDo55n013842; Sat, 29 Sep 2012 13:50:05 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 13:50:05 GMT Resent-Message-Id: <201209291350.q8TDo55n013842@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Robert jenssen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0FDA106564A for ; Sat, 29 Sep 2012 13:41:57 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CBBF08FC08 for ; Sat, 29 Sep 2012 13:41:57 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TDfvHQ072794 for ; Sat, 29 Sep 2012 13:41:57 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8TDfvIU072793; Sat, 29 Sep 2012 13:41:57 GMT (envelope-from nobody) Message-Id: <201209291341.q8TDfvIU072793@red.freebsd.org> Date: Sat, 29 Sep 2012 13:41:57 GMT From: Robert jenssen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172159: [maintainer update] Update from qrupdate-1.1.1 to qrupdate-1.1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 13:50:05 -0000 >Number: 172159 >Category: ports >Synopsis: [maintainer update] Update from qrupdate-1.1.1 to qrupdate-1.1.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 13:50:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Robert jenssen >Release: 9.0-STABLE >Organization: >Environment: FreeBSD morgawr 9.0-STABLE FreeBSD 9.0-STABLE #0: Mon Jul 9 11:17:10 EST 2012 root@morgawr:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update the port math/qrupdate from qrupdate-1.1.1 to qrupdate-1.1.2. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 305033) +++ Makefile (working copy) @@ -6,10 +6,10 @@ # PORTNAME= qrupdate -PORTVERSION= 1.1.1 +PORTVERSION= 1.1.2 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= qrupdate/qrupdate/1.1 +MASTER_SITE_SUBDIR= qrupdate/qrupdate/1.2 MAINTAINER= robertjenssen@ozemail.com.au COMMENT= Fortran library for fast updates of QR and Cholesky decomposition Index: distinfo =================================================================== --- distinfo (revision 305033) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (qrupdate-1.1.1.tar.gz) = 9f0100d358f96cae9394c28c97dbf1fd359675671d2a2c9ac88cfd121a46662a -SIZE (qrupdate-1.1.1.tar.gz) = 50063 +SHA256 (qrupdate-1.1.2.tar.gz) = e2a1c711dc8ebc418e21195833814cb2f84b878b90a2774365f0166402308e08 +SIZE (qrupdate-1.1.2.tar.gz) = 49734 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 14:30:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BACBC106564A for ; Sat, 29 Sep 2012 14:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8ACB08FC14 for ; Sat, 29 Sep 2012 14:30:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TEU7le049066 for ; Sat, 29 Sep 2012 14:30:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TEU7vX049065; Sat, 29 Sep 2012 14:30:07 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 14:30:07 GMT Resent-Message-Id: <201209291430.q8TEU7vX049065@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kubilay Kocak Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A01521065670; Sat, 29 Sep 2012 14:20:05 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id 652498FC1A; Sat, 29 Sep 2012 14:20:05 +0000 (UTC) Received: by padbi1 with SMTP id bi1so3437859pad.13 for ; Sat, 29 Sep 2012 07:20:05 -0700 (PDT) Received: by 10.66.75.104 with SMTP id b8mr24781038paw.21.1348928404966; Sat, 29 Sep 2012 07:20:04 -0700 (PDT) Received: from freebsd-9-amd64.localdomain (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPS id gf3sm7270562pbc.74.2012.09.29.07.20.02 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 29 Sep 2012 07:20:04 -0700 (PDT) Received: by freebsd-9-amd64.localdomain (Postfix, from userid 1001) id A01903A130; Sun, 30 Sep 2012 00:19:59 +1000 (EST) Message-Id: <20120929141959.A01903A130@freebsd-9-amd64.localdomain> Date: Sun, 30 Sep 2012 00:19:59 +1000 (EST) From: Kubilay Kocak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: nivit@FreeBSD.org Subject: ports/172161: [PATCH] devel/py-nose: update to 1.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 14:30:07 -0000 >Number: 172161 >Category: ports >Synopsis: [PATCH] devel/py-nose: update to 1.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 14:30:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kubilay Kocak >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD freebsd-9-amd64 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Sat Jul 7 21:26:56 EST >Description: - Update to 1.2.1 - Add LICENSE - Add test: target - Update pkg-plist =====[QA]===== portlint: looks fine. porttest: clean redports: https://redports.org/buildarchive/20120929133449-59612/ unittest: Ran 369 tests in 21.186s - OK ============== Port maintainer (nivit@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- py27-nose-1.2.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/py-nose/Makefile ./Makefile --- /usr/ports/devel/py-nose/Makefile 2011-08-31 18:03:49.000000000 +1000 +++ ./Makefile 2012-09-29 23:26:38.000000000 +1000 @@ -1,12 +1,7 @@ -# New ports collection makefile for: py-nose -# Date created: 14 December 2006 -# Whom: Dryice Liu -# # $FreeBSD: ports/devel/py-nose/Makefile,v 1.17 2011/08/31 08:03:49 nivit Exp $ -# PORTNAME= nose -PORTVERSION= 1.1.2 +PORTVERSION= 1.2.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,6 +9,8 @@ MAINTAINER= nivit@FreeBSD.org COMMENT= A discovery-based unittest extension +LICENSE= LGPL21 + # Python3 ready USE_PYTHON= yes USE_PYDISTUTILS= easy_install @@ -27,4 +24,7 @@ ${INSTALL_MAN} ${WRKSRC}/nosetests.1 ${MANPREFIX}/man/man1 .endif +test: build + cd ${WRKSRC} && ${PYTHON_CMD} selftest.py + .include diff -ruN --exclude=CVS /usr/ports/devel/py-nose/distinfo ./distinfo --- /usr/ports/devel/py-nose/distinfo 2011-08-31 18:03:49.000000000 +1000 +++ ./distinfo 2012-09-29 23:22:17.000000000 +1000 @@ -1,2 +1,2 @@ -SHA256 (nose-1.1.2.tar.gz) = b1ba12c1c45323fd8695be68ce7228456b86e51234f167027ebbc4ccda852c61 -SIZE (nose-1.1.2.tar.gz) = 729206 +SHA256 (nose-1.2.1.tar.gz) = 2171e9202d118d302d5db1decb52dd862b79e2a626ca19653a6914574a6ca7d9 +SIZE (nose-1.2.1.tar.gz) = 400377 diff -ruN --exclude=CVS /usr/ports/devel/py-nose/pkg-plist ./pkg-plist --- /usr/ports/devel/py-nose/pkg-plist 2011-01-03 03:57:38.000000000 +1100 +++ ./pkg-plist 2012-09-10 00:10:03.000000000 +1000 @@ -130,9 +130,15 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/suite.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/suite.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/suite.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/tools.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/tools.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/tools.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/tools/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/tools/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/tools/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/tools/nontrivial.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/tools/nontrivial.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/tools/nontrivial.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/tools/trivial.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/tools/trivial.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/tools/trivial.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/twistedtools.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/twistedtools.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/twistedtools.pyo @@ -140,6 +146,7 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/util.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/util.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/util.pyo +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/tools @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/sphinx @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/plugins @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/nose/ext --- py27-nose-1.2.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 14:30:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B56DF106564A; Sat, 29 Sep 2012 14:30:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 894418FC0C; Sat, 29 Sep 2012 14:30:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TEUKY3050957; Sat, 29 Sep 2012 14:30:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TEUKUp050947; Sat, 29 Sep 2012 14:30:20 GMT (envelope-from edwin) Date: Sat, 29 Sep 2012 14:30:20 GMT Message-Id: <201209291430.q8TEUKUp050947@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172161: [PATCH] devel/py-nose: update to 1.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 14:30:20 -0000 Synopsis: [PATCH] devel/py-nose: update to 1.2.1 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 29 14:30:19 UTC 2012 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172161 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 15:40:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB446106566C for ; Sat, 29 Sep 2012 15:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 823648FC0A for ; Sat, 29 Sep 2012 15:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TFe2ui013352 for ; Sat, 29 Sep 2012 15:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TFe2cX013351; Sat, 29 Sep 2012 15:40:02 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 15:40:02 GMT Resent-Message-Id: <201209291540.q8TFe2cX013351@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris Petrik Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D3054106566C for ; Sat, 29 Sep 2012 15:32:18 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BD8CD8FC12 for ; Sat, 29 Sep 2012 15:32:18 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TFWIst051492 for ; Sat, 29 Sep 2012 15:32:18 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8TFWI1P051491; Sat, 29 Sep 2012 15:32:18 GMT (envelope-from nobody) Message-Id: <201209291532.q8TFWI1P051491@red.freebsd.org> Date: Sat, 29 Sep 2012 15:32:18 GMT From: Chris Petrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172163: [PATCH] Request maintainer for ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 15:40:02 -0000 >Number: 172163 >Category: ports >Synopsis: [PATCH] Request maintainer for ports >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 15:40:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Chris Petrik >Release: >Organization: none >Environment: >Description: I always enjoyed using xmms and I noticed no one maintains it so I request the job. Xmms and the bunch of plugins. Bearftp my old port, as well as some others to keep me busy. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: sysutils/xlogmaster/Makefile =================================================================== --- sysutils/xlogmaster/Makefile (revision 304976) +++ sysutils/xlogmaster/Makefile (working copy) @@ -11,7 +11,7 @@ MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Quick & easy monitoring of logfiles and devices USE_GNOME= gtk12 Index: sysutils/xsysstats/Makefile =================================================================== --- sysutils/xsysstats/Makefile (revision 304976) +++ sysutils/xsysstats/Makefile (working copy) @@ -14,7 +14,7 @@ MASTER_SITE_SUBDIR= utilities DISTNAME= ${PORTNAME}${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A system information display tool GNU_CONFIGURE= yes Index: chinese/xmms/Makefile =================================================================== --- chinese/xmms/Makefile (revision 304976) +++ chinese/xmms/Makefile (working copy) @@ -15,6 +15,6 @@ EXTRA_PATCHES= ${.CURDIR}/files/extra-patch-xmms-1.2.x-xfont -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com .include "${MASTERDIR}/Makefile" Index: lang/tcl84-thread/Makefile =================================================================== --- lang/tcl84-thread/Makefile (revision 304976) +++ lang/tcl84-thread/Makefile (working copy) @@ -7,7 +7,7 @@ PORTNAME= tcl -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Tool command language (threads support) BUILDING_TCL_THREADS= yes Index: lang/tcl85-thread/Makefile =================================================================== --- lang/tcl85-thread/Makefile (revision 304976) +++ lang/tcl85-thread/Makefile (working copy) @@ -7,7 +7,7 @@ PORTNAME= tcl -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Tool command language (threads support) BUILDING_TCL_THREADS= yes Index: lang/tcl84/Makefile =================================================================== --- lang/tcl84/Makefile (revision 304976) +++ lang/tcl84/Makefile (working copy) @@ -14,7 +14,7 @@ PKGNAMESUFFIX?= ${THREADS_SUFFIX}${PKGNAMESUFFIX2} DISTNAME= ${PORTNAME}${PORTVERSION}-src -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT?= Tool Command Language LICENSE= BSD Index: lang/tcl85/Makefile =================================================================== --- lang/tcl85/Makefile (revision 304976) +++ lang/tcl85/Makefile (working copy) @@ -13,7 +13,7 @@ PKGNAMESUFFIX?= ${THREADS_SUFFIX}${PKGNAMESUFFIX2} DISTNAME= tcl${PORTVERSION}-src -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT?= Tool Command Language LICENSE= BSD Index: www/plugger-plugins-hubbe/Makefile =================================================================== --- www/plugger-plugins-hubbe/Makefile (revision 304976) +++ www/plugger-plugins-hubbe/Makefile (working copy) @@ -13,7 +13,7 @@ DISTFILES= # empty EXTRACT_ONLY= # empty -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Meta package installing all author-recommended Plugger plugins RUN_DEPENDS= sidplay:${PORTSDIR}/audio/sidplay \ Index: www/plugger/Makefile =================================================================== --- www/plugger/Makefile (revision 304976) +++ www/plugger/Makefile (working copy) @@ -10,7 +10,7 @@ CATEGORIES= www audio graphics multimedia MASTER_SITES= http://fredrik.hubbe.net/plugger/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A multimedia front-end plugin for Mozilla or Opera USE_XORG= xext xt sm ice xext x11 Index: security/sudoscript/Makefile =================================================================== --- security/sudoscript/Makefile (revision 304976) +++ security/sudoscript/Makefile (working copy) @@ -10,7 +10,7 @@ CATEGORIES= security MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%202.1%20release/${PORTNAME}%20${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Audited shells in Perl with sudo(8) and script(1) MAN1= ss.1 sudoshell.1 Index: security/scanssh/Makefile =================================================================== --- security/scanssh/Makefile (revision 304976) +++ security/scanssh/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= security net MASTER_SITES= http://www.monkey.org/~provos/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Scans networks for open proxies, SSH, web, and SMTP servers LIB_DEPENDS= dnet:${PORTSDIR}/net/libdnet \ Index: databases/kmysqladmin/Makefile =================================================================== --- databases/kmysqladmin/Makefile (revision 304976) +++ databases/kmysqladmin/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= databases MASTER_SITES= http://www.alwins-world.de/programs/download/kmysqladmin/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A graphical frontend for administration of MySQL servers USE_AUTOTOOLS= libtool Index: ftp/bareftp/Makefile =================================================================== --- ftp/bareftp/Makefile (revision 304976) +++ ftp/bareftp/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= ftp MASTER_SITES= http://www.bareftp.org/release/ -MAINTAINER= mono@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Ftp client made in C sharp GNU_CONFIGURE= yes Index: ftp/kasablanca/Makefile =================================================================== --- ftp/kasablanca/Makefile (revision 304976) +++ ftp/kasablanca/Makefile (working copy) @@ -11,7 +11,7 @@ MASTER_SITES= BERLIOS \ http://www.hitnet.rwth-aachen.de/~brueffer/distfiles/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Graphical ftp client for KDE EXTRA_PATCHES= ${.CURDIR}/../../x11/kde3/files/extrapatch-old_configure Index: ftp/kbear/Makefile =================================================================== --- ftp/kbear/Makefile (revision 304976) +++ ftp/kbear/Makefile (working copy) @@ -14,7 +14,7 @@ PATCH_SITES= http://www.brueffer.de/distfiles/ PATCHFILES= ${DISTNAME:S/.src/-patch/}.gz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A graphical FTP client for KDE WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/.a.1/alpha1b/} Index: audio/xmms-crystality/Makefile =================================================================== --- audio/xmms-crystality/Makefile (revision 304976) +++ audio/xmms-crystality/Makefile (working copy) @@ -14,7 +14,7 @@ PKGNAMEPREFIX= xmms- DISTNAME= ${PORTNAME}-plugin-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Realtime XMMS plugin for remastering mp3 sound LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: audio/xmms-wma/Makefile =================================================================== --- audio/xmms-wma/Makefile (revision 304976) +++ audio/xmms-wma/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= audio MASTER_SITES= http://mcmcc.bat.ru/xmms-wma/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= WMA plugin for xmms LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: audio/xmms-fxt/Makefile =================================================================== --- audio/xmms-fxt/Makefile (revision 304976) +++ audio/xmms-fxt/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}oolbox/${PORTNAME}-${PORTVERSION}.tar.gz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Surround/Echo effect plugin for XMMS LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: audio/xmms-faad/Makefile =================================================================== --- audio/xmms-faad/Makefile (revision 304976) +++ audio/xmms-faad/Makefile (working copy) @@ -7,7 +7,7 @@ PKGNAMEPREFIX= xmms- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= XMMS plugin for faad MASTERDIR= ${.CURDIR} Index: audio/xmms-quix3dn/Makefile =================================================================== --- audio/xmms-quix3dn/Makefile (revision 304976) +++ audio/xmms-quix3dn/Makefile (working copy) @@ -13,7 +13,7 @@ MASTER_SITE_SUBDIR= alex DISTNAME= quix3dn-${PORTVERSION}-freebsd -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A 3D-sound effect plugin for XMMS LIB_DEPENDS= c.4:${PORTSDIR}/misc/compat4x Index: audio/xmms-modplug/Makefile =================================================================== --- audio/xmms-modplug/Makefile (revision 304976) +++ audio/xmms-modplug/Makefile (working copy) @@ -13,7 +13,7 @@ PKGNAMEPREFIX= xmms- DISTNAME= ${PORTNAME}${PKGNAMEPREFIX}2.05 -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A modplug-based plugin for XMMS LIB_DEPENDS?= xmms.4:${PORTSDIR}/multimedia/xmms Index: audio/xmms-defx/Makefile =================================================================== --- audio/xmms-defx/Makefile (revision 304976) +++ audio/xmms-defx/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= audio MASTER_SITES= SF/defx/defx/${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Multi-effects processor plug-in for XMMS LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: audio/xmms2-scrobbler/Makefile =================================================================== --- audio/xmms2-scrobbler/Makefile (revision 304976) +++ audio/xmms2-scrobbler/Makefile (working copy) @@ -10,7 +10,7 @@ CATEGORIES= audio MASTER_SITES= ftp://ftp.code-monkey.de/pub/${PORTNAME}/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A last.fm submission client for XMMS2 LICENSE= MIT Index: audio/xmms-midi/Makefile =================================================================== --- audio/xmms-midi/Makefile (revision 304976) +++ audio/xmms-midi/Makefile (working copy) @@ -10,7 +10,7 @@ CATEGORIES= audio MASTER_SITES= ftp://ftp.SpringDaemons.com/soft/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= XMMS input plugin to play midi files LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: audio/xmms-eq/Makefile =================================================================== --- audio/xmms-eq/Makefile (revision 304976) +++ audio/xmms-eq/Makefile (working copy) @@ -13,7 +13,7 @@ PKGNAMEPREFIX= xmms- DISTNAME= ${PORTNAME}-xmms-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A realtime graphical equalizer plugin for XMMS LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: audio/xmms-jack/Makefile =================================================================== --- audio/xmms-jack/Makefile (revision 304976) +++ audio/xmms-jack/Makefile (working copy) @@ -10,7 +10,7 @@ CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= XMMS plugin for jack LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms \ Index: audio/xmms-fc/Makefile =================================================================== --- audio/xmms-fc/Makefile (revision 304976) +++ audio/xmms-fc/Makefile (working copy) @@ -13,7 +13,7 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ ${LIBFC_DISTNAME}${EXTRACT_SUFX}:libfc -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A XMMS future composer input plugin LICENSE= GPLv2 GPLv3 Index: audio/xmms-efxmms/Makefile =================================================================== --- audio/xmms-efxmms/Makefile (revision 304976) +++ audio/xmms-efxmms/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= SF/efxmms/EFXmms/EFXmms%20${PORTVERSION} DISTNAME= EFXmms-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Send the XMMS audio output through a queue of multiple effect plugins LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: audio/xmms-infopipe/Makefile =================================================================== --- audio/xmms-infopipe/Makefile (revision 304976) +++ audio/xmms-infopipe/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= http://www.beastwithin.org/users/wwwwolf/code/xmms/ MASTER_SITE_SUBDIR= ${PORTNAME} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Create a named pipe to retrieve xmms info about currently playing song LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: audio/xmms-liveice/Makefile =================================================================== --- audio/xmms-liveice/Makefile (revision 304976) +++ audio/xmms-liveice/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= http://star.arm.ac.uk/~spm/software/ DISTNAME= liveice-xmms -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Use XMMS for streaming audio to Icecast servers LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: audio/xmms-kde/Makefile =================================================================== --- audio/xmms-kde/Makefile (revision 304976) +++ audio/xmms-kde/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= audio kde MASTER_SITES= SF -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Integrates XMMS into the KDE3 Panel LIB_DEPENDS= id3-3.8.3:${PORTSDIR}/audio/id3lib \ Index: audio/xmms-mad/Makefile =================================================================== --- audio/xmms-mad/Makefile (revision 304976) +++ audio/xmms-mad/Makefile (working copy) @@ -10,7 +10,7 @@ CATEGORIES= audio MASTER_SITES= SF -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A XMMS input plugin that uses libmad LIB_DEPENDS= mad.2:${PORTSDIR}/audio/libmad \ Index: audio/xmms-crossfade/Makefile =================================================================== --- audio/xmms-crossfade/Makefile (revision 304976) +++ audio/xmms-crossfade/Makefile (working copy) @@ -13,7 +13,7 @@ PKGNAMEPREFIX= ${APP}- DISTNAME= xmms-${PORTNAME}-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A Crossfading/Gapless Plugin LIB_DEPENDS?= xmms.4:${PORTSDIR}/multimedia/xmms Index: audio/xmms-sndfile/Makefile =================================================================== --- audio/xmms-sndfile/Makefile (revision 304976) +++ audio/xmms-sndfile/Makefile (working copy) @@ -13,7 +13,7 @@ PKGNAMESUFFIX= -sndfile DISTNAME= xmms_sndfile-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= XMMS plugin to allow playing libsndfile supported files LIB_DEPENDS= sndfile.1:${PORTSDIR}/audio/libsndfile \ Index: audio/xmms-tfmx/Makefile =================================================================== --- audio/xmms-tfmx/Makefile (revision 304976) +++ audio/xmms-tfmx/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}.tar.gz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= XMMS Input plugin for playing TFMX tunes LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: audio/xmms-a52dec/Makefile =================================================================== --- audio/xmms-a52dec/Makefile (revision 304976) +++ audio/xmms-a52dec/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= audio MASTER_SITES= SF -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A52 (aka AC3) decoder plugin for XMMS LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms \ Index: audio/xmms-sid/Makefile =================================================================== --- audio/xmms-sid/Makefile (revision 304976) +++ audio/xmms-sid/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= audio MASTER_SITES= http://www.tnsp.org/xs-files/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= XMMS input plugin to play SID files LIB_DEPENDS= sidplay.1:${PORTSDIR}/audio/libsidplay Index: audio/xmms-osssurround/Makefile =================================================================== --- audio/xmms-osssurround/Makefile (revision 304976) +++ audio/xmms-osssurround/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= SF/xmms-a52dec/xmms-a52dec/1.0 DISTNAME= xmms-a52dec-1.0 -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= OSSSuround adds Surround Sound capabilities to XMMS LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: audio/xmms-audiofile/Makefile =================================================================== --- audio/xmms-audiofile/Makefile (revision 304976) +++ audio/xmms-audiofile/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= audio MASTER_SITES= http://www.68k.org/~michael/xmms/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= XMMS plugin to allow playing libaudiofile supported files LIB_DEPENDS= audiofile.0:${PORTSDIR}/audio/libaudiofile Index: multimedia/mplayerxp/Makefile =================================================================== --- multimedia/mplayerxp/Makefile (revision 304976) +++ multimedia/mplayerxp/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= multimedia audio MASTER_SITES= SF -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Multi-threaded branch of the well known mplayer media player LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \ Index: multimedia/xmms/Makefile =================================================================== --- multimedia/xmms/Makefile (revision 304976) +++ multimedia/xmms/Makefile (working copy) @@ -14,7 +14,7 @@ LOCAL/beech DISTFILES= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER?= ports@FreeBSD.org +MAINTAINER?= c.petrik.sosa@gmail.com COMMENT?= X Multimedia System -- An audio player with Winamp GUI USE_BZIP2= yes Index: multimedia/gxmms/Makefile =================================================================== --- multimedia/gxmms/Makefile (revision 304976) +++ multimedia/gxmms/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A simple GNOME panel applet for controlling XMMS BUILD_DEPENDS= xmms:${PORTSDIR}/multimedia/xmms Index: multimedia/xmms-status-plugin/Makefile =================================================================== --- multimedia/xmms-status-plugin/Makefile (revision 304976) +++ multimedia/xmms-status-plugin/Makefile (working copy) @@ -10,7 +10,7 @@ CATEGORIES= multimedia MASTER_SITES= http://www.hellion.org.uk/source/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= XMMS control applet for GNOME 2 panel / KDE tray LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: x11-themes/xmms-eq-skins/Makefile =================================================================== --- x11-themes/xmms-eq-skins/Makefile (revision 304976) +++ x11-themes/xmms-eq-skins/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= SF/equ/eq-xmms-skins/${PORTVERSION} DISTNAME= eq-xmms-skins-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Additional skins for the XMMS EQ plugin RUN_DEPENDS= ${LOCALBASE}/lib/xmms/Effect/libeq.so:${PORTSDIR}/audio/xmms-eq Index: x11-themes/xmms-vumeter-skins/Makefile =================================================================== --- x11-themes/xmms-vumeter-skins/Makefile (revision 304976) +++ x11-themes/xmms-vumeter-skins/Makefile (working copy) @@ -16,7 +16,7 @@ vuskin.tar.bz2 DIST_SUBDIR= ${PORTNAME} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Additional skins for the XMMS Analog VUmeter plugin RUN_DEPENDS= ${SKINSDIR}/default/skin.cfg:${PORTSDIR}/graphics/xmms-vumeter Index: graphics/xmms-blursk/Makefile =================================================================== --- graphics/xmms-blursk/Makefile (revision 304976) +++ graphics/xmms-blursk/Makefile (working copy) @@ -13,7 +13,7 @@ PKGNAMEPREFIX= xmms- DISTNAME= Blursk-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A XMMS plugin inspired by "Blur Scope" BUILD_DEPENDS= xmms-config:${PORTSDIR}/multimedia/xmms Index: graphics/xmms-dspectral/Makefile =================================================================== --- graphics/xmms-dspectral/Makefile (revision 304976) +++ graphics/xmms-dspectral/Makefile (working copy) @@ -14,7 +14,7 @@ PKGNAMEPREFIX= xmms- DISTNAME= ${PORTNAME}-${PORTVERSION:S/^/v/} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Dual Spectralizer visualization plugin for XMMS LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: graphics/xmms-dscope/Makefile =================================================================== --- graphics/xmms-dscope/Makefile (revision 304976) +++ graphics/xmms-dscope/Makefile (working copy) @@ -14,7 +14,7 @@ PKGNAMEPREFIX= xmms- DISTNAME= ${PORTNAME}-${PORTVERSION:S/^/v/} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Dual Scope visualization plugin for XMMS LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: graphics/xmms-finespectrum/Makefile =================================================================== --- graphics/xmms-finespectrum/Makefile (revision 304976) +++ graphics/xmms-finespectrum/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= SF/finespectrum/finespectrum/1.0.1alpha DISTNAME= finespectrum-1.0.1alpha -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Fine grain Spectrum analyzers for XMMS BUILD_DEPENDS= xmms-config:${PORTSDIR}/multimedia/xmms Index: graphics/xmms-paranormal/Makefile =================================================================== --- graphics/xmms-paranormal/Makefile (revision 304976) +++ graphics/xmms-paranormal/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= SF/paranormal/old-paranormal-xmms/${PORTVERSION} DISTNAME= paranormal-${PORTVERSION:S/.p/pre/} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= An adaptation of the "OpenGL Spectrum Analyzer" from XMMS LIB_DEPENDS= xml2:${PORTSDIR}/textproc/libxml2 Index: graphics/xmms-scivi/Makefile =================================================================== --- graphics/xmms-scivi/Makefile (revision 304976) +++ graphics/xmms-scivi/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= SF/xmms-${PORTNAME}/${PORTNAME}/0.2.0-rc3 PKGNAMEPREFIX= xmms- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Scivi is a visualization plugin for XMMS LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: graphics/xmms-fishmatic/Makefile =================================================================== --- graphics/xmms-fishmatic/Makefile (revision 304976) +++ graphics/xmms-fishmatic/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= http://stukach.com/hosted/ DISTNAME= fishmatic -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= An XMMS non-static OpenGL stereogram visualization plugin BUILD_DEPENDS= xmms-config:${PORTSDIR}/multimedia/xmms Index: graphics/xmms-iris/Makefile =================================================================== --- graphics/xmms-iris/Makefile (revision 304976) +++ graphics/xmms-iris/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= http://cdelfosse.free.fr/xmms-iris/ PKGNAMEPREFIX= xmms- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= An adaptation of the "OpenGL Spectrum Analyzer" from XMMS BUILD_DEPENDS= xmms-config:${PORTSDIR}/multimedia/xmms Index: graphics/xmms-nebulus/Makefile =================================================================== --- graphics/xmms-nebulus/Makefile (revision 304976) +++ graphics/xmms-nebulus/Makefile (working copy) @@ -11,7 +11,7 @@ CATEGORIES= graphics MASTER_SITES= http://nebulus.tuxfamily.org/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A XMMS visualization plugin that uses SDL and OpenGL BUILD_DEPENDS= xmms-config:${PORTSDIR}/multimedia/xmms Index: graphics/xmms-waterfall/Makefile =================================================================== --- graphics/xmms-waterfall/Makefile (revision 304976) +++ graphics/xmms-waterfall/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= http://www.sethoscope.net/waterfall/ PKGNAMEPREFIX= xmms- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Yet another XMMS spectrum analyzer LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: graphics/xmms-dflowers/Makefile =================================================================== --- graphics/xmms-dflowers/Makefile (revision 304976) +++ graphics/xmms-dflowers/Makefile (working copy) @@ -14,7 +14,7 @@ PKGNAMEPREFIX= xmms- DISTNAME= ${PORTNAME}-${PORTVERSION:S/^/v/} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Dual Flowers visualization plugin for XMMS LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: graphics/xmms-jess/Makefile =================================================================== --- graphics/xmms-jess/Makefile (revision 304976) +++ graphics/xmms-jess/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= http://arquier.free.fr/ DISTNAME= JESS-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= A XMMS visualization plugin that uses SDL BUILD_DEPENDS= xmms-config:${PORTSDIR}/multimedia/xmms Index: graphics/xmms-dancingparticles/Makefile =================================================================== --- graphics/xmms-dancingparticles/Makefile (revision 304976) +++ graphics/xmms-dancingparticles/Makefile (working copy) @@ -14,7 +14,7 @@ DISTNAME= ${PORTNAME}${PORTVERSION} EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Makes particles dance with very pretty neon colors LIB_DEPENDS= t1.5:${PORTSDIR}/devel/t1lib \ Index: graphics/xmms-gdancer/Makefile =================================================================== --- graphics/xmms-gdancer/Makefile (revision 304976) +++ graphics/xmms-gdancer/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= http://www.travisemslander.com/gdancer/files/ DISTNAME= gdancer-$(PORTVERSION) -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= XMMS Visualization plugin, displays dancing figures LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: graphics/xmms-dspectogram/Makefile =================================================================== --- graphics/xmms-dspectogram/Makefile (revision 304976) +++ graphics/xmms-dspectogram/Makefile (working copy) @@ -14,7 +14,7 @@ PKGNAMEPREFIX= xmms- DISTNAME= ${PORTNAME}-${PORTVERSION:S/^/v/} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Dual Spectogram visualization plugin for XMMS LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms Index: graphics/xmms-vumeter/Makefile =================================================================== --- graphics/xmms-vumeter/Makefile (revision 304976) +++ graphics/xmms-vumeter/Makefile (working copy) @@ -12,7 +12,7 @@ MASTER_SITES= SF/${PORTNAME}plugin/Plugin%20for%20XMMS PKGNAMEPREFIX= xmms- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= Analog VUmeter plugin for XMMS LICENSE= GPLv2 GPLv3 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 15:50:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 79850106566C for ; Sat, 29 Sep 2012 15:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3E9A68FC0A for ; Sat, 29 Sep 2012 15:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TFo75x022035 for ; Sat, 29 Sep 2012 15:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TFo7Qs022034; Sat, 29 Sep 2012 15:50:07 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 15:50:07 GMT Resent-Message-Id: <201209291550.q8TFo7Qs022034@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 698C2106564A; Sat, 29 Sep 2012 15:40:56 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx1.freebsd.org (Postfix) with ESMTP id EED7E8FC15; Sat, 29 Sep 2012 15:40:55 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 3XTYjZ50J1z6Tl; Sat, 29 Sep 2012 23:35:14 +0800 (CST) Message-Id: <3XTYjZ50J1z6Tl@sunpoet.net> Date: Sat, 29 Sep 2012 23:35:14 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gecko@FreeBSD.org Subject: ports/172164: [PATCH] security/nss: fix 'make install' when built with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 15:50:07 -0000 >Number: 172164 >Category: ports >Synopsis: [PATCH] security/nss: fix 'make install' when built with clang >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 15:50:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0: Sat Sep 8 01:52:48 CST >Description: - Fix 'make install' when built with clang To build port with clang, I have following lines in /etc/make.conf: CC= /usr/bin/clang CPP= /usr/bin/clang-cpp CXX= /usr/bin/clang++ The installation failed when it tries to copy *.so.1 from ${BINS}, which should be either ${DIST}/${OPSYS}${OSREL}_OPT.OBJ or ${DIST}/${OPSYS}${OSREL}_DBG.OBJ. However, it's actually ${DIST}/${OPSYS}${OSREL}_clang_OPT.OBJ if DEBUG option is off. This patch simply sets COMPILER_TAG empty to avoid such condition. Port maintainer (gecko@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- nss-3.13.6.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 305013) +++ Makefile (working copy) @@ -77,6 +77,8 @@ ${FILESDIR}/nss-config.in >${WRKDIR}/nss-config @${SED} -e 's|@PREFIX@|${PREFIX}|; s|@PORTVERSION@|${PORTVERSION}|' \ ${FILESDIR}/nss.pc.in >${WRKDIR}/nss.pc + @${REINPLACE_CMD} -e 's|\(COMPILER_TAG = \).*|\1|' \ + ${WRKSRC}/../coreconf/ruleset.mk .for i in MAJOR MINOR PATCH @${SED} -i.${i} -e 's|@${i}@|${_${i}}|' ${WRKDIR}/nss-config .endfor --- nss-3.13.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 15:50:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E61C6106564A; Sat, 29 Sep 2012 15:50:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B904C8FC15; Sat, 29 Sep 2012 15:50:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TFoIJu023927; Sat, 29 Sep 2012 15:50:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TFoIU2023912; Sat, 29 Sep 2012 15:50:18 GMT (envelope-from edwin) Date: Sat, 29 Sep 2012 15:50:18 GMT Message-Id: <201209291550.q8TFoIU2023912@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gecko@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172164: [PATCH] security/nss: fix 'make install' when built with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 15:50:19 -0000 Synopsis: [PATCH] security/nss: fix 'make install' when built with clang Responsible-Changed-From-To: freebsd-ports-bugs->gecko Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 29 15:50:18 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172164 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 16:30:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 12C001065672 for ; Sat, 29 Sep 2012 16:30:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E17388FC0C for ; Sat, 29 Sep 2012 16:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TGUBNP057178 for ; Sat, 29 Sep 2012 16:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TGUBFU057177; Sat, 29 Sep 2012 16:30:11 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 16:30:11 GMT Resent-Message-Id: <201209291630.q8TGUBFU057177@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gea-Suan Lin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA0E4106566C for ; Sat, 29 Sep 2012 16:21:14 +0000 (UTC) (envelope-from gslin@colo-p.gslin.org) Received: from colo-p.gslin.org (gslin-1-pt.tunnel.tserv3.fmt2.ipv6.he.net [IPv6:2001:470:1f04:18a1::2]) by mx1.freebsd.org (Postfix) with ESMTP id 98B888FC12 for ; Sat, 29 Sep 2012 16:21:14 +0000 (UTC) Received: by colo-p.gslin.org (Postfix, from userid 1000) id 562207E827; Sun, 30 Sep 2012 00:21:13 +0800 (CST) Message-Id: <20120929162113.562207E827@colo-p.gslin.org> Date: Sun, 30 Sep 2012 00:21:13 +0800 (CST) From: Gea-Suan Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gslin@gslin.org Subject: ports/172165: [NEW PORT] textproc/the_silver_searcher: A code-searching tool similar to ack but faster X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 16:30:15 -0000 >Number: 172165 >Category: ports >Synopsis: [NEW PORT] textproc/the_silver_searcher: A code-searching tool similar to ack but faster >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 16:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 9.0-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD colo-p.gslin.org 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 01:47:53 UTC 2012 >Description: An attempt to make something better than ack, which itself is better than grep. WWW: https://github.com/ggreer/the_silver_searcher Generated with FreeBSD Port Tools 0.99_6 (mode: new) >How-To-Repeat: >Fix: --- .shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # the_silver_searcher # the_silver_searcher/Makefile # the_silver_searcher/pkg-descr # the_silver_searcher/distinfo # echo c - the_silver_searcher mkdir -p the_silver_searcher > /dev/null 2>&1 echo x - the_silver_searcher/Makefile sed 's/^X//' >the_silver_searcher/Makefile << 'a6fbefac452ec52bdde24367ef116464' X# New ports collection makefile for: the_silver_searcher X# Date created: 2012-09-29 X# Whom: Gea-Suan Lin X# X# $FreeBSD$ X# X XPORTNAME= the_silver_searcher XPORTVERSION= 0.11.1 XCATEGORIES= textproc XMASTER_SITES= http://cloud.github.com/downloads/ggreer/${PORTNAME}/ X XMAINTAINER= gslin@gslin.org XCOMMENT= A code-searching tool similar to ack but faster X XLIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre X XACLOCAL_ARGS+= -I ${ACLOCAL_DIR} XAUTOMAKE_ARGS+= --add-missing XGNU_CONFIGURE= yes XPLIST_FILES= bin/ag XUSE_AUTOTOOLS= aclocal autoconf autoheader automake X XMAN1= ag.1 X X.include a6fbefac452ec52bdde24367ef116464 echo x - the_silver_searcher/pkg-descr sed 's/^X//' >the_silver_searcher/pkg-descr << '2f522b724be035cc9456fbd5fcefcaf1' XAn attempt to make something better than ack, which itself is better than Xgrep. X XWWW: https://github.com/ggreer/the_silver_searcher 2f522b724be035cc9456fbd5fcefcaf1 echo x - the_silver_searcher/distinfo sed 's/^X//' >the_silver_searcher/distinfo << 'a2388362789d3db7940bdb28081f76bd' XSHA256 (the_silver_searcher-0.11.1.tar.gz) = 2e489655127c49b9ae08932bc7b9c86e4b8e62b56c4434368967cd67ad31bb72 XSIZE (the_silver_searcher-0.11.1.tar.gz) = 24567 a2388362789d3db7940bdb28081f76bd exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 17:38:45 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E5A7106566C; Sat, 29 Sep 2012 17:38:45 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 300AC8FC0A; Sat, 29 Sep 2012 17:38:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8THcjmg022160; Sat, 29 Sep 2012 17:38:45 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8THch9q022154; Sat, 29 Sep 2012 17:38:43 GMT (envelope-from rm) Date: Sat, 29 Sep 2012 17:38:43 GMT Message-Id: <201209291738.q8THch9q022154@freefall.freebsd.org> To: mutoh@openedu.org, rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/171291: lang/squeak 4.4.7_2 - invalid UTF8 - UTF8TextConverter class>> errorMalFormedInput: X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 17:38:45 -0000 Synopsis: lang/squeak 4.4.7_2 - invalid UTF8 - UTF8TextConverter class>> errorMalFormedInput: Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Sat Sep 29 17:38:43 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171291 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 18:20:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 768161065672 for ; Sat, 29 Sep 2012 18:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4E00C8FC0C for ; Sat, 29 Sep 2012 18:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TIKAC6058691 for ; Sat, 29 Sep 2012 18:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TIKAHw058683; Sat, 29 Sep 2012 18:20:10 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 18:20:10 GMT Resent-Message-Id: <201209291820.q8TIKAHw058683@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33629106564A for ; Sat, 29 Sep 2012 18:18:55 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 7CB5D8FC19 for ; Sat, 29 Sep 2012 18:18:53 +0000 (UTC) Received: (qmail invoked by alias); 29 Sep 2012 18:18:51 -0000 Received: from 201-230.4-85.cust.bluewin.ch (EHLO something.email.com) [85.4.230.201] by mail.gmx.net (mp002) with SMTP; 29 Sep 2012 20:18:51 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sat, 29 Sep 2012 20:18:50 +0200 Message-Id: <20120929181855.33629106564A@hub.freebsd.org> Date: Sat, 29 Sep 2012 20:18:50 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jhale@FreeBSD.org Subject: ports/172167: [NEW PORT] games/domination: Board game that is a bit like the well known game Risk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 18:20:10 -0000 >Number: 172167 >Category: ports >Synopsis: [NEW PORT] games/domination: Board game that is a bit like the well known game Risk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 18:20:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: Domination is a board game that is a bit like the well known game Risk. Domination is a game that is a bit like the well known board game of Risk or RisiKo. It has many game options and includes many maps. Written in java it includes a map editor, a simple map format, multiplayer network play, single player, hotseat, 5 user interfaces and many more features, it works in all OSs that run java. WWW: http://domination.sourceforge.net/ WWW: http://yura.net/projects/domination/ Generated and tested manually, tested with port test and with RedPorts (all RELEASES, CLANG), sent with FreeBSD Port Tools 0.99_6 (mode: new) >How-To-Repeat: portlint -A WARN: Makefile: [59]: possible direct use of command "false" found. use ${FALSE} instead. 0 fatal errors and 1 warning found. WARN: Makefile: [59] because is used DESKTOP_ENTRIES=...false Build log RedPorts https://redports.org/buildarchive/20120929164734-52938/ >Fix: --- .shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # domination # domination/Makefile # domination/distinfo # domination/pkg-descr # domination/files # domination/files/domination-Increment1GUI.in # domination/files/domination-SwingGUI.in # domination/files/domination-FlashGUI.in # domination/files/domination-SimpleGUI.in # echo c - domination mkdir -p domination > /dev/null 2>&1 echo x - domination/Makefile sed 's/^X//' >domination/Makefile << '71614df8da7b3c2cd0e7bc605f683362' X# $FreeBSD$ X XPORTNAME= domination XPORTVERSION= 1.1.1.1 XCATEGORIES= games java XMASTER_SITES= http://domination.sourceforge.net/maps/ \ X SF/${PORTNAME}/${PORTNAME:S/d/D/}/${PORTVERSION}/ XDISTFILES= ${PORTNAME:S/d/D/}_${DISTVERSION}${EXTRACT_SUFX} \ X ${MAPS:S/$/.zip/} XDIST_SUBDIR= ${PORTNAME} X XMAINTAINER= nemysis@gmx.ch XCOMMENT= Board game that is a bit like the well known game Risk X XLICENSE= GPLv3 X XUSE_ZIP= yes XUSE_JAVA= yes XJAVA_VERSION= 1.5+ XNO_BUILD= yes X XWRKSRC= ${WRKDIR}/${PORTNAME:S/d/D/} X X# Please contact the MAINTAINER if a Map is missing XMAPS= solar bigeurope google europass europe artic sudamerica \ X MiddleEast-Qatar kosova Falkland-Islands england sw_baltic \ X spain swiss france austria austria-hungary eire haiti brasil \ X benelux canada germany northeurope germany1871 eesti estonia \ X mexico serbia fletzmap greece North_of_Italy bayern berlin \ X navarra Illes_Balears calw wuppertal kerzell ennepe-ruhr-kreis \ X cologne saarland andorra catalunya astadt dortmund rio_de_janeiro \ X caribbean Nuremberg_Public_Transit discworld aztec GTA_SAN_AN \ X middleearth LOTR2 wow randland Riskopoly SuperRiskopoly trivia \ X chutes sudoku conquest chrono_trigger startrek usa8 civilwar \ X usa hawaii ohio nyc zertina fortress estlandr periodictable \ X sylsia troisdorf wolken castle naerr cow westfalenhalle \ X union rub gymnasium simpsons_world simpsons germany2 X XPLIST_FILES= bin/${PORTNAME}-FlashGUI \ X bin/${PORTNAME}-Increment1GUI \ X bin/${PORTNAME}-SimpleGUI \ X bin/${PORTNAME}-SwingGUI \ X share/pixmaps/${PORTNAME}.png X XPORTDATA= * XPORTDOCS= ChangeLog.txt ReadMe.txt commands.txt todo.txt XDATADIR= ${JAVASHAREDIR}/${PORTNAME} X XSUB_FILES= ${PORTNAME}-FlashGUI \ X ${PORTNAME}-Increment1GUI \ X ${PORTNAME}-SimpleGUI \ X ${PORTNAME}-SwingGUI X XDESKTOP_ENTRIES="Domination" \ X "Board game that is a bit like the well known game Risk" \ X "${PREFIX}/share/pixmaps/${PORTNAME}.png" \ X "${PORTNAME}-SwingGUI" \ X "Game;StrategyGame;" \ X false X X.include X Xpost-extract-script: X.for f in ${MAPS:S/$/.zip/} X @${UNZIP_CMD} -qo -d ${WRKSRC}/maps ${DISTDIR}/${DIST_SUBDIR}/${f} X.endfor X Xdo-install: X# Scripts X ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}-* ${PREFIX}/bin X X# Data X ${MKDIR} ${DATADIR} X @(cd ${WRKSRC} && ${COPYTREE_SHARE} "help lib maps resources saves *.jar *.cmd *.htm *.txt *.ini" ${DATADIR}) X @(cd ${WRKSRC} && ${INSTALL_SCRIPT} *.sh ${DATADIR}) X# Fix Permission that user can write in saves X @(cd ${DATADIR} && ${CHMOD} 774 saves) X X# Pixmaps X ${LN} -sf ${DATADIR}/resources/icon.png ${PREFIX}/share/pixmaps/${PORTNAME}.png X X# Documentation X.if ${PORT_OPTIONS:MDOCS} X ${MKDIR} ${DOCSDIR} X ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} X.endif X X.include 71614df8da7b3c2cd0e7bc605f683362 echo x - domination/distinfo sed 's/^X//' >domination/distinfo << '6993d6b73bb35c0f0624d6ed51f63f93' XSHA256 (domination/Domination_1.1.1.1.zip) = 4a569874ce9d12435c3da78224b61b2b366592b9b8849b612bf0cfae7867cf55 XSIZE (domination/Domination_1.1.1.1.zip) = 6033327 XSHA256 (domination/solar.zip) = 38345a0921e485ccaf15e15a5ba2bc1281613d139481d0918fc055af653020e9 XSIZE (domination/solar.zip) = 160107 XSHA256 (domination/bigeurope.zip) = 55b574adb11d11ebd084d8b36e93f5b891fc6e69f26e842aa47ab7c9c75ce4d6 XSIZE (domination/bigeurope.zip) = 383053 XSHA256 (domination/google.zip) = 67a4ee4f0b4aba9b08e3d98eed6ba95806e0d1015a6fd296015f66ef52c93b0d XSIZE (domination/google.zip) = 156407 XSHA256 (domination/europass.zip) = 7cb2db605990c861fb54fe5a0a83bb5291e89a3f16335f7c489423317c0d1b84 XSIZE (domination/europass.zip) = 308049 XSHA256 (domination/europe.zip) = 976988f2ee41d81b7582fb7342373fe5a4ec3736bf9eb7aa3734acd038974796 XSIZE (domination/europe.zip) = 58909 XSHA256 (domination/artic.zip) = f074a643dce4cfa5b5a7c86d835766af2d69ae1b98eb093a67662f7a016b0956 XSIZE (domination/artic.zip) = 94069 XSHA256 (domination/sudamerica.zip) = 49f5b24a7bc0d842bf1602fe36aa755eb17fef9cf90a40d2342118dce1d25865 XSIZE (domination/sudamerica.zip) = 201403 XSHA256 (domination/MiddleEast-Qatar.zip) = 0225d66386d1747227677f2718af72078bbd2859bd26cc982b62d571c0258dbf XSIZE (domination/MiddleEast-Qatar.zip) = 116685 XSHA256 (domination/kosova.zip) = 08adfad670e8ee6220ee44555e957a2fc6258e91e075df4f2cbcce478ee47037 XSIZE (domination/kosova.zip) = 57297 XSHA256 (domination/Falkland-Islands.zip) = 16618ba581d0c942ad61a960a4a3b5a4f6e90bde389c7878de17448e5e661f57 XSIZE (domination/Falkland-Islands.zip) = 54815 XSHA256 (domination/england.zip) = a8a28993192c78be10709038515e0da3d478d24f746451754b8598eb92211bc4 XSIZE (domination/england.zip) = 75959 XSHA256 (domination/sw_baltic.zip) = 194980ba1fe7b8c0fa40f0894a499e2ac44450872511613ef29cd6b7be947cf1 XSIZE (domination/sw_baltic.zip) = 93061 XSHA256 (domination/spain.zip) = 4801e186ec1bf96eb4a2190ea9db0100a23dccca643cd4049c2071c4e00ec96e XSIZE (domination/spain.zip) = 75311 XSHA256 (domination/swiss.zip) = d77b45bdb1010c949601ef0788cb6a1ae86536911f4e2534d118666ad1ef00a4 XSIZE (domination/swiss.zip) = 98001 XSHA256 (domination/france.zip) = fc7314ef93a42c9057d2257b9fe20a7ab2841d64a0787fea13b6cc3514c8c423 XSIZE (domination/france.zip) = 71975 XSHA256 (domination/austria.zip) = c088b9146dd1f3727837e05c7f966ee2c5b97b998de4c23dfbcb0c3aa2c276f9 XSIZE (domination/austria.zip) = 218919 XSHA256 (domination/austria-hungary.zip) = 4b561a21027b533428a7421d006318e114e080df24251c69dcaddf56040ea5ef XSIZE (domination/austria-hungary.zip) = 29836 XSHA256 (domination/eire.zip) = 81fe4a36fd1d96a32b481fbfb1611799e60bba638c3f6c4846cdeb4f4526b420 XSIZE (domination/eire.zip) = 197001 XSHA256 (domination/haiti.zip) = c56ae48879095bc9a6bf568a500c69ab0b3cd8ed16e2e818d81be5d6ca7909b4 XSIZE (domination/haiti.zip) = 152264 XSHA256 (domination/brasil.zip) = ba17b3f81ebf2bc5401320df9202a0e8873f94fd9fd27d617ee1bad39cd47c42 XSIZE (domination/brasil.zip) = 41778 XSHA256 (domination/benelux.zip) = 4e2cdc76520f717aacd1d919fa7579fdfdb79c3d560ff55589b1629be62ebf4b XSIZE (domination/benelux.zip) = 217085 XSHA256 (domination/canada.zip) = b5f0ca312181151900c35e481b8baad1275d1aabea77fbe506194b389fb91ad3 XSIZE (domination/canada.zip) = 37822 XSHA256 (domination/germany.zip) = 4cad855f0c600999bdb4ab753a6103bed947c376d625f226d6825d728c942224 XSIZE (domination/germany.zip) = 73837 XSHA256 (domination/northeurope.zip) = 1a835e3bd3ec0b0cfd37d608e1b7d90b35099f5ec94d1e12084c41c6f650a476 XSIZE (domination/northeurope.zip) = 32588 XSHA256 (domination/germany1871.zip) = 02b9ed234ec4117968f1ea6f922ff85ab5b1abfa9198cc6b7da44a3434b6e5f4 XSIZE (domination/germany1871.zip) = 37069 XSHA256 (domination/eesti.zip) = 012cd1019d706975f18087e1b97f22962e2963d517b1296129b80e64ca669274 XSIZE (domination/eesti.zip) = 77844 XSHA256 (domination/estonia.zip) = 9a59d1b966771f4f27ec2f011f244202e390591bacd43bd7477be9e849b82790 XSIZE (domination/estonia.zip) = 18320 XSHA256 (domination/mexico.zip) = 39c5a09776bcc7ca37cdb488f6e296b9482bacfa37cf53e35236f3f808d0c95a XSIZE (domination/mexico.zip) = 30079 XSHA256 (domination/serbia.zip) = 6d5220608ca074d550db89db9c87db4139e66bd8b09837668a77716f080ff417 XSIZE (domination/serbia.zip) = 22042 XSHA256 (domination/fletzmap.zip) = 82d1f9a170787e27f474d5b1291c1baf10d410c9a67c844c8798fb7b7c8a695c XSIZE (domination/fletzmap.zip) = 49865 XSHA256 (domination/greece.zip) = 1283fa7423638f097ba7d5044ee3ecaa206510428e8611e54422dac8337d27ab XSIZE (domination/greece.zip) = 91724 XSHA256 (domination/North_of_Italy.zip) = d7c6084133d8431395a211902c9554b0a20e27d38d249cf0a3743f1aa34dcbae XSIZE (domination/North_of_Italy.zip) = 25524 XSHA256 (domination/bayern.zip) = b13225b8b0b2aaf0e621f08a71cf7ee8bd08c87e50623c0df97b9d1028387b6e XSIZE (domination/bayern.zip) = 59333 XSHA256 (domination/berlin.zip) = c64d708fe70247ac0cacf52aa534264fbb5df8fba552dfdf9511f08c2e7799b2 XSIZE (domination/berlin.zip) = 44407 XSHA256 (domination/navarra.zip) = eac8e1bddfdde56d97df708ed0775a72ae79e10f0cea82bd820ca5e664623293 XSIZE (domination/navarra.zip) = 19332 XSHA256 (domination/Illes_Balears.zip) = 59c428ae48b4d9024d24e75d8a3d41f210e83ae4f3df04660c2d9a51ee07a5ed XSIZE (domination/Illes_Balears.zip) = 50677 XSHA256 (domination/calw.zip) = c9df918ea8fee5773a7517b67d8f9bd9641b00b7bed77fd4a620d3298691b500 XSIZE (domination/calw.zip) = 39376 XSHA256 (domination/wuppertal.zip) = e4b1b95dd94fa5d3ce0f22e22e4eba9fc0d2179cf40603c508ff3444053c096f XSIZE (domination/wuppertal.zip) = 213400 XSHA256 (domination/kerzell.zip) = d4e50241fb885c56e3d9cd748a841733b6f33672e8f36c1d5fbd291357004096 XSIZE (domination/kerzell.zip) = 65949 XSHA256 (domination/ennepe-ruhr-kreis.zip) = 7075c1c4eae08fa9463efab123df291f024c455ba3f7ce2a51807875fe279c04 XSIZE (domination/ennepe-ruhr-kreis.zip) = 21683 XSHA256 (domination/cologne.zip) = 9af9a8591820001ae61948b903a31ecc76a74556420bf1635c2697ce06a0be4d XSIZE (domination/cologne.zip) = 55134 XSHA256 (domination/saarland.zip) = ed9dcd1152dd834aa6a854e38732f6241401d6582483cbc43ebfd95e0c73238e XSIZE (domination/saarland.zip) = 62405 XSHA256 (domination/andorra.zip) = d1c90153895f01779c6b5a3eeea275d0474433044957e4c03a470c28616ef7b9 XSIZE (domination/andorra.zip) = 58531 XSHA256 (domination/catalunya.zip) = 654e1d0c10c95a54ff9384cb979eab5ea192c896d7c1f8f7ff848823a1bd0369 XSIZE (domination/catalunya.zip) = 91616 XSHA256 (domination/astadt.zip) = 2d9b4b4bc3c1e8552f3cf933e4ea945e44e6969e8917a07fd5838b7c9c24aef5 XSIZE (domination/astadt.zip) = 61306 XSHA256 (domination/dortmund.zip) = 28f286c54d917b663e8d3508393519e34e82683c680f3dd98688d22d9460a94a XSIZE (domination/dortmund.zip) = 489820 XSHA256 (domination/rio_de_janeiro.zip) = 6efc7906d83a68f9669d9592b77dc69b25affc443a18da6f87c4553eee10d451 XSIZE (domination/rio_de_janeiro.zip) = 79674 XSHA256 (domination/caribbean.zip) = 7cd1c79236d905cbac9297fa0da64e79dee94cad8fa8e3a7621506d61a037404 XSIZE (domination/caribbean.zip) = 183777 XSHA256 (domination/Nuremberg_Public_Transit.zip) = 87b098302c381a69b4bf926dc0fd7a2af43f8b4ccf5eb79740175afcd15e336c XSIZE (domination/Nuremberg_Public_Transit.zip) = 72657 XSHA256 (domination/discworld.zip) = 20bce6eebdb507b90c9ea7a9574e59f005b988ec1ace63bf8f5c47cc1c4fa8e5 XSIZE (domination/discworld.zip) = 187311 XSHA256 (domination/aztec.zip) = 9c2a16e3f84cd9622fafea3630257d4d78a097eda77b4470bfa63ec1b3ea84c8 XSIZE (domination/aztec.zip) = 259457 XSHA256 (domination/GTA_SAN_AN.zip) = 8659ee83d41c654de26e5a8648a06798ac6b47882383a2ac667cb675a3111953 XSIZE (domination/GTA_SAN_AN.zip) = 392714 XSHA256 (domination/middleearth.zip) = e66fcc62b6313fc92a7ea40c62cdfc12a29e3c5c0967d1ad5a2bcadc41c56e81 XSIZE (domination/middleearth.zip) = 94391 XSHA256 (domination/LOTR2.zip) = a851f23aec49b3e9222836f763c26b695d6e9b91a33ea8d4befbc947fa028318 XSIZE (domination/LOTR2.zip) = 158379 XSHA256 (domination/wow.zip) = eac368282f5d904fbd2f4057b7927c9a2f0c91fb508179778e8f2a40cfbb9fc5 XSIZE (domination/wow.zip) = 132424 XSHA256 (domination/randland.zip) = 3ab9e92a603a187f65bc587dc727872838623cc25120134ce824dd9359101487 XSIZE (domination/randland.zip) = 276125 XSHA256 (domination/Riskopoly.zip) = 0444073ed9a436049dbe133feec6e73af43f2f105000f41d6eab20e23b2a41a1 XSIZE (domination/Riskopoly.zip) = 88737 XSHA256 (domination/SuperRiskopoly.zip) = 9792540249bff29726782f8c5fd4bd511d81fc216f2895f287f577f443cc8c25 XSIZE (domination/SuperRiskopoly.zip) = 104637 XSHA256 (domination/trivia.zip) = 2a4f70b24314406bb4166e8a0f0243933a52064b93166715c1e8f2585734772c XSIZE (domination/trivia.zip) = 267055 XSHA256 (domination/chutes.zip) = 7a1f46d0a0a08a5d173a8ab029071962df51af1ce422547eaa65b7d5f07f9867 XSIZE (domination/chutes.zip) = 299910 XSHA256 (domination/sudoku.zip) = 04eeb3a1613a5e819dfaa07acea92ee15f3141f069548f8fa1eec95705cc444b XSIZE (domination/sudoku.zip) = 131123 XSHA256 (domination/conquest.zip) = 661ef435c6a55580592bb62ba71b923e26b4f7912ce96b2cef5c5a7af2a7d0e0 XSIZE (domination/conquest.zip) = 17212 XSHA256 (domination/chrono_trigger.zip) = 7b3773a8d357b742d1c8be5caed4325a0e920e711d159fd3f4abc86660ec3457 XSIZE (domination/chrono_trigger.zip) = 64586 XSHA256 (domination/startrek.zip) = 2cc4e8cbad411e9c822538b739e2fa7a8a95d8fba21b0e5faaa78dbfb45aa227 XSIZE (domination/startrek.zip) = 294721 XSHA256 (domination/usa8.zip) = 8e6d2220eeae5b997cdaceb51bc377765ac56d4fd7004e5295d7806555924d08 XSIZE (domination/usa8.zip) = 73298 XSHA256 (domination/civilwar.zip) = 3e608d35d8e80702686437e370bc9ac484430b4cc38bb8dd84fbfdbb5ad5ee5c XSIZE (domination/civilwar.zip) = 35796 XSHA256 (domination/usa.zip) = 5ffd57df855dba755f2c870881829024d12682d4d949ee86fb354c05a2e7eb62 XSIZE (domination/usa.zip) = 104818 XSHA256 (domination/hawaii.zip) = 6dafdec3e0b8696c50525a2340a7e74f26ffb7abdbf48e18adf3951d3cbb1d02 XSIZE (domination/hawaii.zip) = 357182 XSHA256 (domination/ohio.zip) = 776fd155fa39fe3bfcd83e67bd6e29da4b2507ff6ddb1aab33cef2251bfc04d2 XSIZE (domination/ohio.zip) = 33640 XSHA256 (domination/nyc.zip) = 87e60a0fab7ff93dacee37a08c9ed0313d59f964241babcf39f1b85979e8aa31 XSIZE (domination/nyc.zip) = 50740 XSHA256 (domination/zertina.zip) = 146d0e68cbece2ac3c22954f29226441ceb3a648256eeb58a4485b0dd9173c5d XSIZE (domination/zertina.zip) = 118392 XSHA256 (domination/fortress.zip) = 057ebd57555b2afb967fccfc0bb0ab0cc1bdb8a4c82ef3c281acd3152ac3e344 XSIZE (domination/fortress.zip) = 49723 XSHA256 (domination/estlandr.zip) = 63df20f7a88ae88f59e646576435116540c818e2082dd7e7fa02ba68016fb6c9 XSIZE (domination/estlandr.zip) = 31025 XSHA256 (domination/periodictable.zip) = ad3c1c4c3fe54ba0cf8ca20913aa059b8e5eba309b6d393c72ade12720074134 XSIZE (domination/periodictable.zip) = 29088 XSHA256 (domination/sylsia.zip) = 46648613aa5ad1fa32177f382417d840f4fff78838da44a01957460c674826b3 XSIZE (domination/sylsia.zip) = 148828 XSHA256 (domination/troisdorf.zip) = 4265c1cdde418c4ac037afd65511852c5fbde3256f14b86887526bba88fdbe42 XSIZE (domination/troisdorf.zip) = 45565 XSHA256 (domination/wolken.zip) = 0ff14b5c3567e93f8f5af6492cdd4328c59e4d04fb9e8ce25997fab95b3d33ba XSIZE (domination/wolken.zip) = 61647 XSHA256 (domination/castle.zip) = 1efecb77448aed5da80d0db4547694f98ed204db43a07f592e3de94c23211d7b XSIZE (domination/castle.zip) = 196658 XSHA256 (domination/naerr.zip) = ceb9fd85ff0a93f3b1168f1c6d7f412487c2116598dd3b229ad515f4c06a03ea XSIZE (domination/naerr.zip) = 146240 XSHA256 (domination/cow.zip) = 3b27c8cd687c6664861a1252b09122ad5bcd27d4ea5e590df777ec88217122af XSIZE (domination/cow.zip) = 38841 XSHA256 (domination/westfalenhalle.zip) = be8dfd62461472a6091b67936468c591775e37623095bf0008c284e148d8594e XSIZE (domination/westfalenhalle.zip) = 65696 XSHA256 (domination/union.zip) = f58a5911f6c6fc7c6c07ed272df1dae8ba957c36432d5e9c66f8b61e578d3afd XSIZE (domination/union.zip) = 97851 XSHA256 (domination/rub.zip) = 61608f8c47a4d7a240d75f2e42b9a9cf423a34ee4f7d59c4d3b2ced8b7f3a88a XSIZE (domination/rub.zip) = 153445 XSHA256 (domination/gymnasium.zip) = 8752e7d73cb17d49a4b9e13542441d30228abb10981ae9ce727c1df0ab53a1a5 XSIZE (domination/gymnasium.zip) = 172979 XSHA256 (domination/simpsons_world.zip) = d68f8daf04a4248c16e9d821e4d6f8fa5c0f342e439578bbd61f7459661f66ae XSIZE (domination/simpsons_world.zip) = 379387 XSHA256 (domination/simpsons.zip) = 6836dff3f5fb8f632639190b8651b40561de35178649752cb3fde1cb129d7542 XSIZE (domination/simpsons.zip) = 37246 XSHA256 (domination/germany2.zip) = fcf860fd9aacc41b0d4a7d5f3f5e2b270cbdcfe6bd6ecf7314c0fc12053ff9f3 XSIZE (domination/germany2.zip) = 98088 6993d6b73bb35c0f0624d6ed51f63f93 echo x - domination/pkg-descr sed 's/^X//' >domination/pkg-descr << '1d1eecf1ad36111ad201efd2e6e14421' XDomination is a board game that is a bit like the well known game Risk. X XDomination is a game that is a bit like the well known board game of Risk Xor RisiKo. It has many game options and includes many maps. X XWritten in java it includes a map editor, a simple map format, multiplayer Xnetwork play, single player, hotseat, 5 user interfaces and many more features, Xit works in all OSs that run java. X XWWW: http://domination.sourceforge.net/ XWWW: http://yura.net/projects/domination/ 1d1eecf1ad36111ad201efd2e6e14421 echo c - domination/files mkdir -p domination/files > /dev/null 2>&1 echo x - domination/files/domination-Increment1GUI.in sed 's/^X//' >domination/files/domination-Increment1GUI.in << 'e6bdf22ba91782b266f5ca8937bc9948' X#!/bin/sh X# X# $FreeBSD$ X# X Xexport JAVA_VERSION="%%JAVA_VERSION%%" X Xcd "%%DATADIR%%" && exec "%%LOCALBASE%%/bin/java" -Djava.ext.dirs="%%DATADIR%%" \ X-Djava.ext.dirs="%%DATADIR%%" -cp Domination.jar net.yura.domination.ui.increment1gui.Increment1Frame "${@}" e6bdf22ba91782b266f5ca8937bc9948 echo x - domination/files/domination-SwingGUI.in sed 's/^X//' >domination/files/domination-SwingGUI.in << '53b6d876ad2c501d6d78260976f3b61a' X#!/bin/sh X# X# $FreeBSD$ X# X Xexport JAVA_VERSION="%%JAVA_VERSION%%" X Xcd "%%DATADIR%%" && exec "%%LOCALBASE%%/bin/java" -Djava.ext.dirs="%%DATADIR%%" \ X-Djava.ext.dirs="%%DATADIR%%" -cp Domination.jar net.yura.domination.ui.swinggui.SwingGUIFrame "${@}" 53b6d876ad2c501d6d78260976f3b61a echo x - domination/files/domination-FlashGUI.in sed 's/^X//' >domination/files/domination-FlashGUI.in << 'e6e9a9e0da692d3ac8c3b15eead9e17d' X#!/bin/sh X# X# $FreeBSD$ X# X Xexport JAVA_VERSION="%%JAVA_VERSION%%" X Xcd "%%DATADIR%%" && exec "%%LOCALBASE%%/bin/java" -Djava.ext.dirs="%%DATADIR%%" \ X-Djava.ext.dirs="%%DATADIR%%" -cp Domination.jar net.yura.domination.ui.flashgui.MainMenu "${@}" e6e9a9e0da692d3ac8c3b15eead9e17d echo x - domination/files/domination-SimpleGUI.in sed 's/^X//' >domination/files/domination-SimpleGUI.in << '2aa8b95f498a575cfac0fe6bec9a072f' X#!/bin/sh X# X# $FreeBSD$ X# X Xexport JAVA_VERSION="%%JAVA_VERSION%%" X Xcd "%%DATADIR%%" && exec "%%LOCALBASE%%/bin/java" -Djava.ext.dirs="%%DATADIR%%" \ X-Djava.ext.dirs="%%DATADIR%%" -cp Domination.jar net.yura.domination.ui.simplegui.RiskGUI "${@}" 2aa8b95f498a575cfac0fe6bec9a072f exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 19:00:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F195B106566B for ; Sat, 29 Sep 2012 19:00:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B228D8FC08 for ; Sat, 29 Sep 2012 19:00:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TJ0EmJ093284 for ; Sat, 29 Sep 2012 19:00:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TJ0ES0093270; Sat, 29 Sep 2012 19:00:14 GMT (envelope-from gnats) Date: Sat, 29 Sep 2012 19:00:14 GMT Message-Id: <201209291900.q8TJ0ES0093270@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Aragon Gouveia Cc: Subject: Re: ports/169770: [patch] audio/alsa-lib: make async handler work (from pkgsrc) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Aragon Gouveia List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 19:00:16 -0000 The following reply was made to PR ports/169770; it has been noted by GNATS. From: Aragon Gouveia To: bug-followup@FreeBSD.org, jbeich@tormail.org, flo@smeets.im Cc: Subject: Re: ports/169770: [patch] audio/alsa-lib: make async handler work (from pkgsrc) Date: Sat, 29 Sep 2012 20:53:26 +0200 Hi. Just a note to ask for this PR to be closed as ports/171601 incorporates this patch and other fixes. Thanks for taking this on, Florian! From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 19:00:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 50056106564A for ; Sat, 29 Sep 2012 19:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1067C8FC0A for ; Sat, 29 Sep 2012 19:00:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TJ0HGg093740 for ; Sat, 29 Sep 2012 19:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TJ0H0O093731; Sat, 29 Sep 2012 19:00:17 GMT (envelope-from gnats) Date: Sat, 29 Sep 2012 19:00:17 GMT Message-Id: <201209291900.q8TJ0H0O093731@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Aragon Gouveia Cc: Subject: Re: ports/170457: [patch] audio/alsa-lib: implicit declaration of calloc/free X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Aragon Gouveia List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 19:00:18 -0000 The following reply was made to PR ports/170457; it has been noted by GNATS. From: Aragon Gouveia To: bug-followup@FreeBSD.org, jbeich@tormail.org, flo@smeets.im Cc: Subject: Re: ports/170457: [patch] audio/alsa-lib: implicit declaration of calloc/free Date: Sat, 29 Sep 2012 20:55:48 +0200 Hi. Just a note to ask for this PR to be closed as ports/171601 incorporates this patch and other fixes. Thanks! From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 19:10:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C76A106566C for ; Sat, 29 Sep 2012 19:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 38A2C8FC20 for ; Sat, 29 Sep 2012 19:10:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TJA3e8001784 for ; Sat, 29 Sep 2012 19:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TJA3Fp001778; Sat, 29 Sep 2012 19:10:03 GMT (envelope-from gnats) Date: Sat, 29 Sep 2012 19:10:03 GMT Message-Id: <201209291910.q8TJA3Fp001778@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Aragon Gouveia Cc: Subject: Re: ports/169767: audio/alsa-plugins: desync with oss plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Aragon Gouveia List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 19:10:03 -0000 The following reply was made to PR ports/169767; it has been noted by GNATS. From: Aragon Gouveia To: bug-followup@FreeBSD.org, jbeich@tormail.org, flo@smeets.im Cc: Subject: Re: ports/169767: audio/alsa-plugins: desync with oss plugin Date: Sat, 29 Sep 2012 21:04:50 +0200 Hi. Just a note to ask for this PR to be closed as ports/171601 addresses the issues here. Thanks! From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 19:13:00 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A5134106564A; Sat, 29 Sep 2012 19:13:00 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7958D8FC08; Sat, 29 Sep 2012 19:13:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TJD0D5009814; Sat, 29 Sep 2012 19:13:00 GMT (envelope-from flo@freefall.freebsd.org) Received: (from flo@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TJD0DS009809; Sat, 29 Sep 2012 19:13:00 GMT (envelope-from flo) Date: Sat, 29 Sep 2012 19:13:00 GMT Message-Id: <201209291913.q8TJD0DS009809@freefall.freebsd.org> To: flo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, flo@FreeBSD.org From: flo@FreeBSD.org Cc: Subject: Re: ports/169770: [patch] audio/alsa-lib: make async handler work (from pkgsrc) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 19:13:00 -0000 Synopsis: [patch] audio/alsa-lib: make async handler work (from pkgsrc) Responsible-Changed-From-To: freebsd-ports-bugs->flo Responsible-Changed-By: flo Responsible-Changed-When: Sat Sep 29 19:13:00 UTC 2012 Responsible-Changed-Why: Thake all these as i'll take care of ports/171601 shortly. http://www.freebsd.org/cgi/query-pr.cgi?pr=169770 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 19:13:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7449A1065673; Sat, 29 Sep 2012 19:13:03 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 483348FC14; Sat, 29 Sep 2012 19:13:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TJD3Ar009885; Sat, 29 Sep 2012 19:13:03 GMT (envelope-from flo@freefall.freebsd.org) Received: (from flo@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TJD392009881; Sat, 29 Sep 2012 19:13:03 GMT (envelope-from flo) Date: Sat, 29 Sep 2012 19:13:03 GMT Message-Id: <201209291913.q8TJD392009881@freefall.freebsd.org> To: flo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, flo@FreeBSD.org From: flo@FreeBSD.org Cc: Subject: Re: ports/170457: [patch] audio/alsa-lib: implicit declaration of calloc/free X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 19:13:03 -0000 Synopsis: [patch] audio/alsa-lib: implicit declaration of calloc/free Responsible-Changed-From-To: freebsd-ports-bugs->flo Responsible-Changed-By: flo Responsible-Changed-When: Sat Sep 29 19:13:02 UTC 2012 Responsible-Changed-Why: Thake all these as i'll take care of ports/171601 shortly. http://www.freebsd.org/cgi/query-pr.cgi?pr=170457 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 19:13:06 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 374E0106566B; Sat, 29 Sep 2012 19:13:06 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0C0248FC15; Sat, 29 Sep 2012 19:13:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TJD5VL009950; Sat, 29 Sep 2012 19:13:05 GMT (envelope-from flo@freefall.freebsd.org) Received: (from flo@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TJD5K0009946; Sat, 29 Sep 2012 19:13:05 GMT (envelope-from flo) Date: Sat, 29 Sep 2012 19:13:05 GMT Message-Id: <201209291913.q8TJD5K0009946@freefall.freebsd.org> To: flo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, flo@FreeBSD.org From: flo@FreeBSD.org Cc: Subject: Re: ports/169767: audio/alsa-plugins: desync with oss plugin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 19:13:06 -0000 Synopsis: audio/alsa-plugins: desync with oss plugin Responsible-Changed-From-To: freebsd-ports-bugs->flo Responsible-Changed-By: flo Responsible-Changed-When: Sat Sep 29 19:13:05 UTC 2012 Responsible-Changed-Why: Thake all these as i'll take care of ports/171601 shortly. http://www.freebsd.org/cgi/query-pr.cgi?pr=169767 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 19:30:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 60008106566C for ; Sat, 29 Sep 2012 19:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 29C938FC17 for ; Sat, 29 Sep 2012 19:30:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TJU3Sf019976 for ; Sat, 29 Sep 2012 19:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TJU2sS019975; Sat, 29 Sep 2012 19:30:02 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 19:30:02 GMT Resent-Message-Id: <201209291930.q8TJU2sS019975@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, freebsd@nagilum.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B76D106564A for ; Sat, 29 Sep 2012 19:23:28 +0000 (UTC) (envelope-from root@cakebox.homeunix.net) Received: from mo6-p05-ob.rzone.de (mo6-p05-ob.rzone.de [IPv6:2a01:238:20a:202:5305::1]) by mx1.freebsd.org (Postfix) with ESMTP id D2CC98FC08 for ; Sat, 29 Sep 2012 19:23:27 +0000 (UTC) Received: from cakebox.homeunix.net (164-010-186-093.dialin.vsenet.de [93.186.10.164]) by smtp.strato.de (joses mo17) (RZmta 30.19 DYNA|AUTH) with (DHE-RSA-AES256-SHA encrypted) ESMTPA id w04dd7o8TJBXTf for ; Sat, 29 Sep 2012 21:23:25 +0200 (CEST) Received: from cakebox.homeunix.net (localhost [127.0.0.1]) by cakebox.homeunix.net (Postfix) with ESMTP id B43016807A for ; Sat, 29 Sep 2012 21:23:12 +0200 (CEST) Received: by cakebox.homeunix.net (Postfix, from userid 0) id EAC0368016; Sat, 29 Sep 2012 21:23:10 +0200 (CEST) Message-Id: <20120929192310.EAC0368016@cakebox.homeunix.net> Date: Sat, 29 Sep 2012 21:23:10 +0200 (CEST) From: freebsd@nagilum.org To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172168: add comm/libdlo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 19:30:03 -0000 >Number: 172168 >Category: ports >Synopsis: add comm/libdlo >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 19:30:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: freebsd@nagilum.org >Release: FreeBSD 10.0-CURRENT i386 >Organization: >Environment: System: FreeBSD cakebox.tis 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r240553M: Tue Sep 18 00:11:57 CEST 2012 root@cakebox.tis:/usr/obj/export/src/sys/net5501 i386 >Description: Import libdlo which is the basis for the DisplayPort xorg driver. I was thinking of putting it into comms/ but only because I couldn't think of anything better. So you do have a better place just go ahead and import it in a different category. >How-To-Repeat: >Fix: extract attached .tgz begin 644 libdlo.tgz M'XL(`.T^9U```^U7WX_:.!#>5_Q76-JB]AXV)"%.`!VG4LAN48%4)'LKW4N5 M'PY8F#B*S=*]A_O;.P8BK;:WNU4E5JV63XHQY@%> M^?V?XQG=XE)42N)4<$Y3Q42!UP=_P+FH>HV]DZ!S/(H5Q6E%H49K(['T1+QC?K`U1+=`YS+^YA(D/X:B'_:\E?@-C MZ',PCV:#J=^O]>B!O_UY.`YF_89I6(:-AH/(OPKF8S_L-U*Q7DLT'821/_\2 MCB,]ME2J[+5:)14EIX96GE&Y4J+4BEO_@8$%HZJ%X+/Q+(+'G_?_U\9A,)WZ MLZC?&#%9\OANPHH5EIM2GQ`&^ZJXND-H,A[ZLQ`LOOH\N;41N@[]+X/K*(B" M8!+N]J&$X+OAJ^G@$PC>4;GOS@*]TW*U2$61L\5N<#(:!K/+\=5>#!FL2/DF MH_A/L,[0FHWUZB]TE/L_\#]C4K$B%T?1\1S_;=.I^6\38FO^6\0[\?\E$'X< MV!!RW^W]X&+'-@-.Q%C\^P?NXY3D'DGBW'$@)3L=TC'3N-OI4,M+$H_8N=M) M[6[7ZZ1YDIA6$E/BM#,[2[M)8G7;>8;"\3_^HZL[GMMQR7$<^X0?PH'_$(\N M(&*FU3%T/,=_\*R:_VU"=/WGV/:)_R^":,EDG=?PEG&.(16DXA8R>EQD4!(4 M!90$6`E\/R%>AQ_PHHK+)4NA;%BR4B(M'7,NMKIDP!F]I5R4M)+ZTSI_WE\" M)%A*)89B`_J;KSMU0BUIA4!&P2)K:>"]>V*F).4YS@25Q5N%Z_P8%W%#P;!?_[N"8C!)6 MM!25RD+-IJ[11\$P;`)T.QK/F\W6W!^,ICYZG[&J6BN(*(\(HE?!K1-...&$ ,7QG?`!;2M6(`%@`` ` end >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 20:20:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CAFAC1065680 for ; Sat, 29 Sep 2012 20:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 791818FC15 for ; Sat, 29 Sep 2012 20:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TKK23B065815 for ; Sat, 29 Sep 2012 20:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TKK2uX065814; Sat, 29 Sep 2012 20:20:02 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 20:20:02 GMT Resent-Message-Id: <201209292020.q8TKK2uX065814@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Aragon Gouveia Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D952106566C for ; Sat, 29 Sep 2012 20:15:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 88C7A8FC17 for ; Sat, 29 Sep 2012 20:15:51 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TKFodb024039 for ; Sat, 29 Sep 2012 20:15:50 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8TKFols024020; Sat, 29 Sep 2012 20:15:50 GMT (envelope-from nobody) Message-Id: <201209292015.q8TKFols024020@red.freebsd.org> Date: Sat, 29 Sep 2012 20:15:50 GMT From: Aragon Gouveia To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172169: [patch] net-p2p/ncdc upgrade to 1.13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 20:20:02 -0000 >Number: 172169 >Category: ports >Synopsis: [patch] net-p2p/ncdc upgrade to 1.13 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 20:20:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Aragon Gouveia >Release: 8.2-RELEASE >Organization: >Environment: FreeBSD saturn.geek.sh 8.2-RELEASE FreeBSD 8.2-RELEASE #1: Sun Mar 13 00:15:31 UTC 2011 toor@saturn.geek.sh:/usr/obj/data/freebsd/src-RELENG_8_2/sys/SATURN amd64 >Description: Upgrade NCDC port to latest upstream release, 1.13. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -uNr ncdc/Makefile ncdc.new/Makefile --- ncdc/Makefile 2012-07-18 22:32:09.000000000 +0200 +++ ncdc.new/Makefile 2012-09-29 21:28:07.809724437 +0200 @@ -6,7 +6,7 @@ # PORTNAME= ncdc -PORTVERSION= 1.12 +PORTVERSION= 1.13 CATEGORIES= net-p2p MASTER_SITES= SF \ http://dev.yorhel.nl/download/ diff -uNr ncdc/distinfo ncdc.new/distinfo --- ncdc/distinfo 2012-07-18 22:32:09.000000000 +0200 +++ ncdc.new/distinfo 2012-09-29 21:17:56.888125889 +0200 @@ -1,2 +1,2 @@ -SHA256 (ncdc-1.12.tar.gz) = 2613710695e0a1083e67f5a2653f64d5c3a3487e28daf927f7713ec97172f5c4 -SIZE (ncdc-1.12.tar.gz) = 339159 +SHA256 (ncdc-1.13.tar.gz) = 780141b0374e34373e5587d9de43f9e15aa94a7a06a1207e5d55e97d36f201c0 +SIZE (ncdc-1.13.tar.gz) = 344585 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 20:20:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D087F106566C; Sat, 29 Sep 2012 20:20:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A4C938FC15; Sat, 29 Sep 2012 20:20:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TKKLM8068618; Sat, 29 Sep 2012 20:20:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TKKLxt068607; Sat, 29 Sep 2012 20:20:21 GMT (envelope-from edwin) Date: Sat, 29 Sep 2012 20:20:21 GMT Message-Id: <201209292020.q8TKKLxt068607@freefall.freebsd.org> To: aragon@phat.za.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172169: [patch] net-p2p/ncdc upgrade to 1.13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 20:20:21 -0000 Synopsis: [patch] net-p2p/ncdc upgrade to 1.13 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Sep 29 20:20:20 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172169 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 20:30:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3DBE7106564A for ; Sat, 29 Sep 2012 20:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 20F408FC08 for ; Sat, 29 Sep 2012 20:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TKU7Pj074704 for ; Sat, 29 Sep 2012 20:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TKU72k074694; Sat, 29 Sep 2012 20:30:07 GMT (envelope-from gnats) Date: Sat, 29 Sep 2012 20:30:07 GMT Message-Id: <201209292030.q8TKU72k074694@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/172169: [patch] net-p2p/ncdc upgrade to 1.13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 20:30:08 -0000 The following reply was made to PR ports/172169; it has been noted by GNATS. From: Edwin Groothuis To: earl1k@mail.ru Cc: bug-followup@FreeBSD.org Subject: Re: ports/172169: [patch] net-p2p/ncdc upgrade to 1.13 Date: Sat, 29 Sep 2012 20:20:16 UT Maintainer of net-p2p/ncdc, Please note that PR ports/172169 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/172169 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 20:30:44 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D6A4106566B; Sat, 29 Sep 2012 20:30:44 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 314EF8FC1B; Sat, 29 Sep 2012 20:30:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TKUiKW080151; Sat, 29 Sep 2012 20:30:44 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TKUiEV080142; Sat, 29 Sep 2012 20:30:44 GMT (envelope-from rm) Date: Sat, 29 Sep 2012 20:30:44 GMT Message-Id: <201209292030.q8TKUiEV080142@freefall.freebsd.org> To: rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Cc: Subject: Re: ports/172163: [PATCH] Request maintainer for ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 20:30:44 -0000 Synopsis: [PATCH] Request maintainer for ports Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Sat Sep 29 20:30:43 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172163 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 21:00:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5A2A1106564A for ; Sat, 29 Sep 2012 21:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 01EAD8FC0A for ; Sat, 29 Sep 2012 21:00:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TL0AQD002264 for ; Sat, 29 Sep 2012 21:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TL0AkV002263; Sat, 29 Sep 2012 21:00:10 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 21:00:10 GMT Resent-Message-Id: <201209292100.q8TL0AkV002263@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Grzegorz Blach Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 69132106564A for ; Sat, 29 Sep 2012 20:51:50 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 550F18FC15 for ; Sat, 29 Sep 2012 20:51:50 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TKpoYm073480 for ; Sat, 29 Sep 2012 20:51:50 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8TKpox9073479; Sat, 29 Sep 2012 20:51:50 GMT (envelope-from nobody) Message-Id: <201209292051.q8TKpox9073479@red.freebsd.org> Date: Sat, 29 Sep 2012 20:51:50 GMT From: Grzegorz Blach To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172170: ports-mgmt/fbsdmon: Update to 0.93 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 21:00:11 -0000 >Number: 172170 >Category: ports >Synopsis: ports-mgmt/fbsdmon: Update to 0.93 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 21:00:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Grzegorz Blach >Release: 9.1-RC1 >Organization: >Environment: FreeBSD silver.nine 9.1-RC1 FreeBSD 9.1-RC1 #7 r240316: Mon Sep 10 19:53:24 CEST 2012 magik@silver.nine:/usr/obj/usr/src/sys/SILVER amd64 >Description: Port ports-mgmt/fbsdmon updated to 0.93 Changes: - Fix segmentation fault on i386 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN ports-mgmt/fbsdmon/Makefile ports-mgmt/fbsdmon/Makefile --- ports-mgmt/fbsdmon/Makefile 2012-09-22 13:13:56.000000000 +0200 +++ ports-mgmt/fbsdmon/Makefile 2012-09-28 21:11:01.000000000 +0200 @@ -2,7 +2,7 @@ # $FreeBSD: ports/ports-mgmt/fbsdmon/Makefile,v 1.5 2012/09/22 11:13:56 rm Exp $ PORTNAME= fbsdmon -PORTVERSION= 0.92 +PORTVERSION= 0.93 CATEGORIES= ports-mgmt sysutils MASTER_SITES= http://files.roorback.net/ diff -ruN ports-mgmt/fbsdmon/distinfo ports-mgmt/fbsdmon/distinfo --- ports-mgmt/fbsdmon/distinfo 2012-09-22 13:13:56.000000000 +0200 +++ ports-mgmt/fbsdmon/distinfo 2012-09-28 21:11:01.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (fbsdmon-0.92.tar.gz) = 94fb1ef98fa15050bc13f4db3f24b09b77fa960f375ece7745f4b5f558ae2193 -SIZE (fbsdmon-0.92.tar.gz) = 3776 +SHA256 (fbsdmon-0.93.tar.gz) = 0fb011eb17aca1e9d7409502d96fb5e8bf8f11e0f751865925ff68d7b66ec057 +SIZE (fbsdmon-0.93.tar.gz) = 3755 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 21:00:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 856F5106566B for ; Sat, 29 Sep 2012 21:00:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 564558FC12 for ; Sat, 29 Sep 2012 21:00:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TL0FPq002763 for ; Sat, 29 Sep 2012 21:00:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TL0F94002753; Sat, 29 Sep 2012 21:00:15 GMT (envelope-from gnats) Date: Sat, 29 Sep 2012 21:00:15 GMT Message-Id: <201209292100.q8TL0F94002753@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: nemysis Cc: Subject: Re: ports/171224: [NEW PORT] games/bouncy: You are a hungry rabbit. Eat food to complete the level X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nemysis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 21:00:15 -0000 The following reply was made to PR ports/171224; it has been noted by GNATS. From: nemysis To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/171224: [NEW PORT] games/bouncy: You are a hungry rabbit. Eat food to complete the level Date: Sat, 29 Sep 2012 22:57:25 +0200 --MP_/JV/os4jjJkpYJOLpIcCVZQP Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Changed files/bouncy.in ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} --MP_/JV/os4jjJkpYJOLpIcCVZQP Content-Type: application/x-shar Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename=bouncy.shar IyBUaGlzIGlzIGEgc2hlbGwgYXJjaGl2ZS4gIFNhdmUgaXQgaW4gYSBmaWxlLCByZW1vdmUgYW55 dGhpbmcgYmVmb3JlCiMgdGhpcyBsaW5lLCBhbmQgdGhlbiB1bnBhY2sgaXQgYnkgZW50ZXJpbmcg InNoIGZpbGUiLiAgTm90ZSwgaXQgbWF5CiMgY3JlYXRlIGRpcmVjdG9yaWVzOyBmaWxlcyBhbmQg ZGlyZWN0b3JpZXMgd2lsbCBiZSBvd25lZCBieSB5b3UgYW5kCiMgaGF2ZSBkZWZhdWx0IHBlcm1p c3Npb25zLgojCiMgVGhpcyBhcmNoaXZlIGNvbnRhaW5zOgojCiMJYm91bmN5CiMJYm91bmN5L2Zp bGVzCiMJYm91bmN5L2ZpbGVzL2JvdW5jeS5pbgojCWJvdW5jeS9NYWtlZmlsZQojCWJvdW5jeS9w a2ctZGVzY3IKIwlib3VuY3kvZGlzdGluZm8KIwplY2hvIGMgLSBib3VuY3kKbWtkaXIgLXAgYm91 bmN5ID4gL2Rldi9udWxsIDI+JjEKZWNobyBjIC0gYm91bmN5L2ZpbGVzCm1rZGlyIC1wIGJvdW5j eS9maWxlcyA+IC9kZXYvbnVsbCAyPiYxCmVjaG8geCAtIGJvdW5jeS9maWxlcy9ib3VuY3kuaW4K c2VkICdzL15YLy8nID5ib3VuY3kvZmlsZXMvYm91bmN5LmluIDw8ICc3NzkzZmZmNmM3ZTg3MTAx MWYzZmExZTVmNDllZGI2OScKWCMhL2Jpbi9zaApYIwpYIyAkRnJlZUJTRCQKWApYY2QgIiUlREFU QURJUiUlIgpYcHl0aG9uIC4vZ2FtZS5weQo3NzkzZmZmNmM3ZTg3MTAxMWYzZmExZTVmNDllZGI2 OQplY2hvIHggLSBib3VuY3kvTWFrZWZpbGUKc2VkICdzL15YLy8nID5ib3VuY3kvTWFrZWZpbGUg PDwgJzM2ODhmMGNiY2YzMTFiYjVlOGFkMTJhMzc3MDNjZmM1JwpYIyBOZXcgUG9ydHMgY29sbGVj dGlvbiBtYWtlZmlsZSBmb3I6CWJvdW5jeQpYIyBEYXRlIGNyZWF0ZWQ6CQkyMDEyLTA5LTAxClgj IFdob206CQkJbmVteXNpc0BnbXguY2gKWCMKWCMgJEZyZWVCU0QkClgjClgKWFBPUlROQU1FPQli b3VuY3kKWFBPUlRWRVJTSU9OPQlyNgpYQ0FURUdPUklFUz0JZ2FtZXMgcHl0aG9uClhNQVNURVJf U0lURVM9CWh0dHA6Ly9tZWRpYS5weXdlZWsub3JnL2RsLzMvYm91bmN5LwpYRElTVEZJTEVTPQkk e1BPUlROQU1FfS1wb3N0LSR7RElTVFZFUlNJT059LnRneiBcClgJCXRvb24tc2hhZGVkLmpwZy10 aHVtYi5wbmcKWERJU1RfU1VCRElSPQlweXRob24KWEVYVFJBQ1RfT05MWT0JJHtQT1JUTkFNRX0t cG9zdC0ke0RJU1RWRVJTSU9OfS50Z3oKWApYTUFJTlRBSU5FUj0JbmVteXNpc0BnbXguY2gKWENP TU1FTlQ9CVlvdSBhcmUgYSBodW5ncnkgcmFiYml0LiBFYXQgZm9vZCB0byBjb21wbGV0ZSB0aGUg bGV2ZWwKWApYUlVOX0RFUEVORFM9CSR7UFlHQU1FfSBcClgJCSR7UFlUSE9OX1BLR05BTUVQUkVG SVh9b3BlbmdsPj0wOiR7UE9SVFNESVJ9L2dyYXBoaWNzL3B5LW9wZW5nbApYClhXUktTUkM9CQkk e1dSS0RJUn0vJHtQT1JUTkFNRX0tcG9zdC0ke0RJU1RWRVJTSU9OfQpYClhVU0VfUFlUSE9OPQl5 ZXMKWE5PX0JVSUxEPQl5ZXMKWApYUExJU1RfRklMRVM9CWJpbi8ke1BPUlROQU1FfSBcClgJCXNo YXJlL3BpeG1hcHMvJHtQT1JUTkFNRX0ucG5nClgKWFBPUlREQVRBPQkqClhQT1JURE9DUz0JUkVB RE1FLnR4dApYClhTVUJfRklMRVM9CSR7UE9SVE5BTUV9ClgKWC5pbmNsdWRlIDxic2QucG9ydC5v cHRpb25zLm1rPgpYClhkby1pbnN0YWxsOgpYIyBTY3JpcHRzClgJJHtJTlNUQUxMX1NDUklQVH0g JHtXUktESVJ9LyR7UE9SVE5BTUV9ICR7UFJFRklYfS9iaW4KWApYIyBFeGVjdXRhYmxlClgJJHtN S0RJUn0gJHtEQVRBRElSfQpYCSR7SU5TVEFMTF9TQ1JJUFR9ICR7V1JLU1JDfS8qLnB5ICR7REFU QURJUn0KWApYIyBEYXRhClguZm9yIGQgaW4gZGF0YSBweWdseXBoClgJQChjZCAke1dSS1NSQ30g JiYgJHtDT1BZVFJFRV9TSEFSRX0gJHtkfSAke0RBVEFESVJ9KQpYLmVuZGZvcgpYClgjIFBpeG1h cHMKWAkke0lOU1RBTExfREFUQX0gJHtESVNURElSfS8ke0RJU1RfU1VCRElSfS90b29uLXNoYWRl ZC5qcGctdGh1bWIucG5nICR7UFJFRklYfS9zaGFyZS9waXhtYXBzLyR7UE9SVE5BTUV9LnBuZwpY ClgjIERvY3VtZW50YXRpb24KWC5pZiAke1BPUlRfT1BUSU9OUzpNRE9DU30KWAkke01LRElSfSAk e0RPQ1NESVJ9ClgJJHtJTlNUQUxMX0RBVEF9ICR7UE9SVERPQ1M6U3xefCR7V1JLU1JDfS98fSAk e0RPQ1NESVJ9ClguZW5kaWYKWApYLmluY2x1ZGUgPGJzZC5wb3J0Lm1rPgozNjg4ZjBjYmNmMzEx YmI1ZThhZDEyYTM3NzAzY2ZjNQplY2hvIHggLSBib3VuY3kvcGtnLWRlc2NyCnNlZCAncy9eWC8v JyA+Ym91bmN5L3BrZy1kZXNjciA8PCAnNjViNWY1NGE4OWNhYzlhNGE4ZTY1OGY3NzljODFmOGEn ClhZb3UgcGxheSBCb3VuY3kgdGhlIEh1bmdyeSBSYWJiaXQuClhZb3UncmUgaW4gYSBnYXJkZW4g d2l0aCB5dW1teSB2ZWdnaWVzIGFuZCBhIGZhcm1lciB3aG8ncyBub3Qga2VlbiBvbiB5b3UKWGVh dGluZyB0aGVtLiBZb3UgY2FuIGhpZGUgKGFuZCBtb3ZlIGFyb3VuZCkgdW5kZXIgdGhlIGdyb3Vu ZC4KWApYQm91bmN5IHdhcyB3cml0dGVuIHNvIGl0IGNvdWxkIGJlIGVuam95ZWQgYnkgbXkgZGF1 Z2h0ZXIsClh3aG8gaXMgYWJvdXQgdG8gdHVybiAzLCBhbmQgYnkgb2xkZXIgZ2FtZXJzLiBIZW5j ZSBpdCdzIG5vdCBhIHZpb2xlbnQgZ2FtZQpYYW5kICJlYXN5IiBpcyByZWFsbHksIHJlYWxseSBl YXN5LCBhbmQgImhhcmQiIGlzIGNoYWxsZW5naW5nLgpYClhXV1c6IGh0dHA6Ly9weXdlZWsub3Jn L2UvYm91bmN5Lwo2NWI1ZjU0YTg5Y2FjOWE0YThlNjU4Zjc3OWM4MWY4YQplY2hvIHggLSBib3Vu Y3kvZGlzdGluZm8Kc2VkICdzL15YLy8nID5ib3VuY3kvZGlzdGluZm8gPDwgJzA4YzY5Yzk4NTEw Zjk5NmUxOGUzODQxZTVhNzUxMmQxJwpYU0hBMjU2IChweXRob24vYm91bmN5LXBvc3QtcjYudGd6 KSA9IDBhZWI0OGJkNGM5MGZlODE0Nzk4Yjc0ZDkzY2Q3NjA1MDBjZmU2NjAxOGMxMjg1MjgzYTEy MmI5NmFkNDRkODEKWFNJWkUgKHB5dGhvbi9ib3VuY3ktcG9zdC1yNi50Z3opID0gNDEzODIzClhT SEEyNTYgKHB5dGhvbi90b29uLXNoYWRlZC5qcGctdGh1bWIucG5nKSA9IDdlN2ZlN2Q5Yjg3YmQx Yzg4OTViYzQ4OWNmMWUwMTdmOGY4MzgxYTFmYTgxMTBkYzIxN2VhOWM5MDVjYjJkZTQKWFNJWkUg KHB5dGhvbi90b29uLXNoYWRlZC5qcGctdGh1bWIucG5nKSA9IDY4MDcxCjA4YzY5Yzk4NTEwZjk5 NmUxOGUzODQxZTVhNzUxMmQxCmV4aXQKCg== --MP_/JV/os4jjJkpYJOLpIcCVZQP-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 21:40:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9AFD2106566C for ; Sat, 29 Sep 2012 21:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5511F8FC0C for ; Sat, 29 Sep 2012 21:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TLe20K039158 for ; Sat, 29 Sep 2012 21:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TLe2jJ039157; Sat, 29 Sep 2012 21:40:02 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 21:40:02 GMT Resent-Message-Id: <201209292140.q8TLe2jJ039157@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Devin Teske Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69E98106566C for ; Sat, 29 Sep 2012 21:35:40 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5582A8FC0C for ; Sat, 29 Sep 2012 21:35:40 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TLZe0v051159 for ; Sat, 29 Sep 2012 21:35:40 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q8TLZe6w051142; Sat, 29 Sep 2012 21:35:40 GMT (envelope-from nobody) Message-Id: <201209292135.q8TLZe6w051142@red.freebsd.org> Date: Sat, 29 Sep 2012 21:35:40 GMT From: Devin Teske To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/172171: [Maintainer Update] Update to sysutils/sysrc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 21:40:02 -0000 >Number: 172171 >Category: ports >Synopsis: [Maintainer Update] Update to sysutils/sysrc >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 21:40:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Devin Teske >Release: FreeBSD 9.0-RELEASE i386 >Organization: FIS Global, Inc. >Environment: FreeBSD scribe9.vicor.com 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Sync with recent HEAD revisions r241019, r240863, and r240798. >How-To-Repeat: >Fix: Patch attached with submission follows: --- sysutils/sysrc/Makefile.orig 2012-08-25 19:54:49.000000000 -0700 +++ sysutils/sysrc/Makefile 2012-09-25 20:25:37.000000000 -0700 @@ -6,7 +6,7 @@ # PORTNAME= sysrc -PORTVERSION= 5.0 +PORTVERSION= 5.1 CATEGORIES= sysutils MASTER_SITES= http://druidbsd.sourceforge.net/download/ --- sysutils/sysrc/distinfo.orig 2012-08-23 21:44:50.000000000 -0700 +++ sysutils/sysrc/distinfo 2012-09-25 20:27:17.000000000 -0700 @@ -1,2 +1,2 @@ -SHA256 (sysrc-5.0.tar.gz) = 3b4704dc54388fd38729b76e401c2efe2e429a33a777888b88b857c493352585 -SIZE (sysrc-5.0.tar.gz) = 12516 +SHA256 (sysrc-5.1.tar.gz) = 5293c87af8add58e080f4d9a07cc2cbcb41a7c589ed13144a6ef0ecc83912b3b +SIZE (sysrc-5.1.tar.gz) = 12768 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 21:40:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 170061065675; Sat, 29 Sep 2012 21:40:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DF6598FC14; Sat, 29 Sep 2012 21:40:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TLeDUh041659; Sat, 29 Sep 2012 21:40:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TLeDAx041652; Sat, 29 Sep 2012 21:40:13 GMT (envelope-from edwin) Date: Sat, 29 Sep 2012 21:40:13 GMT Message-Id: <201209292140.q8TLeDAx041652@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dteske@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/172171: [Maintainer Update] Update to sysutils/sysrc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 21:40:14 -0000 Synopsis: [Maintainer Update] Update to sysutils/sysrc Responsible-Changed-From-To: freebsd-ports-bugs->dteske Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 29 21:40:13 UTC 2012 Responsible-Changed-Why: Submitter is maintainer and has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=172171 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 22:03:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85C06106564A; Sat, 29 Sep 2012 22:03:01 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 59AA48FC17; Sat, 29 Sep 2012 22:03:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TM303Z064393; Sat, 29 Sep 2012 22:03:00 GMT (envelope-from dteske@freefall.freebsd.org) Received: (from dteske@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TM30vr064389; Sat, 29 Sep 2012 22:03:00 GMT (envelope-from dteske) Date: Sat, 29 Sep 2012 22:03:00 GMT Message-Id: <201209292203.q8TM30vr064389@freefall.freebsd.org> To: dteske@FreeBSD.org, dteske@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: dteske@FreeBSD.org Cc: Subject: Re: ports/172171: [Maintainer Update] Update to sysutils/sysrc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 22:03:01 -0000 Synopsis: [Maintainer Update] Update to sysutils/sysrc Responsible-Changed-From-To: dteske->freebsd-ports-bugs Responsible-Changed-By: dteske Responsible-Changed-When: Sat Sep 29 22:02:46 UTC 2012 Responsible-Changed-Why: Back to pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=172171 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 22:45:51 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F99B106564A; Sat, 29 Sep 2012 22:45:51 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 32E478FC08; Sat, 29 Sep 2012 22:45:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TMjp2J002643; Sat, 29 Sep 2012 22:45:51 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TMjpVi002639; Sat, 29 Sep 2012 17:45:51 -0500 (CDT) (envelope-from bdrewery) Date: Sat, 29 Sep 2012 17:45:51 -0500 (CDT) Message-Id: <201209292245.q8TMjpVi002639@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Cc: Subject: Re: ports/172171: [Maintainer Update] Update to sysutils/sysrc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 22:45:51 -0000 Synopsis: [Maintainer Update] Update to sysutils/sysrc Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Sat Sep 29 17:45:50 CDT 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172171 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 22:48:51 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 645D5106566B; Sat, 29 Sep 2012 22:48:51 +0000 (UTC) (envelope-from jase@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 37EEB8FC0A; Sat, 29 Sep 2012 22:48:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TMmpZ5003289; Sat, 29 Sep 2012 22:48:51 GMT (envelope-from jase@freefall.freebsd.org) Received: (from jase@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TMmpd8003285; Sat, 29 Sep 2012 23:48:51 +0100 (BST) (envelope-from jase) Date: Sat, 29 Sep 2012 23:48:51 +0100 (BST) Message-Id: <201209292248.q8TMmpd8003285@freefall.freebsd.org> To: jase@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jase@FreeBSD.org From: jase@FreeBSD.org Cc: Subject: Re: ports/172159: [maintainer update] Update from qrupdate-1.1.1 to qrupdate-1.1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 22:48:51 -0000 Synopsis: [maintainer update] Update from qrupdate-1.1.1 to qrupdate-1.1.2 Responsible-Changed-From-To: freebsd-ports-bugs->jase Responsible-Changed-By: jase Responsible-Changed-When: Sat 29 Sep 2012 23:48:50 BST Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=172159 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 29 22:50:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F3BC106566C for ; Sat, 29 Sep 2012 22:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 141F28FC12 for ; Sat, 29 Sep 2012 22:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8TMo1Vg003512 for ; Sat, 29 Sep 2012 22:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8TMo1jK003511; Sat, 29 Sep 2012 22:50:01 GMT (envelope-from gnats) Resent-Date: Sat, 29 Sep 2012 22:50:01 GMT Resent-Message-Id: <201209292250.q8TMo1jK003511@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63986106564A for ; Sat, 29 Sep 2012 22:47:30 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id DA7268FC08 for ; Sat, 29 Sep 2012 22:47:28 +0000 (UTC) Received: (qmail invoked by alias); 29 Sep 2012 22:47:21 -0000 Received: from 201-230.4-85.cust.bluewin.ch (EHLO something.email.com) [85.4.230.201] by mail.gmx.net (mp010) with SMTP; 30 Sep 2012 00:47:21 +0200 Received: by something.email.com (sSMTP sendmail emulation); Sun, 30 Sep 2012 00:47:19 +0200 Message-Id: <20120929224730.63986106564A@hub.freebsd.org> Date: Sun, 30 Sep 2012 00:47:19 +0200 From: nemysis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/172173: [NEW PORT] games/netwalk: Game where the object is to connect every terminal to the main server X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 22:50:02 -0000 >Number: 172173 >Category: ports >Synopsis: [NEW PORT] games/netwalk: Game where the object is to connect every terminal to the main server >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 29 22:50:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: NetWalk is a puzzle game where the object is to connect every terminal to the main server. (These are represented by coloured boxes, so you could also imagine them to be water mains, electricity cables, phone lines, etc.) In this version, not only must every terminal be connected, but every piece of cable must also be connected to the main server somehow. WWW: https://code.google.com/p/netwalk/ WWW: https://github.com/blynn/netwalk Generated and tested manually, tested with port test and with RedPorts (all RELEASES, CLANG), sent with FreeBSD Port Tools 0.99_6 (mode: new) >How-To-Repeat: portlint -A WARN: Makefile: [51]: use ${VARIABLE}, instead of $(VARIABLE). WARN: Makefile: [43]: possible direct use of command "false" found. use ${FALSE} instead. 0 fatal errors and 2 warnings found. WARN: Makefile: [51] because is used -e 's|sdl-config|$(SDL_CONFIG)|' \ WARN: Makefile: [43] because is used DESKTOP_ENTRIES=...false Build log RedPorts https://redports.org/buildarchive/20120929214801-11459/ >Fix: --- .shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # netwalk # netwalk/Makefile # netwalk/pkg-descr # netwalk/distinfo # echo c - netwalk mkdir -p netwalk > /dev/null 2>&1 echo x - netwalk/Makefile sed 's/^X//' >netwalk/Makefile << 'aa19e7b939c3d2248304efb05f0b0bb7' X# $FreeBSD$ X XPORTNAME= netwalk XPORTVERSION= 0.4.10 XCATEGORIES= games XMASTER_SITES= GITHUB \ X GOOGLE_CODE:icons XDISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \ X screenshot-0.4.8.png:icons XDIST_SUBDIR= ${PORTNAME} XEXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} X XMAINTAINER= nemysis@gmx.ch XCOMMENT= Game where the object is to connect every terminal to the main server X XLICENSE= GPLv3 X XUSE_GITHUB= yes XGH_ACCOUNT= blynn XGH_PROJECT= ${PORTNAME} XGH_TAGNAME= master XGH_COMMIT= 634e7c9 X XUSE_SDL= sdl ttf XUSE_GMAKE= yes XALL_TARGET= XMAKE_JOBS_SAFE= yes X XCFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib X XPLIST_FILES= bin/${PORTNAME} \ X share/netwalk/Vera.ttf \ X share/pixmaps/${PORTNAME}.png XPLIST_DIRSTRY= share/netwalk X XPORTDOCS= README X XDESKTOP_ENTRIES="NetWalk" \ X "Game where the object is to connect every terminal to the main server" \ X "${PREFIX}/share/pixmaps/${PORTNAME}.png" \ X "${PORTNAME}" \ X "Game;LogicGame;" \ X false X X.include X Xpost-patch: X# Fix SDL, CFLAGS, PREFIX X @${REINPLACE_CMD} \ X -e 's|sdl-config|$(SDL_CONFIG)|' \ X -e 's|CC=gcc|CC?=g++|' \ X -e 's|CFLAGS=-Wall -O2 -fomit-frame-pointer|CFLAGS+=-Wall -O2 -fomit-frame-pointer|' \ X -e 's|PREFIX = /usr|PREFIX = ${PREFIX}|' \ X ${WRKSRC}/Makefile X Xpost-install: X# Pixmaps X ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/screenshot-0.4.8.png ${PREFIX}/share/pixmaps/${PORTNAME}.png X X# Documentation X.if ${PORT_OPTIONS:MDOCS} X ${MKDIR} ${DOCSDIR} X ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} X.endif X X.include aa19e7b939c3d2248304efb05f0b0bb7 echo x - netwalk/pkg-descr sed 's/^X//' >netwalk/pkg-descr << '626401850f9b24b762c16ff65ba3b480' XNetWalk is a puzzle game where the object is to connect every terminal to the Xmain server. (These are represented by coloured boxes, so you could Xalso imagine them to be water mains, electricity cables, phone lines, etc.) X XIn this version, not only must every terminal be connected, but every piece of Xcable must also be connected to the main server somehow. X XWWW: https://code.google.com/p/netwalk/ XWWW: https://github.com/blynn/netwalk 626401850f9b24b762c16ff65ba3b480 echo x - netwalk/distinfo sed 's/^X//' >netwalk/distinfo << '2e97513d0c5fd54dfc6c70519764e291' XSHA256 (netwalk/netwalk-0.4.10.tar.gz) = b7c5ad78e732e103a6ed820970f90dcf91612a8f0e5608dae58725445cda7df7 XSIZE (netwalk/netwalk-0.4.10.tar.gz) = 71244 XSHA256 (netwalk/screenshot-0.4.8.png) = 3a7c6364c77fbff203758eecb6648f876697d41c3b88e0d759af1ab3238fca22 XSIZE (netwalk/screenshot-0.4.8.png) = 1952 2e97513d0c5fd54dfc6c70519764e291 exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: