From 2d74c7a8d2ab932b321c73eb3317cfe0004282d9 Mon Sep 17 00:00:00 2001 From: danfe Date: Fri, 6 Nov 2015 06:29:12 +0000 Subject: Add a port of Alembic, an open framework for storing and sharing graphic scene data. WWW: http://alembic.io/ --- graphics/Makefile | 1 + graphics/alembic/Makefile | 27 ++++ graphics/alembic/distinfo | 2 + graphics/alembic/files/patch-CMakeLists.txt | 67 +++++++++ .../alembic/files/patch-build_AlembicBoost.cmake | 18 +++ .../files/patch-lib_Alembic_Util_Murmur3.cpp | 11 ++ graphics/alembic/pkg-descr | 12 ++ graphics/alembic/pkg-plist | 162 +++++++++++++++++++++ 8 files changed, 300 insertions(+) create mode 100644 graphics/alembic/Makefile create mode 100644 graphics/alembic/distinfo create mode 100644 graphics/alembic/files/patch-CMakeLists.txt create mode 100644 graphics/alembic/files/patch-build_AlembicBoost.cmake create mode 100644 graphics/alembic/files/patch-lib_Alembic_Util_Murmur3.cpp create mode 100644 graphics/alembic/pkg-descr create mode 100644 graphics/alembic/pkg-plist (limited to 'graphics') diff --git a/graphics/Makefile b/graphics/Makefile index 220ec023e04d..cae712e62229 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -39,6 +39,7 @@ SUBDIR += aeskulap SUBDIR += agave SUBDIR += agg + SUBDIR += alembic SUBDIR += alpng SUBDIR += amide SUBDIR += ampasACES-container diff --git a/graphics/alembic/Makefile b/graphics/alembic/Makefile new file mode 100644 index 000000000000..432654f31e98 --- /dev/null +++ b/graphics/alembic/Makefile @@ -0,0 +1,27 @@ +# Created by: Alexey Dokuchaev +# $FreeBSD$ + +PORTNAME= alembic +PORTVERSION= 1.5.8 +CATEGORIES= graphics + +MAINTAINER= danfe@FreeBSD.org +COMMENT= Open framework for storing and sharing graphic scene data + +LICENSE= BSD3CLAUSE + +LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs \ + libImath-2_2.so:${PORTSDIR}/graphics/ilmbase \ + libhdf5.so:${PORTSDIR}/science/hdf5 + +BROKEN_FreeBSD_9= does not build (insufficient C++11 support) + +USE_GITHUB= yes + +USES= cmake compiler:c++11-lang +USE_CXXSTD= c++11 +USE_GL= glew glut + +CMAKE_ARGS= -DBUILD_SHARED_LIBS:BOOL=ON -DUSE_PYALEMBIC:BOOL=OFF + +.include diff --git a/graphics/alembic/distinfo b/graphics/alembic/distinfo new file mode 100644 index 000000000000..38ae3d68594d --- /dev/null +++ b/graphics/alembic/distinfo @@ -0,0 +1,2 @@ +SHA256 (alembic-alembic-1.5.8_GH0.tar.gz) = d5e94c5bee16bc7c2971338c5aada4f585794f01b2aa7e4bb4267d7d1002b533 +SIZE (alembic-alembic-1.5.8_GH0.tar.gz) = 1307347 diff --git a/graphics/alembic/files/patch-CMakeLists.txt b/graphics/alembic/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..9d6730388416 --- /dev/null +++ b/graphics/alembic/files/patch-CMakeLists.txt @@ -0,0 +1,67 @@ +--- CMakeLists.txt.orig 2015-01-15 18:28:49 UTC ++++ CMakeLists.txt +@@ -78,7 +78,7 @@ IF( "${CMAKE_SYSTEM_NAME}" MATCHES "Darw + ENDIF() + + SET( LINUX FALSE ) +-IF( "${CMAKE_SYSTEM_NAME}" MATCHES "Linux" ) ++IF( "${CMAKE_SYSTEM_NAME}" MATCHES "Linux|FreeBSD" ) + SET( LINUX TRUE ) + ENDIF() + +@@ -90,9 +90,6 @@ IF ( "${CMAKE_BUILD_TYPE}" MATCHES "Debu + ENDIF() + ELSEIF ( "${CMAKE_BUILD_TYPE}" MATCHES "Release" ) + ADD_DEFINITIONS( -DNDEBUG=1 -UDEBUG ) +- IF ( NOT WINDOWS ) +- ADD_DEFINITIONS( -O3 ) +- ENDIF() + ENDIF() + + IF ( NOT WINDOWS ) +@@ -130,10 +127,6 @@ endif () + IF ( DEFINED ENV{ALEMBIC_INSTALL_PREFIX} ) + SET( CMAKE_INSTALL_PREFIX + $ENV{ALEMBIC_INSTALL_PREFIX}/alembic-${VERSION} ) +-ELSE () +- SET( ORIGINAL_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX} ) +- SET( CMAKE_INSTALL_PREFIX +- ${ORIGINAL_INSTALL_PREFIX}/alembic-${VERSION} ) + ENDIF () + + # Tell me what my install location would be +@@ -192,6 +185,7 @@ FIND_PACKAGE(ZLIB REQUIRED) + #-****************************************************************************** + FIND_PACKAGE( OpenGL ) + FIND_PACKAGE( GLUT ) ++FIND_PACKAGE( GLEW ) + + IF ( ${WINDOWS} ) + # Do a windows OpenGL thing, whatever that may be +@@ -203,7 +197,7 @@ ELSEIF( ${DARWIN} ) + # Do a darwin OpenGL thing. + SET( ALEMBIC_GL_LIBS ${GLUT_LIBRARY} "-framework OpenGL" ) + ELSE() +- SET( ALEMBIC_GL_LIBS GLEW ${GLUT_LIBRARY} ${OPENGL_LIBRARIES} ) ++ SET( ALEMBIC_GL_LIBS ${GLEW_LIBRARY} ${GLUT_LIBRARY} ${OPENGL_LIBRARIES} ) + ENDIF() + + MESSAGE( STATUS "OpenGL Libraries: ${ALEMBIC_GL_LIBS}" ) +@@ -250,9 +244,6 @@ ELSE() + INCLUDE_DIRECTORIES( ${ALEMBIC_PYILMBASE_INCLUDE_DIRECTORY} ) + ENDIF () + +-# Include Python stuff +-INCLUDE("./build/AlembicPython.cmake") +- + # Include HDF5 stuff + INCLUDE("./build/AlembicHDF5.cmake") + if ( ALEMBIC_HDF5_FOUND ) +@@ -310,6 +301,7 @@ IF(DEFINED USE_PYALEMBIC AND NOT USE_PYA + MESSAGE(STATUS "Skipping Alembic Python bindings") + ELSE() + MESSAGE(STATUS "About to include Python cmake files") ++ INCLUDE("./build/AlembicPython.cmake") + ADD_SUBDIRECTORY( python ) + ENDIF() + diff --git a/graphics/alembic/files/patch-build_AlembicBoost.cmake b/graphics/alembic/files/patch-build_AlembicBoost.cmake new file mode 100644 index 000000000000..f36a58a98276 --- /dev/null +++ b/graphics/alembic/files/patch-build_AlembicBoost.cmake @@ -0,0 +1,18 @@ +--- build/AlembicBoost.cmake.orig 2015-01-15 18:28:49 UTC ++++ build/AlembicBoost.cmake +@@ -107,13 +107,13 @@ ENDIF() + # Find the static and multi-threaded version only + #-****************************************************************************** + #-****************************************************************************** +-SET( Boost_USE_STATIC_LIBS TRUE ) ++SET( Boost_USE_STATIC_LIBS FALSE ) + SET( Boost_USE_MULTITHREADED TRUE ) + SET( Boost_NO_BOOST_CMAKE TRUE ) + + #- Alembic's python bridge boost-python 1.44 (for bug fixes) + SET( Boost_ADDITIONAL_VERSIONS "1.44" "1.42" "1.42.0" "1.43" "1.43.0" "1.44" "1.44.0" "1.45.0" ) +-FIND_PACKAGE( Boost COMPONENTS program_options python REQUIRED thread ) ++FIND_PACKAGE( Boost COMPONENTS thread OPTIONAL_COMPONENTS python) + + + #-****************************************************************************** diff --git a/graphics/alembic/files/patch-lib_Alembic_Util_Murmur3.cpp b/graphics/alembic/files/patch-lib_Alembic_Util_Murmur3.cpp new file mode 100644 index 000000000000..5a9549eb64b0 --- /dev/null +++ b/graphics/alembic/files/patch-lib_Alembic_Util_Murmur3.cpp @@ -0,0 +1,11 @@ +--- lib/Alembic/Util/Murmur3.cpp.orig 2015-01-15 18:28:49 UTC ++++ lib/Alembic/Util/Murmur3.cpp +@@ -41,6 +41,8 @@ + + #ifdef __APPLE__ + #include ++#elif defined(__FreeBSD__) ++#include + #elif !defined(_MSC_VER) + #include + #endif diff --git a/graphics/alembic/pkg-descr b/graphics/alembic/pkg-descr new file mode 100644 index 000000000000..f42ea70242a6 --- /dev/null +++ b/graphics/alembic/pkg-descr @@ -0,0 +1,12 @@ +Alembic is an open computer graphics interchange framework. It distills +complex, animated scenes into a non-procedural, application-independent +set of baked geometric results. This "distillation" of scenes into baked +geometry is exactly analogous to the distillation of lighting and +rendering scenes into rendered image data. + +Alembic is focused on efficiently storing the computed results of complex +procedural geometric constructions. It is very specifically NOT concerned +with storing the complex dependency graph of procedural tools used to +create the computed results. + +WWW: http://alembic.io/ diff --git a/graphics/alembic/pkg-plist b/graphics/alembic/pkg-plist new file mode 100644 index 000000000000..cd3015cfbed8 --- /dev/null +++ b/graphics/alembic/pkg-plist @@ -0,0 +1,162 @@ +bin/SimpleAbcViewer +bin/abcconvert +bin/abcecho +bin/abcechobounds +bin/abcstitcher +include/AbcClients/WFObjConvert/AbcReader.h +include/AbcClients/WFObjConvert/All.h +include/AbcClients/WFObjConvert/Foundation.h +include/AbcClients/WFObjConvert/Parser.h +include/AbcClients/WFObjConvert/Reader.h +include/AbcOpenGL/DrawContext.h +include/AbcOpenGL/Drawable.h +include/AbcOpenGL/Foundation.h +include/AbcOpenGL/GLCamera.h +include/AbcOpenGL/ICurvesDrw.h +include/AbcOpenGL/INuPatchDrw.h +include/AbcOpenGL/IObjectDrw.h +include/AbcOpenGL/IPointsDrw.h +include/AbcOpenGL/IPolyMeshDrw.h +include/AbcOpenGL/ISubDDrw.h +include/AbcOpenGL/IXformDrw.h +include/AbcOpenGL/MeshDrwHelper.h +include/AbcOpenGL/Scene.h +include/AbcOpenGL/SceneWrapper.h +include/Alembic/Abc/All.h +include/Alembic/Abc/ArchiveInfo.h +include/Alembic/Abc/Argument.h +include/Alembic/Abc/Base.h +include/Alembic/Abc/ErrorHandler.h +include/Alembic/Abc/Foundation.h +include/Alembic/Abc/IArchive.h +include/Alembic/Abc/IArrayProperty.h +include/Alembic/Abc/IBaseProperty.h +include/Alembic/Abc/ICompoundProperty.h +include/Alembic/Abc/IObject.h +include/Alembic/Abc/ISampleSelector.h +include/Alembic/Abc/IScalarProperty.h +include/Alembic/Abc/ISchema.h +include/Alembic/Abc/ISchemaObject.h +include/Alembic/Abc/ITypedArrayProperty.h +include/Alembic/Abc/ITypedScalarProperty.h +include/Alembic/Abc/OArchive.h +include/Alembic/Abc/OArrayProperty.h +include/Alembic/Abc/OBaseProperty.h +include/Alembic/Abc/OCompoundProperty.h +include/Alembic/Abc/OObject.h +include/Alembic/Abc/OScalarProperty.h +include/Alembic/Abc/OSchema.h +include/Alembic/Abc/OSchemaObject.h +include/Alembic/Abc/OTypedArrayProperty.h +include/Alembic/Abc/OTypedScalarProperty.h +include/Alembic/Abc/Reference.h +include/Alembic/Abc/SourceName.h +include/Alembic/Abc/TypedArraySample.h +include/Alembic/Abc/TypedPropertyTraits.h +include/Alembic/AbcCollection/All.h +include/Alembic/AbcCollection/ICollections.h +include/Alembic/AbcCollection/OCollections.h +include/Alembic/AbcCollection/SchemaInfoDeclarations.h +include/Alembic/AbcCoreAbstract/All.h +include/Alembic/AbcCoreAbstract/ArchiveReader.h +include/Alembic/AbcCoreAbstract/ArchiveWriter.h +include/Alembic/AbcCoreAbstract/ArrayPropertyReader.h +include/Alembic/AbcCoreAbstract/ArrayPropertyWriter.h +include/Alembic/AbcCoreAbstract/ArraySample.h +include/Alembic/AbcCoreAbstract/ArraySampleKey.h +include/Alembic/AbcCoreAbstract/BasePropertyReader.h +include/Alembic/AbcCoreAbstract/BasePropertyWriter.h +include/Alembic/AbcCoreAbstract/CompoundPropertyReader.h +include/Alembic/AbcCoreAbstract/CompoundPropertyWriter.h +include/Alembic/AbcCoreAbstract/DataType.h +include/Alembic/AbcCoreAbstract/ForwardDeclarations.h +include/Alembic/AbcCoreAbstract/Foundation.h +include/Alembic/AbcCoreAbstract/MetaData.h +include/Alembic/AbcCoreAbstract/ObjectHeader.h +include/Alembic/AbcCoreAbstract/ObjectReader.h +include/Alembic/AbcCoreAbstract/ObjectWriter.h +include/Alembic/AbcCoreAbstract/PropertyHeader.h +include/Alembic/AbcCoreAbstract/ReadArraySampleCache.h +include/Alembic/AbcCoreAbstract/ScalarPropertyReader.h +include/Alembic/AbcCoreAbstract/ScalarPropertyWriter.h +include/Alembic/AbcCoreAbstract/ScalarSample.h +include/Alembic/AbcCoreAbstract/TimeSampling.h +include/Alembic/AbcCoreAbstract/TimeSamplingType.h +include/Alembic/AbcCoreFactory/All.h +include/Alembic/AbcCoreFactory/IFactory.h +include/Alembic/AbcCoreHDF5/All.h +include/Alembic/AbcCoreHDF5/ReadWrite.h +include/Alembic/AbcCoreOgawa/All.h +include/Alembic/AbcCoreOgawa/ReadWrite.h +include/Alembic/AbcGeom/All.h +include/Alembic/AbcGeom/ArchiveBounds.h +include/Alembic/AbcGeom/Basis.h +include/Alembic/AbcGeom/CameraSample.h +include/Alembic/AbcGeom/CurveType.h +include/Alembic/AbcGeom/FaceSetExclusivity.h +include/Alembic/AbcGeom/FilmBackXformOp.h +include/Alembic/AbcGeom/Foundation.h +include/Alembic/AbcGeom/GeometryScope.h +include/Alembic/AbcGeom/ICamera.h +include/Alembic/AbcGeom/ICurves.h +include/Alembic/AbcGeom/IFaceSet.h +include/Alembic/AbcGeom/IGeomBase.h +include/Alembic/AbcGeom/IGeomParam.h +include/Alembic/AbcGeom/ILight.h +include/Alembic/AbcGeom/INuPatch.h +include/Alembic/AbcGeom/IPoints.h +include/Alembic/AbcGeom/IPolyMesh.h +include/Alembic/AbcGeom/ISubD.h +include/Alembic/AbcGeom/IXform.h +include/Alembic/AbcGeom/OCamera.h +include/Alembic/AbcGeom/OCurves.h +include/Alembic/AbcGeom/OFaceSet.h +include/Alembic/AbcGeom/OGeomBase.h +include/Alembic/AbcGeom/OGeomParam.h +include/Alembic/AbcGeom/OLight.h +include/Alembic/AbcGeom/ONuPatch.h +include/Alembic/AbcGeom/OPoints.h +include/Alembic/AbcGeom/OPolyMesh.h +include/Alembic/AbcGeom/OSubD.h +include/Alembic/AbcGeom/OXform.h +include/Alembic/AbcGeom/SchemaInfoDeclarations.h +include/Alembic/AbcGeom/Visibility.h +include/Alembic/AbcGeom/XformOp.h +include/Alembic/AbcGeom/XformSample.h +include/Alembic/AbcMaterial/IMaterial.h +include/Alembic/AbcMaterial/MaterialAssignment.h +include/Alembic/AbcMaterial/MaterialFlatten.h +include/Alembic/AbcMaterial/OMaterial.h +include/Alembic/AbcMaterial/SchemaInfoDeclarations.h +include/Alembic/Ogawa/Foundation.h +include/Alembic/Ogawa/IArchive.h +include/Alembic/Ogawa/IData.h +include/Alembic/Ogawa/IGroup.h +include/Alembic/Ogawa/IStreams.h +include/Alembic/Ogawa/OArchive.h +include/Alembic/Ogawa/OData.h +include/Alembic/Ogawa/OGroup.h +include/Alembic/Ogawa/OStream.h +include/Alembic/Util/All.h +include/Alembic/Util/Digest.h +include/Alembic/Util/Dimensions.h +include/Alembic/Util/Exception.h +include/Alembic/Util/Foundation.h +include/Alembic/Util/Murmur3.h +include/Alembic/Util/Naming.h +include/Alembic/Util/OperatorBool.h +include/Alembic/Util/PlainOldDataType.h +include/Alembic/Util/SpookyV2.h +include/Alembic/Util/TokenMap.h +lib/libAbcWFObjConvert.so +lib/libAlembicAbc.so +lib/libAlembicAbcCollection.so +lib/libAlembicAbcCoreAbstract.so +lib/libAlembicAbcCoreFactory.so +lib/libAlembicAbcCoreHDF5.so +lib/libAlembicAbcCoreOgawa.so +lib/libAlembicAbcGeom.so +lib/libAlembicAbcMaterial.so +lib/libAlembicAbcOpenGL.so +lib/libAlembicOgawa.so +lib/libAlembicUtil.so -- cgit title='2012-06-23 08:09:07 +0800'>2012-06-231-0/+2 * Ports modules update at Thursday 21 June 2012 at 00:09edwin2012-06-211-2/+4 * Ports modules update at Wednesday 20 June 2012 at 00:09edwin2012-06-201-2/+2 * Welcome Glen Barber (gjb@) as a new ports committer. Heeadler2012-06-191-0/+1 * Ports modules update at Tuesday 19 June 2012 at 00:09edwin2012-06-191-1/+2 * Ports modules update at Monday 18 June 2012 at 00:09edwin2012-06-181-1/+3 * Ports modules update at Sunday 17 June 2012 at 00:09edwin2012-06-171-1/+1 * Ports modules update at Saturday 16 June 2012 at 00:09edwin2012-06-161-0/+1 * Ports modules update at Friday 15 June 2012 at 00:09edwin2012-06-151-1/+8 * Ports modules update at Thursday 14 June 2012 at 00:09edwin2012-06-141-13/+0 * Ports modules update at Wednesday 13 June 2012 at 00:09edwin2012-06-131-2/+9 * Ports modules update at Tuesday 12 June 2012 at 00:09edwin2012-06-121-3/+21 * Ports modules update at Monday 11 June 2012 at 00:09edwin2012-06-111-0/+4 * Ports modules update at Sunday 10 June 2012 at 00:09edwin2012-06-101-0/+6 * Ports modules update at Saturday 09 June 2012 at 00:48edwin2012-06-091-26/+48 * Ports modules update at Sunday 03 June 2012 at 00:09edwin2012-06-031-0/+5 * Ports modules update at Saturday 02 June 2012 at 00:50edwin2012-06-021-101/+49 * Ports modules update at Thursday 31 May 2012 at 00:09edwin2012-05-311-0/+8 * Please welcome Jase Thew (jase) to the ranks of ports committers. He has beenflo2012-05-301-0/+1 * Ports modules update at Wednesday 30 May 2012 at 00:09edwin2012-05-301-0/+2 * Ports modules update at Tuesday 29 May 2012 at 00:09edwin2012-05-291-0/+1 * Please welcome Olivier Duchateau (olivierd) as a new ports committer. Herene2012-05-291-0/+1 * Ports modules update at Monday 28 May 2012 at 00:09edwin2012-05-281-0/+5 * Please welcome Tom Judge (tj@) as a new ports committer. He has beendb2012-05-281-0/+1 * Ports modules update at Sunday 27 May 2012 at 00:09edwin2012-05-271-0/+5 * Ports modules update at Saturday 26 May 2012 at 00:09edwin2012-05-261-5/+32 * Ports modules update at Friday 25 May 2012 at 00:09edwin2012-05-251-0/+4 * Ports modules update at Thursday 24 May 2012 at 00:09edwin2012-05-241-0/+3 * Ports modules update at Wednesday 23 May 2012 at 00:09edwin2012-05-231-0/+11 * Ports modules update at Tuesday 22 May 2012 at 00:09edwin2012-05-221-0/+5 * Ports modules update at Monday 21 May 2012 at 00:09edwin2012-05-211-2/+9 * Ports modules update at Sunday 20 May 2012 at 00:09edwin2012-05-201-14/+9 * Ports modules update at Saturday 19 May 2012 at 00:09edwin2012-05-191-12/+14 * Ports modules update at Friday 18 May 2012 at 09:09edwin2012-05-181-5/+88 * Ports modules update at Wednesday 16 May 2012 at 00:09edwin2012-05-161-0/+19 * Ports modules update at Tuesday 15 May 2012 at 00:09edwin2012-05-151-0/+3 * Ports modules update at Monday 14 May 2012 at 00:09edwin2012-05-141-0/+3 * Ports modules update at Sunday 13 May 2012 at 02:28edwin2012-05-131-78/+8 * Ports modules update at Friday 11 May 2012 at 00:09edwin2012-05-111-2/+4 * Ports modules update at Thursday 10 May 2012 at 00:09edwin2012-05-101-2/+11 * Ports modules update at Wednesday 09 May 2012 at 00:09edwin2012-05-091-1/+3 * Ports modules update at Tuesday 08 May 2012 at 00:09edwin2012-05-081-0/+10 * Ports modules update at Monday 07 May 2012 at 00:09edwin2012-05-071-0/+4 * Ports modules update at Sunday 06 May 2012 at 00:09edwin2012-05-061-0/+3 * Ports modules update at Saturday 05 May 2012 at 00:09edwin2012-05-051-0/+2 * Ports modules update at Friday 04 May 2012 at 00:09edwin2012-05-041-0/+6 * Ports modules update at Thursday 03 May 2012 at 00:09edwin2012-05-031-0/+2 * Ports modules update at Wednesday 02 May 2012 at 00:09edwin2012-05-021-2/+4 * Ports modules update at Tuesday 01 May 2012 at 00:09edwin2012-05-011-1/+10 * Ports modules update at Monday 30 April 2012 at 00:09edwin2012-04-301-0/+2 * Ports modules update at Sunday 29 April 2012 at 00:09edwin2012-04-291-0/+6 * Ports modules update at Saturday 28 April 2012 at 00:09edwin2012-04-281-0/+6 * Ports modules update at Friday 27 April 2012 at 00:09edwin2012-04-271-1/+2 * Ports modules update at Thursday 26 April 2012 at 00:09edwin2012-04-261-0/+6 * Ports modules update at Wednesday 25 April 2012 at 08:07edwin2012-04-251-0/+122 * Ports modules update at Monday 23 April 2012 at 00:09edwin2012-04-231-0/+3 * Ports modules update at Sunday 22 April 2012 at 00:09edwin2012-04-221-1/+6 * Ports modules update at Friday 20 April 2012 at 00:09edwin2012-04-201-6/+12 * Ports modules update at Thursday 19 April 2012 at 00:09edwin2012-04-191-0/+19 * Ports modules update at Wednesday 18 April 2012 at 00:09edwin2012-04-181-2/+2 * Ports modules update at Tuesday 17 April 2012 at 00:09edwin2012-04-171-1/+6 * Ports modules update at Monday 16 April 2012 at 00:09edwin2012-04-161-4/+7 * Please welcome Armin Pirkovitsch (sperber@) as a new ports committer. Hebeat2012-04-151-0/+1 * Ports modules update at Sunday 15 April 2012 at 00:09edwin2012-04-151-1/+5 * Ports modules update at Saturday 14 April 2012 at 00:09edwin2012-04-141-0/+4 * Ports modules update at Friday 13 April 2012 at 00:09edwin2012-04-131-0/+2 * Ports modules update at Thursday 12 April 2012 at 00:09edwin2012-04-121-1/+7 * Please give a warm welcome to Guido Falsi (madpilot), with whom I'm sure manycrees2012-04-121-0/+1 * Ports modules update at Wednesday 11 April 2012 at 00:09edwin2012-04-111-11/+7 * Ports modules update at Tuesday 10 April 2012 at 00:09edwin2012-04-101-0/+5 * Unfreeze the treeerwin2012-04-101-1/+1 * Ports modules update at Monday 09 April 2012 at 00:09edwin2012-04-091-0/+9 * Ports modules update at Sunday 08 April 2012 at 00:09edwin2012-04-081-2/+7 * Ports modules update at Saturday 07 April 2012 at 00:09edwin2012-04-071-0/+6 * Ports modules update at Friday 06 April 2012 at 00:09edwin2012-04-061-0/+1 * Ports modules update at Thursday 05 April 2012 at 00:09edwin2012-04-051-0/+2 * Ports modules update at Wednesday 04 April 2012 at 00:09edwin2012-04-041-0/+8 * - Restore matusita commit bittabthorpe2012-04-031-0/+1 * - Take steve and matusita commit bits in for safe keepingtabthorpe2012-04-031-2/+0 * Ports modules update at Tuesday 03 April 2012 at 00:09edwin2012-04-031-0/+3 * Ports modules update at Monday 02 April 2012 at 00:09edwin2012-04-021-0/+4 * Ports modules update at Sunday 01 April 2012 at 00:09edwin2012-04-011-0/+3 * Ports modules update at Saturday 31 March 2012 at 00:09edwin2012-03-311-0/+3 * Ports modules update at Thursday 29 March 2012 at 00:09edwin2012-03-291-0/+2 * Ports modules update at Wednesday 28 March 2012 at 00:09edwin2012-03-281-0/+1 * Ports modules update at Tuesday 27 March 2012 at 00:09edwin2012-03-271-4/+1 * Unlock the tree after tagging for RELEASE_8_3_0erwin2012-03-261-1/+1 * Lock the tree for tagging.erwin2012-03-261-1/+1 * Ports modules update at Monday 26 March 2012 at 00:09edwin2012-03-261-0/+1 * Ports modules update at Sunday 25 March 2012 at 00:09edwin2012-03-251-0/+2 * Ports modules update at Friday 23 March 2012 at 00:09edwin2012-03-231-1/+0 * Ports modules update at Thursday 22 March 2012 at 00:09edwin2012-03-221-3/+2 * Ports modules update at Wednesday 21 March 2012 at 00:09edwin2012-03-211-6/+1 * Ports modules update at Tuesday 20 March 2012 at 00:09edwin2012-03-201-0/+10 * Ports modules update at Monday 19 March 2012 at 00:09edwin2012-03-191-1/+10 * Ports modules update at Sunday 18 March 2012 at 00:09edwin2012-03-181-5/+0 * Ports modules update at Saturday 17 March 2012 at 00:09edwin2012-03-171-0/+1 * Ports modules update at Friday 16 March 2012 at 00:09edwin2012-03-161-0/+7 * Ports modules update at Thursday 15 March 2012 at 00:09edwin2012-03-151-0/+2 * Ports modules update at Wednesday 14 March 2012 at 00:09edwin2012-03-141-0/+4 * Ports modules update at Tuesday 13 March 2012 at 00:09edwin2012-03-131-1/+4 * Ports modules update at Saturday 10 March 2012 at 00:09edwin2012-03-101-0/+5 * Feature freeze for 8.3 is now in effect.tabthorpe2012-03-091-1/+1 * Ports modules update at Friday 09 March 2012 at 00:09edwin2012-03-091-10/+5 * Ports modules update at Thursday 08 March 2012 at 00:09edwin2012-03-081-0/+4 * Ports modules update at Wednesday 07 March 2012 at 00:09edwin2012-03-071-2/+11 * Ports modules update at Tuesday 06 March 2012 at 00:09edwin2012-03-061-1/+10 * Ports modules update at Monday 05 March 2012 at 00:09edwin2012-03-051-5/+4 * Ports modules update at Sunday 04 March 2012 at 00:09edwin2012-03-041-1/+12 * Ports modules update at Saturday 03 March 2012 at 00:09edwin2012-03-031-4/+4 * Ports modules update at Friday 02 March 2012 at 00:09edwin2012-03-021-2/+6 * Welcome Alex Kozlov (ak@) as a new ports committer. Heeadler2012-03-011-1/+2 * Ports modules update at Thursday 01 March 2012 at 00:09edwin2012-03-011-0/+6 * Ports modules update at Tuesday 28 February 2012 at 00:09edwin2012-02-281-0/+8 * Ports modules update at Sunday 26 February 2012 at 00:09edwin2012-02-261-0/+4 * Ports modules update at Saturday 25 February 2012 at 00:09edwin2012-02-251-0/+7 * Add sysutils/vmdktoolbrian2012-02-251-0/+1 * Ports modules update at Friday 24 February 2012 at 00:09edwin2012-02-241-0/+3 * Ports modules update at Thursday 23 February 2012 at 00:09edwin2012-02-231-0/+5 * Ports modules update at Wednesday 22 February 2012 at 00:09edwin2012-02-221-0/+9 * Ports modules update at Tuesday 21 February 2012 at 00:09edwin2012-02-211-0/+4 * Ports modules update at Monday 20 February 2012 at 00:09edwin2012-02-201-1/+11 * Ports modules update at Sunday 19 February 2012 at 00:09edwin2012-02-191-1/+56 * Ports modules update at Saturday 18 February 2012 at 00:09edwin2012-02-181-0/+15 * Ports modules update at Friday 17 February 2012 at 00:09edwin2012-02-171-0/+4 * Ports modules update at Thursday 16 February 2012 at 00:09edwin2012-02-161-0/+4 * Ports modules update at Wednesday 15 February 2012 at 00:09edwin2012-02-151-0/+2 * Ports modules update at Tuesday 14 February 2012 at 00:09edwin2012-02-141-2/+30 * Ports modules update at Monday 13 February 2012 at 00:09edwin2012-02-131-0/+6 * Ports modules update at Sunday 12 February 2012 at 00:09edwin2012-02-121-0/+10 * Ports modules update at Saturday 11 February 2012 at 00:09edwin2012-02-111-0/+5 * Ports modules update at Friday 10 February 2012 at 00:09edwin2012-02-101-0/+2 * Introducing Matthew Seaman to the ranks of ports committers. Matthew hasshaun2012-02-091-0/+1 * Ports modules update at Thursday 09 February 2012 at 00:09edwin2012-02-091-1/+39 * Ports modules update at Wednesday 08 February 2012 at 00:09edwin2012-02-081-0/+1 * Ports modules update at Tuesday 07 February 2012 at 00:09edwin2012-02-071-1/+8 * Ports modules update at Monday 06 February 2012 at 00:09edwin2012-02-061-0/+8 * Ports modules update at Sunday 05 February 2012 at 00:09edwin2012-02-051-0/+10 * Ports modules update at Saturday 04 February 2012 at 00:09edwin2012-02-041-3/+2 * Ports modules update at Friday 03 February 2012 at 00:09edwin2012-02-031-1/+1 * Ports modules update at Thursday 02 February 2012 at 00:09edwin2012-02-021-0/+2 * Take mnag's commit bit in for safe keeping. Thanks for your years oftabthorpe2012-02-011-1/+0 * Ports modules update at Wednesday 01 February 2012 at 00:09edwin2012-02-011-1/+10 * Please welcome Ulrich Spoerlein (uqs@) as a new ports committer. Uli hasbeat2012-01-311-0/+1 * Ports modules update at Tuesday 31 January 2012 at 00:09edwin2012-01-311-0/+4 * Ports modules update at Monday 30 January 2012 at 00:09edwin2012-01-301-0/+4 * Ports modules update at Sunday 29 January 2012 at 00:09edwin2012-01-291-1/+14 * Ports modules update at Saturday 28 January 2012 at 00:09edwin2012-01-281-0/+6 * Ports modules update at Friday 27 January 2012 at 00:09edwin2012-01-271-1/+4 * Ports modules update at Thursday 26 January 2012 at 00:09edwin2012-01-261-2/+8 * Ports modules update at Wednesday 25 January 2012 at 00:09edwin2012-01-25