Index: head/databases/akonadi/Makefile =================================================================== --- head/databases/akonadi/Makefile (revision 371189) +++ head/databases/akonadi/Makefile (revision 371190) @@ -1,67 +1,66 @@ # Created by: miwi # $FreeBSD$ PORTNAME= akonadi -PORTVERSION= 1.12.1 -PORTREVISION= 1 +PORTVERSION= 1.13.0 CATEGORIES= databases kde MASTER_SITES= KDE/stable/${PORTNAME}/src DIST_SUBDIR= KDE WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= Storage server for KDE-Pim LICENSE= LGPL21 LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs # Let process generate meaningful backtrace on core dump. BUILD_DEPENDS= xsltproc:${PORTSDIR}/textproc/libxslt -USE_KDE4= kdehier kdeprefix automoc4 soprano +USE_KDE4= kdeprefix automoc4 soprano USES= cmake:outsource execinfo shared-mime-info compiler:c++11-lang tar:bzip2 USE_QT4= corelib dbus gui network qtestlib_build sql xml \ moc_build qmake_build rcc_build uic_build CMAKE_ARGS+= -DAKONADI_BUILD_TESTS:BOOL=FALSE \ -DINSTALL_QSQLITE_IN_QT_PREFIX:BOOL=TRUE \ -DCMAKE_REQUIRED_INCLUDES:STRING="${LOCALBASE}/include" USE_LDCONFIG= yes OPTIONS_MULTI= DB OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE OPTIONS_SUB= yes # SQLITE MYSQL_DESC= Install MySQL Qt plugin and server MYSQL_USE= MYSQL=server QT4=sql-mysql_run PGSQL_DESC= Install PostgreSQL Qt plugin # Do not add a dependency on PostgreSQL server as someone preferring # it over MySQL might like to use some advanced configuration, like a # remote server. #PGSQL_USE= PGSQL=server PGSQL_USE= QT4=sql-pgsql_run SQLITE_DESC= Enable SQLite backend SQLITE_USE= SQLITE=3 SQLITE_CMAKE_OFF= -DAKONADI_BUILD_QSQLITE=off OPTIONS_DEFAULT= MYSQL post-patch: ${REINPLACE_CMD} -e '/akonadi.pc/ s|pkgconfig|../libdata/pkgconfig|' \ ${PATCH_WRKSRC}/CMakeLists.txt ${REINPLACE_CMD} -e '/find_program/ s|mysqld|mysqld_safe ${LOCALBASE}/bin|g' \ ${PATCH_WRKSRC}/server/CMakeLists.txt ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ ${PATCH_WRKSRC}/server/src/storage/dbconfigmysql.cpp # To avoid overflow, MySQL settings need to be lower than # INT_MAX / kern.hz. This setting assumes kern.hz=2000, and # it's nothing but a temporary hack. ${REINPLACE_CMD} -e '/wait_timeout/ s|31536000|1073741|' \ ${PATCH_WRKSRC}/server/src/storage/*.conf # Prevent updating MIME during build. ${REINPLACE_CMD} -e '/^update_xdg_mimetypes/ d' \ -e '/find_package(SharedMimeInfo/ d' \ ${PATCH_WRKSRC}/CMakeLists.txt .include Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 371189) +++ head/databases/akonadi/distinfo (revision 371190) @@ -1,2 +1,2 @@ -SHA256 (KDE/akonadi-1.12.1.tar.bz2) = a073228fda8bdbcf836af32d4b4c44dcbe58a3eac6da4e5a286b42ace9d83145 -SIZE (KDE/akonadi-1.12.1.tar.bz2) = 251899 +SHA256 (KDE/akonadi-1.13.0.tar.bz2) = 8c7f690002ea22c139f3a64394aef2e816e00ca47fd971af7d54a66087356dd2 +SIZE (KDE/akonadi-1.13.0.tar.bz2) = 294198 Index: head/databases/akonadi/files/patch-cmake__modules__FindSqlite.cmake =================================================================== --- head/databases/akonadi/files/patch-cmake__modules__FindSqlite.cmake (nonexistent) +++ head/databases/akonadi/files/patch-cmake__modules__FindSqlite.cmake (revision 371190) @@ -0,0 +1,32 @@ +commit b60702e0b7041c56a3cb52c209204d28406f3ce5 +Author: Raphael Kubo da Costa +Date: Wed Aug 13 14:43:04 2014 +0300 + + FindSqlite: Use CMAKE_FLAGS the right way in try_compile(). + + This fixes f90774f1 ("Check whether Sqlite is compiled with + SQLITE_ENABLE_UNLOCK_NOTIFY"), so that SQLITE_INCLUDE_DIR is really + passed to the try_compile() call. So far, it was just a NOP and the + compilation only worked if sqlite3.h was in a directory the compiler + uses automatically. + + try_compile()'s syntax is a bit complicated, and CMAKE_FLAGS expects a + series of arguments as if they had been passed to the command line, so + instead of "CMAKE_FLAGS INCLUDE_DIRECTORIES /some/dir" one needs to use + "CMAKE_FLAGS -DINCLUDE_DIRECTORIES:PATH=/some/dir". + + REVIEW: 119762 + +diff --git a/cmake/modules/FindSqlite.cmake b/cmake/modules/FindSqlite.cmake +index ad8cdb4..c43a7b5 100644 +--- cmake/modules/FindSqlite.cmake ++++ cmake/modules/FindSqlite.cmake +@@ -94,7 +94,7 @@ if(EXISTS ${SQLITE_INCLUDE_DIR}/sqlite3.h) + ${CMAKE_BINARY_DIR}/sqlite_check_unlock_notify + ${CMAKE_BINARY_DIR}/sqlite_check_unlock_notify.cpp + LINK_LIBRARIES ${SQLITE_LIBRARIES} +- CMAKE_FLAGS INCLUDE_DIRECTORIES ${SQLITE_INCLUDE_DIR}) ++ CMAKE_FLAGS "-DINCLUDE_DIRECTORIES:PATH=${SQLITE_INCLUDE_DIR}") + if (NOT SQLITE_HAS_UNLOCK_NOTIFY) + message(STATUS "Sqlite ${SQLITE_VERSION} was found, but it is not compiled with -DSQLITE_ENABLE_UNLOCK_NOTIFY") + endif() Property changes on: head/databases/akonadi/files/patch-cmake__modules__FindSqlite.cmake ___________________________________________________________________ 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 Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/akonadi/files/patch-git_21465191 =================================================================== --- head/databases/akonadi/files/patch-git_21465191 (nonexistent) +++ head/databases/akonadi/files/patch-git_21465191 (revision 371190) @@ -0,0 +1,70 @@ +commit 2146519108ec66300328b7b3979477c7789795d3 +Author: Raphael Kubo da Costa +Date: Wed Aug 13 23:22:11 2014 +0300 + + Do not enter the test/ directories if AKONADI_BUILD_TESTS is off. + + enable_testing() only determines whether a "test" target and the related + CTest files will be created. And in Akonadi's case it is actually + invoked regardless of the value of the AKONADI_BUILD_TESTS option + because Akonadi includes the CTest module, which calls enable_testing() + based on the value of another variable, BUILD_TESTING. + + In any case, whether the executables and libraries that compose + Akonadi's unit tests will be built has nothing to do with + enable_testing(). To make AKONADI_BUILD_TESTS really disable the build + of the unit tests we now avoid entering the tests/ directories at all + when it is off, so that neither tests nor targets they depend on get + built. + + REVIEW: 119776 + +--- CMakeLists.txt ++++ CMakeLists.txt +@@ -14,7 +14,7 @@ include(FeatureSummary) + + ############### Build Options ############### + +-include(CTest) ++include(CTest) # Calls enable_testing(). + include(CTestConfig.cmake) + option(AKONADI_BUILD_TESTS "Build the Akonadi unit tests." TRUE) + option(AKONADI_BUILD_QSQLITE "Build the Sqlite backend." TRUE) +@@ -27,10 +27,6 @@ if(NOT DEFINED DATABASE_BACKEND) + set(DATABASE_BACKEND "MYSQL" CACHE STRING "The default database backend to use for Akonadi. Can be either MYSQL, POSTGRES or SQLITE") + endif() + +-if(AKONADI_BUILD_TESTS) +- enable_testing() +-endif() +- + ############### CMake Macros ############### + + include(InstallSettings) +--- libs/CMakeLists.txt ++++ libs/CMakeLists.txt +@@ -36,5 +36,7 @@ install(FILES + DESTINATION ${INCLUDE_INSTALL_DIR}/akonadi/private + ) + +-add_subdirectory(tests) ++if(AKONADI_BUILD_TESTS) ++ add_subdirectory(tests) ++endif() + +diff --git a/server/CMakeLists.txt b/server/CMakeLists.txt +index e4829f3..275938d 100644 +--- server/CMakeLists.txt ++++ server/CMakeLists.txt +@@ -64,7 +64,10 @@ endmacro() + add_subdirectory(akonadictl) + add_subdirectory(control) + add_subdirectory(src) +-add_subdirectory(tests) ++ ++if(AKONADI_BUILD_TESTS) ++ add_subdirectory(tests) ++endif() + + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${_ENABLE_EXCEPTIONS}") + if(MYSQLD_EXECUTABLE) Property changes on: head/databases/akonadi/files/patch-git_21465191 ___________________________________________________________________ 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 Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/databases/akonadi/pkg-plist =================================================================== --- head/databases/akonadi/pkg-plist (revision 371189) +++ head/databases/akonadi/pkg-plist (revision 371190) @@ -1,50 +1,44 @@ bin/akonadi_agent_launcher bin/akonadi_agent_server bin/akonadi_control bin/akonadi_rds bin/akonadictl bin/akonadiserver bin/asapcat include/akonadi/abstractsearchplugin.h include/akonadi/private/akonadiprotocolinternals_export.h include/akonadi/private/capabilities_p.h include/akonadi/private/imapparser_p.h include/akonadi/private/imapset_p.h include/akonadi/private/notificationmessage_p.h include/akonadi/private/notificationmessagev2_p.h include/akonadi/private/notificationmessagev3_p.h include/akonadi/private/protocol_p.h include/akonadi/private/xdgbasedirs_p.h lib/cmake/Akonadi/AkonadiConfig.cmake lib/cmake/Akonadi/AkonadiConfigVersion.cmake lib/cmake/Akonadi/AkonadiTargetsWithPrefix-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Akonadi/AkonadiTargetsWithPrefix.cmake lib/libakonadiprotocolinternals.so lib/libakonadiprotocolinternals.so.1 -lib/libakonadiprotocolinternals.so.1.12.1 +lib/libakonadiprotocolinternals.so.1.13.0 libdata/pkgconfig/akonadi.pc share/config/akonadi/mysql-global-mobile.conf share/config/akonadi/mysql-global.conf share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Control.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Search.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Status.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.AgentManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.ControlManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.DebugInterface.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationSource.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Preprocessor.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Resource.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Server.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.StorageDebugger.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Tracer.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.TracerNotification.xml share/dbus-1/services/org.freedesktop.Akonadi.Control.service share/mime/packages/akonadi-mime.xml -@dirrm share/config/akonadi -@dirrm lib/cmake/Akonadi -@dirrmtry lib/cmake -@dirrmtry include/akonadi/private -@dirrmtry include/akonadi -%%SQLITE%%@cwd %%QT_PREFIX%% -%%SQLITE%%%%QT_PLUGINDIR%%/sqldrivers/libqsqlite3.so +%%SQLITE%%%%QT_PREFIX%%/%%QT_PLUGINDIR%%/sqldrivers/libqsqlite3.so Index: head/devel/grantlee/Makefile =================================================================== --- head/devel/grantlee/Makefile (revision 371189) +++ head/devel/grantlee/Makefile (revision 371190) @@ -1,33 +1,32 @@ # Created by: Dima Panov # $FreeBSD$ # Some ports install files into versioned grantlee directory (GRANTLEE_VER) # they must be fixed whenever grantlee gets version bump # Known ports: # deskutils/kdepim4 # devel/kdevplatform # finance/skrooge -# misk/kdehier4 # PORTNAME= grantlee -DISTVERSION= 0.4.0 +DISTVERSION= 0.5.1 CATEGORIES= devel MASTER_SITES= http://downloads.${PORTNAME}.org/ \ http://www.loegria.net/${PORTNAME}/ MAINTAINER= kde@FreeBSD.org COMMENT= String template engine for Qt 4 LICENSE= LGPL21 USE_QT4= corelib gui qtestlib_build script \ qmake_build moc_build rcc_build uic_build USES= cmake:outsource CMAKE_ARGS+= -DBUILD_TESTS:BOOL=FALSE USE_LDCONFIG= yes PLIST_SUB= SHLIB_VER=${PORTVERSION} \ GRANTLEE_VER=${PORTVERSION:R} .include Index: head/devel/grantlee/distinfo =================================================================== --- head/devel/grantlee/distinfo (revision 371189) +++ head/devel/grantlee/distinfo (revision 371190) @@ -1,2 +1,2 @@ -SHA256 (grantlee-0.4.0.tar.gz) = 13a2d8121392404bb3be4ed470b211bc098cd98da795ef7bf41517d2fb640d3f -SIZE (grantlee-0.4.0.tar.gz) = 1171445 +SHA256 (grantlee-0.5.1.tar.gz) = 191809bf4c9b7ef877af0fd29345061c2372edfb4506aa7d5df5c71a570fa0ac +SIZE (grantlee-0.5.1.tar.gz) = 1172769 Index: head/devel/libkgapi/Makefile =================================================================== --- head/devel/libkgapi/Makefile (revision 371189) +++ head/devel/libkgapi/Makefile (revision 371190) @@ -1,28 +1,29 @@ # $FreeBSD$ PORTNAME= libkgapi -PORTVERSION= 2.0.1 -PORTREVISION= 2 +PORTVERSION= 2.2.0 CATEGORIES= devel kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/libkgapi/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= KDE-based library for accessing various Google services LICENSE= GPLv2 LIB_DEPENDS= libqjson.so:${PORTSDIR}/devel/qjson USES= cmake:outsource tar:bzip2 -USE_KDE4= automoc4 kdelibs kdeprefix kdehier pimlibs +USE_KDE4= automoc4 kdelibs kdeprefix pimlibs USE_LDCONFIG= yes USE_QT4= corelib network webkit xml \ qmake_build moc_build rcc_build uic_build + +PLIST_SUB+= PORTVERSION=${PORTVERSION} pre-configure: ${REINPLACE_CMD} -e '/pkgconfig/ s/$${LIB_INSTALL_DIR}/libdata/' \ ${WRKSRC}/libkgapi*/CMakeLists.txt .include Index: head/devel/libkgapi/distinfo =================================================================== --- head/devel/libkgapi/distinfo (revision 371189) +++ head/devel/libkgapi/distinfo (revision 371190) @@ -1,2 +1,2 @@ -SHA256 (KDE/libkgapi-2.0.1.tar.bz2) = 00e01a9544143a3fce009206c98a95e31a9925cda7e64ae4879029d57272c3f9 -SIZE (KDE/libkgapi-2.0.1.tar.bz2) = 112614 +SHA256 (KDE/libkgapi-2.2.0.tar.bz2) = c02965b639c2496d489d4f1865e35473db6f1b5e9e84fb079988d33db629c2b4 +SIZE (KDE/libkgapi-2.2.0.tar.bz2) = 127026 Index: head/devel/libkgapi/pkg-plist =================================================================== --- head/devel/libkgapi/pkg-plist (revision 371189) +++ head/devel/libkgapi/pkg-plist (revision 371190) @@ -1,179 +1,230 @@ include/LibKGAPI2/Account include/LibKGAPI2/AccountInfo/AccountInfo include/LibKGAPI2/AccountInfo/AccountInfoFetchJob include/LibKGAPI2/AuthJob +include/LibKGAPI2/Blogger/Blog +include/LibKGAPI2/Blogger/BlogFetchJob +include/LibKGAPI2/Blogger/Comment +include/LibKGAPI2/Blogger/CommentApproveJob +include/LibKGAPI2/Blogger/CommentDeleteContentJob +include/LibKGAPI2/Blogger/CommentDeleteJob +include/LibKGAPI2/Blogger/CommentFetchJob +include/LibKGAPI2/Blogger/Page +include/LibKGAPI2/Blogger/PageCreateJob +include/LibKGAPI2/Blogger/PageDeleteJob +include/LibKGAPI2/Blogger/PageFetchJob +include/LibKGAPI2/Blogger/PageModifyJob +include/LibKGAPI2/Blogger/Post +include/LibKGAPI2/Blogger/PostCreateJob +include/LibKGAPI2/Blogger/PostDeleteJob +include/LibKGAPI2/Blogger/PostFetchJob +include/LibKGAPI2/Blogger/PostModifyJob +include/LibKGAPI2/Blogger/PostPublishJob +include/LibKGAPI2/Blogger/PostSearchJob include/LibKGAPI2/Calendar/Calendar include/LibKGAPI2/Calendar/CalendarCreateJob include/LibKGAPI2/Calendar/CalendarDeleteJob include/LibKGAPI2/Calendar/CalendarFetchJob include/LibKGAPI2/Calendar/CalendarModifyJob include/LibKGAPI2/Calendar/Event include/LibKGAPI2/Calendar/EventCreateJob include/LibKGAPI2/Calendar/EventDeleteJob include/LibKGAPI2/Calendar/EventFetchJob include/LibKGAPI2/Calendar/EventModifyJob include/LibKGAPI2/Calendar/EventMoveJob include/LibKGAPI2/Calendar/Reminder include/LibKGAPI2/Contacts/Contact include/LibKGAPI2/Contacts/ContactCreateJob include/LibKGAPI2/Contacts/ContactDeleteJob include/LibKGAPI2/Contacts/ContactFetchJob include/LibKGAPI2/Contacts/ContactFetchPhotoJob include/LibKGAPI2/Contacts/ContactModifyJob include/LibKGAPI2/Contacts/ContactsGroup include/LibKGAPI2/Contacts/ContactsGroupCreateJob include/LibKGAPI2/Contacts/ContactsGroupDeleteJob include/LibKGAPI2/Contacts/ContactsGroupFetchJob include/LibKGAPI2/Contacts/ContactsGroupModifyJob include/LibKGAPI2/CreateJob include/LibKGAPI2/DeleteJob +include/LibKGAPI2/Drive/About +include/LibKGAPI2/Drive/AboutFetchJob +include/LibKGAPI2/Drive/App +include/LibKGAPI2/Drive/Change +include/LibKGAPI2/Drive/ChangeFetchJob +include/LibKGAPI2/Drive/ChildReference +include/LibKGAPI2/Drive/ChildReferenceCreateJob +include/LibKGAPI2/Drive/ChildReferenceDeleteJob +include/LibKGAPI2/Drive/ChildReferenceFetchJob +include/LibKGAPI2/Drive/DriveService +include/LibKGAPI2/Drive/File +include/LibKGAPI2/Drive/FileAbstractDataJob +include/LibKGAPI2/Drive/FileAbstractModifyJob +include/LibKGAPI2/Drive/FileAbstractUploadJob +include/LibKGAPI2/Drive/FileCopyJob +include/LibKGAPI2/Drive/FileCreateJob +include/LibKGAPI2/Drive/FileDeleteJob +include/LibKGAPI2/Drive/FileFetchContentJob +include/LibKGAPI2/Drive/FileFetchJob +include/LibKGAPI2/Drive/FileModifyJob +include/LibKGAPI2/Drive/FileTouchJob +include/LibKGAPI2/Drive/FileTrashJob +include/LibKGAPI2/Drive/FileUntrashJob +include/LibKGAPI2/Drive/ParentReference +include/LibKGAPI2/Drive/ParentReferenceCreateJob +include/LibKGAPI2/Drive/ParentReferenceDeleteJob +include/LibKGAPI2/Drive/ParentReferenceFetchJob +include/LibKGAPI2/Drive/Permission +include/LibKGAPI2/Drive/PermissionCreateJob +include/LibKGAPI2/Drive/PermissionDeleteJob +include/LibKGAPI2/Drive/PermissionFetchJob +include/LibKGAPI2/Drive/PermissionModifyJob +include/LibKGAPI2/Drive/Revision +include/LibKGAPI2/Drive/RevisionDeleteJob +include/LibKGAPI2/Drive/RevisionFetchJob +include/LibKGAPI2/Drive/RevisionModifyJob +include/LibKGAPI2/Drive/User include/LibKGAPI2/FetchJob include/LibKGAPI2/Job include/LibKGAPI2/Latitude/Location include/LibKGAPI2/Latitude/LocationCreateJob include/LibKGAPI2/Latitude/LocationDeleteJob include/LibKGAPI2/Latitude/LocationFetchHistoryJob include/LibKGAPI2/Latitude/LocationFetchJob include/LibKGAPI2/ModifyJob include/LibKGAPI2/Object include/LibKGAPI2/StaticMaps/StaticMapMarker include/LibKGAPI2/StaticMaps/StaticMapPath include/LibKGAPI2/StaticMaps/StaticMapTileFetchJob include/LibKGAPI2/StaticMaps/StaticMapUrl include/LibKGAPI2/Tasks/Task include/LibKGAPI2/Tasks/TaskCreateJob include/LibKGAPI2/Tasks/TaskDeleteJob include/LibKGAPI2/Tasks/TaskFetchJob include/LibKGAPI2/Tasks/TaskList include/LibKGAPI2/Tasks/TaskListCreateJob include/LibKGAPI2/Tasks/TaskListDeleteJob include/LibKGAPI2/Tasks/TaskListFetchJob include/LibKGAPI2/Tasks/TaskListModifyJob include/LibKGAPI2/Tasks/TaskModifyJob include/LibKGAPI2/Tasks/TaskMoveJob include/LibKGAPI2/Types include/LibKGAPI2/Ui/AuthWidget -include/libkgapi/accessmanager.h -include/libkgapi/account.h -include/libkgapi/auth.h -include/libkgapi/common.h -include/libkgapi/fetchlistjob.h -include/libkgapi/libkgapi_export.h -include/libkgapi/object.h -include/libkgapi/objects/accountinfo.h -include/libkgapi/objects/calendar.h -include/libkgapi/objects/contact.h -include/libkgapi/objects/contactsgroup.h -include/libkgapi/objects/event.h -include/libkgapi/objects/location.h -include/libkgapi/objects/reminder.h -include/libkgapi/objects/staticmapmarker.h -include/libkgapi/objects/staticmappath.h -include/libkgapi/objects/staticmapurl.h -include/libkgapi/objects/task.h -include/libkgapi/objects/tasklist.h -include/libkgapi/reply.h -include/libkgapi/request.h -include/libkgapi/service.h -include/libkgapi/services/accountinfo.h -include/libkgapi/services/calendar.h -include/libkgapi/services/contacts.h -include/libkgapi/services/latitude.h -include/libkgapi/services/staticmap.h -include/libkgapi/services/tasks.h -include/libkgapi/ui/accountscombo.h -include/libkgapi/ui/authwidget.h include/libkgapi2/account.h include/libkgapi2/accountinfo/accountinfo.h include/libkgapi2/accountinfo/accountinfofetchjob.h include/libkgapi2/authjob.h +include/libkgapi2/blogger/blog.h +include/libkgapi2/blogger/blogfetchjob.h +include/libkgapi2/blogger/comment.h +include/libkgapi2/blogger/commentapprovejob.h +include/libkgapi2/blogger/commentdeletecontentjob.h +include/libkgapi2/blogger/commentdeletejob.h +include/libkgapi2/blogger/commentfetchjob.h +include/libkgapi2/blogger/page.h +include/libkgapi2/blogger/pagecreatejob.h +include/libkgapi2/blogger/pagedeletejob.h +include/libkgapi2/blogger/pagefetchjob.h +include/libkgapi2/blogger/pagemodifyjob.h +include/libkgapi2/blogger/post.h +include/libkgapi2/blogger/postcreatejob.h +include/libkgapi2/blogger/postdeletejob.h +include/libkgapi2/blogger/postfetchjob.h +include/libkgapi2/blogger/postmodifyjob.h +include/libkgapi2/blogger/postpublishjob.h +include/libkgapi2/blogger/postsearchjob.h include/libkgapi2/calendar/calendar.h include/libkgapi2/calendar/calendarcreatejob.h include/libkgapi2/calendar/calendardeletejob.h include/libkgapi2/calendar/calendarfetchjob.h include/libkgapi2/calendar/calendarmodifyjob.h include/libkgapi2/calendar/event.h include/libkgapi2/calendar/eventcreatejob.h include/libkgapi2/calendar/eventdeletejob.h include/libkgapi2/calendar/eventfetchjob.h include/libkgapi2/calendar/eventmodifyjob.h include/libkgapi2/calendar/eventmovejob.h include/libkgapi2/calendar/reminder.h include/libkgapi2/contacts/contact.h include/libkgapi2/contacts/contactcreatejob.h include/libkgapi2/contacts/contactdeletejob.h include/libkgapi2/contacts/contactfetchjob.h include/libkgapi2/contacts/contactfetchphotojob.h include/libkgapi2/contacts/contactmodifyjob.h include/libkgapi2/contacts/contactsgroup.h include/libkgapi2/contacts/contactsgroupcreatejob.h include/libkgapi2/contacts/contactsgroupdeletejob.h include/libkgapi2/contacts/contactsgroupfetchjob.h include/libkgapi2/contacts/contactsgroupmodifyjob.h include/libkgapi2/createjob.h include/libkgapi2/deletejob.h +include/libkgapi2/drive/about.h +include/libkgapi2/drive/aboutfetchjob.h +include/libkgapi2/drive/app.h +include/libkgapi2/drive/change.h +include/libkgapi2/drive/changefetchjob.h +include/libkgapi2/drive/childreference.h +include/libkgapi2/drive/childreferencecreatejob.h +include/libkgapi2/drive/childreferencedeletejob.h +include/libkgapi2/drive/childreferencefetchjob.h +include/libkgapi2/drive/driveservice.h +include/libkgapi2/drive/file.h +include/libkgapi2/drive/fileabstractdatajob.h +include/libkgapi2/drive/fileabstractmodifyjob.h +include/libkgapi2/drive/fileabstractuploadjob.h +include/libkgapi2/drive/filecopyjob.h +include/libkgapi2/drive/filecreatejob.h +include/libkgapi2/drive/filedeletejob.h +include/libkgapi2/drive/filefetchcontentjob.h +include/libkgapi2/drive/filefetchjob.h +include/libkgapi2/drive/filemodifyjob.h +include/libkgapi2/drive/filetouchjob.h +include/libkgapi2/drive/filetrashjob.h +include/libkgapi2/drive/fileuntrashjob.h +include/libkgapi2/drive/parentreference.h +include/libkgapi2/drive/parentreferencecreatejob.h +include/libkgapi2/drive/parentreferencedeletejob.h +include/libkgapi2/drive/parentreferencefetchjob.h +include/libkgapi2/drive/permission.h +include/libkgapi2/drive/permissioncreatejob.h +include/libkgapi2/drive/permissiondeletejob.h +include/libkgapi2/drive/permissionfetchjob.h +include/libkgapi2/drive/permissionmodifyjob.h +include/libkgapi2/drive/revision.h +include/libkgapi2/drive/revisiondeletejob.h +include/libkgapi2/drive/revisionfetchjob.h +include/libkgapi2/drive/revisionmodifyjob.h +include/libkgapi2/drive/user.h include/libkgapi2/fetchjob.h include/libkgapi2/job.h include/libkgapi2/latitude/location.h include/libkgapi2/latitude/locationcreatejob.h include/libkgapi2/latitude/locationdeletejob.h include/libkgapi2/latitude/locationfetchhistoryjob.h include/libkgapi2/latitude/locationfetchjob.h include/libkgapi2/libkgapi2_export.h include/libkgapi2/modifyjob.h include/libkgapi2/object.h include/libkgapi2/staticmaps/staticmapmarker.h include/libkgapi2/staticmaps/staticmappath.h include/libkgapi2/staticmaps/staticmaptilefetchjob.h include/libkgapi2/staticmaps/staticmapurl.h include/libkgapi2/tasks/task.h include/libkgapi2/tasks/taskcreatejob.h include/libkgapi2/tasks/taskdeletejob.h include/libkgapi2/tasks/taskfetchjob.h include/libkgapi2/tasks/tasklist.h include/libkgapi2/tasks/tasklistcreatejob.h include/libkgapi2/tasks/tasklistdeletejob.h include/libkgapi2/tasks/tasklistfetchjob.h include/libkgapi2/tasks/tasklistmodifyjob.h include/libkgapi2/tasks/taskmodifyjob.h include/libkgapi2/tasks/taskmovejob.h include/libkgapi2/types.h include/libkgapi2/ui/authwidget.h -lib/cmake/LibKGAPI/LibKGAPIConfig.cmake -lib/cmake/LibKGAPI/LibKGAPIConfigVersion.cmake -lib/cmake/LibKGAPI/LibKGAPITargetsWithPrefix-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/LibKGAPI/LibKGAPITargetsWithPrefix.cmake lib/cmake/LibKGAPI2/LibKGAPI2Config.cmake lib/cmake/LibKGAPI2/LibKGAPI2ConfigVersion.cmake lib/cmake/LibKGAPI2/LibKGAPI2TargetsWithPrefix-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibKGAPI2/LibKGAPI2TargetsWithPrefix.cmake -lib/libkgapi.so -lib/libkgapi.so.1 -lib/libkgapi.so.2.0.1 lib/libkgapi2.so lib/libkgapi2.so.2 -lib/libkgapi2.so.2.0.1 -libdata/pkgconfig/libkgapi.pc -libdata/pkgconfig/libkgapi2.pc -@dirrm lib/cmake/LibKGAPI2 -@dirrm lib/cmake/LibKGAPI -@dirrm include/libkgapi2/ui -@dirrm include/libkgapi2/tasks -@dirrm include/libkgapi2/staticmaps -@dirrm include/libkgapi2/latitude -@dirrm include/libkgapi2/contacts -@dirrm include/libkgapi2/calendar -@dirrm include/libkgapi2/accountinfo -@dirrm include/libkgapi2 -@dirrm include/libkgapi/ui -@dirrm include/libkgapi/services -@dirrm include/libkgapi/objects -@dirrm include/libkgapi -@dirrm include/LibKGAPI2/Ui -@dirrm include/LibKGAPI2/Tasks -@dirrm include/LibKGAPI2/StaticMaps -@dirrm include/LibKGAPI2/Latitude -@dirrm include/LibKGAPI2/Contacts -@dirrm include/LibKGAPI2/Calendar -@dirrm include/LibKGAPI2/AccountInfo -@dirrm include/LibKGAPI2 +lib/libkgapi2.so.%%PORTVERSION%% Index: head/devel/libkolab/Makefile =================================================================== --- head/devel/libkolab/Makefile (revision 371189) +++ head/devel/libkolab/Makefile (revision 371190) @@ -1,36 +1,35 @@ # $FreeBSD$ PORTNAME= libkolab -PORTVERSION= 0.5.2 -PORTREVISION= 2 +PORTVERSION= 0.5.3 CATEGORIES= devel kde MASTER_SITES= http://mirror.kolabsys.com/pub/releases/ MAINTAINER= kde@FreeBSD.org COMMENT= Advanced Kolab Object Handling Library # The code in kolabformatV2 is LGPL21, but we consider the library # itself to be LGPL3-licensed (and so are all the installed headers). LICENSE= LGPL3 LIB_DEPENDS= libkolabxml.so:${PORTSDIR}/textproc/libkolabxml # TODO: Conditionally enable the bindings based on OPTIONs. CMAKE_ARGS= -DBUILD_TESTS:BOOL=OFF \ -DPHP_BINDINGS:BOOL=OFF \ -DPYTHON_BINDINGS:BOOL=OFF \ -DUSE_LIBCALENDARING:BOOL=OFF USES= cmake:outsource USE_KDE4= automoc4 kdelibs pimlibs USE_LDCONFIG= yes USE_QT4= corelib gui xml \ moc_build qmake_build rcc_build uic_build PLIST_SUB= SHLIB_VER=${PORTVERSION} post-patch: # Remove utils, installs nothing, but fails without BUILD_TESTS ${REINPLACE_CMD} -e '/add_subdirectory(utils)/d' \ ${WRKSRC}/CMakeLists.txt .include Index: head/devel/libkolab/distinfo =================================================================== --- head/devel/libkolab/distinfo (revision 371189) +++ head/devel/libkolab/distinfo (revision 371190) @@ -1,2 +1,2 @@ -SHA256 (libkolab-0.5.2.tar.gz) = 6a1673f7f7f620c87cbfde2e7b5e981395ea5829e1599b65e7cc539f3a7428ca -SIZE (libkolab-0.5.2.tar.gz) = 186423 +SHA256 (libkolab-0.5.3.tar.gz) = a90c4d892850e1795aec97f14c887f41463d0cad573926cdafd17f972e9d2726 +SIZE (libkolab-0.5.3.tar.gz) = 186440 Index: head/devel/libkolab/pkg-plist =================================================================== --- head/devel/libkolab/pkg-plist (revision 371189) +++ head/devel/libkolab/pkg-plist (revision 371190) @@ -1,21 +1,18 @@ include/kolab/commonconversion.h include/kolab/errorhandler.h include/kolab/formathelpers.h include/kolab/freebusy.h include/kolab/kabcconversion.h include/kolab/kcalconversion.h include/kolab/kolab_export.h include/kolab/kolabdefinitions.h include/kolab/kolabobject.h include/kolab/mimeobject.h include/kolab/xmlobject.h lib/cmake/Libkolab/LibkolabConfig.cmake lib/cmake/Libkolab/LibkolabConfigVersion.cmake lib/cmake/Libkolab/LibkolabTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Libkolab/LibkolabTargets.cmake lib/libkolab.so lib/libkolab.so.0 lib/libkolab.so.%%SHLIB_VER%% -@dirrm lib/cmake/Libkolab -@dirrmtry lib/cmake -@dirrm include/kolab Index: head/multimedia/phonon/Makefile =================================================================== --- head/multimedia/phonon/Makefile (revision 371189) +++ head/multimedia/phonon/Makefile (revision 371190) @@ -1,47 +1,46 @@ # Created by: Martin Wilke # $FreeBSD$ PORTNAME= phonon -PORTVERSION= 4.7.2 -PORTREVISION= 1 +PORTVERSION= 4.8.1 CATEGORIES= multimedia kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= KDE multimedia framework LICENSE= LGPL21 LIB_DEPENDS= libqzeitgeist.so:${PORTSDIR}/sysutils/qzeitgeist -USE_KDE4= kdehier kdeprefix automoc4 +USE_KDE4= kdeprefix automoc4 USE_QT4= corelib dbus gui \ qmake_build moc_build rcc_build uic_build USES= cmake tar:xz CMAKE_ARGS= -DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT:BOOL=TRUE \ -DPHONON_NO_PLATFORMPLUGIN:BOOL=TRUE \ -DPHONON_BUILD_DESIGNER_PLUGIN:BOOL=OFF USE_LDCONFIG= yes PLIST_SUB= SHLIB_VER=${PORTVERSION} OPTIONS_DEFINE= PULSEAUDIO PULSEAUDIO_LIB_DEPENDS= libpulse.so:${PORTSDIR}/audio/pulseaudio PULSEAUDIO_USE= GNOME=glib20 PULSEAUDIO_CMAKE_ON= -DWITH_PulseAudio:BOOL=ON PULSEAUDIO_CMAKE_OFF= -DWITH_PulseAudio:BOOL=OFF post-install: ${MKDIR} ${STAGEDIR}${QT_INCDIR} ${MKDIR} ${STAGEDIR}${QT_LIBDIR} ${LN} -sf ${PREFIX}/include/phonon ${STAGEDIR}${QT_INCDIR}/phonon ${LN} -sf ${PREFIX}/include/phonon ${STAGEDIR}${QT_INCDIR}/Phonon ${LN} -sf ${PREFIX}/include/KDE/Phonon ${STAGEDIR}${PREFIX}/include/phonon/Phonon .for lib in phonon phononexperimental ${LN} -sf ${PREFIX}/lib/lib${lib}.so.${PORTVERSION} ${STAGEDIR}${QT_LIBDIR}/lib${lib}.so ${LN} -sf ${PREFIX}/lib/lib${lib}.so.${PORTVERSION} ${STAGEDIR}${QT_LIBDIR}/lib${lib}.so.4 .endfor .include Index: head/multimedia/phonon/distinfo =================================================================== --- head/multimedia/phonon/distinfo (revision 371189) +++ head/multimedia/phonon/distinfo (revision 371190) @@ -1,2 +1,2 @@ -SHA256 (KDE/phonon-4.7.2.tar.xz) = 819e9734d20e254b4599d8ab45f15a68d95444c4e2088c7eb5769b58976a11be -SIZE (KDE/phonon-4.7.2.tar.xz) = 330244 +SHA256 (KDE/phonon-4.8.1.tar.xz) = b6ca0126cd5330731875acc1cc0b60f8c9ed7ebc71e1d0210b74bf21658027d1 +SIZE (KDE/phonon-4.8.1.tar.xz) = 321652 Index: head/multimedia/phonon/pkg-plist =================================================================== --- head/multimedia/phonon/pkg-plist (revision 371189) +++ head/multimedia/phonon/pkg-plist (revision 371190) @@ -1,200 +1,188 @@ include/KDE/Phonon/AbstractAudioOutput include/KDE/Phonon/AbstractMediaStream include/KDE/Phonon/AbstractVideoOutput include/KDE/Phonon/AddonInterface include/KDE/Phonon/AudioDevice include/KDE/Phonon/AudioDeviceEnumerator include/KDE/Phonon/AudioOutput include/KDE/Phonon/AudioOutputDevice include/KDE/Phonon/AudioOutputDeviceModel include/KDE/Phonon/AudioOutputInterface include/KDE/Phonon/BackendCapabilities include/KDE/Phonon/BackendInterface include/KDE/Phonon/Effect include/KDE/Phonon/EffectDescription include/KDE/Phonon/EffectDescriptionModel include/KDE/Phonon/EffectInterface include/KDE/Phonon/EffectParameter include/KDE/Phonon/EffectWidget include/KDE/Phonon/Experimental/AbstractVideoDataOutput include/KDE/Phonon/Experimental/AudioDataOutput include/KDE/Phonon/Experimental/SnapshotInterface include/KDE/Phonon/Experimental/VideoDataOutput include/KDE/Phonon/Experimental/VideoDataOutputInterface include/KDE/Phonon/Experimental/VideoFrame include/KDE/Phonon/Experimental/VideoFrame2 include/KDE/Phonon/Experimental/Visualization include/KDE/Phonon/Global include/KDE/Phonon/MediaController include/KDE/Phonon/MediaNode include/KDE/Phonon/MediaObject include/KDE/Phonon/MediaObjectInterface include/KDE/Phonon/MediaSource include/KDE/Phonon/ObjectDescription include/KDE/Phonon/ObjectDescriptionModel include/KDE/Phonon/Path include/KDE/Phonon/PlatformPlugin include/KDE/Phonon/SeekSlider include/KDE/Phonon/StreamInterface include/KDE/Phonon/VideoPlayer include/KDE/Phonon/VideoWidget include/KDE/Phonon/VideoWidgetInterface include/KDE/Phonon/VolumeFaderEffect include/KDE/Phonon/VolumeFaderInterface include/KDE/Phonon/VolumeSlider include/phonon/AbstractAudioOutput include/phonon/AbstractMediaStream include/phonon/AbstractVideoOutput include/phonon/AddonInterface include/phonon/AudioCaptureDevice include/phonon/AudioCaptureDeviceModel include/phonon/AudioChannelDescription include/phonon/AudioChannelDescriptionModel include/phonon/AudioDataOutput include/phonon/AudioOutput include/phonon/AudioOutputDevice include/phonon/AudioOutputDeviceModel include/phonon/AudioOutputInterface include/phonon/AudioOutputInterface40 include/phonon/AudioOutputInterface42 include/phonon/AvCapture include/phonon/BackendCapabilities include/phonon/BackendInterface include/phonon/Effect include/phonon/EffectDescription include/phonon/EffectDescriptionModel include/phonon/EffectInterface include/phonon/EffectParameter include/phonon/EffectWidget include/phonon/Global include/phonon/GlobalDescriptionContainer include/phonon/MediaController include/phonon/MediaNode include/phonon/MediaObject include/phonon/MediaObjectInterface include/phonon/MediaSource include/phonon/Mrl include/phonon/ObjectDescription include/phonon/ObjectDescriptionData include/phonon/ObjectDescriptionModel include/phonon/ObjectDescriptionModelData include/phonon/Path include/phonon/Phonon include/phonon/PlatformPlugin include/phonon/SeekSlider include/phonon/StreamInterface include/phonon/SubtitleDescription include/phonon/SubtitleDescriptionModel include/phonon/VideoCaptureDevice include/phonon/VideoCaptureDeviceModel include/phonon/VideoPlayer include/phonon/VideoWidget include/phonon/VideoWidgetInterface include/phonon/VideoWidgetInterface44 include/phonon/VideoWidgetInterfaceLatest include/phonon/VolumeFaderEffect include/phonon/VolumeFaderInterface include/phonon/VolumeSlider include/phonon/abstractaudiooutput.h include/phonon/abstractmediastream.h include/phonon/abstractvideooutput.h include/phonon/addoninterface.h include/phonon/audiodataoutput.h include/phonon/audiodataoutputinterface.h include/phonon/audiooutput.h include/phonon/audiooutputinterface.h include/phonon/backendcapabilities.h include/phonon/backendinterface.h include/phonon/effect.h include/phonon/effectinterface.h include/phonon/effectparameter.h include/phonon/effectwidget.h include/phonon/experimental/abstractaudiodataoutput.h include/phonon/experimental/abstractvideodataoutput.h include/phonon/experimental/audiodataoutput.h include/phonon/experimental/audiodataoutputinterface.h include/phonon/experimental/audioformat.h include/phonon/experimental/avcapture.h include/phonon/experimental/avcaptureinterface.h include/phonon/experimental/backendcapabilities.h include/phonon/experimental/backendinterface.h include/phonon/experimental/export.h include/phonon/experimental/globalconfig.h include/phonon/experimental/mediasource.h include/phonon/experimental/objectdescription.h include/phonon/experimental/packet.h include/phonon/experimental/packetpool.h include/phonon/experimental/phononnamespace.h include/phonon/experimental/snapshotinterface.h include/phonon/experimental/videodataoutput.h include/phonon/experimental/videodataoutput2.h include/phonon/experimental/videodataoutputinterface.h include/phonon/experimental/videoframe.h include/phonon/experimental/videoframe2.h include/phonon/experimental/videowidget.h include/phonon/experimental/visualization.h include/phonon/globalconfig.h include/phonon/globaldescriptioncontainer.h include/phonon/mediacontroller.h include/phonon/medianode.h include/phonon/mediaobject.h include/phonon/mediaobjectinterface.h include/phonon/mediasource.h include/phonon/mrl.h include/phonon/objectdescription.h include/phonon/objectdescriptionmodel.h include/phonon/path.h include/phonon/phonon_export.h include/phonon/phonondefs.h include/phonon/phononnamespace.h include/phonon/platformplugin.h include/phonon/pulsesupport.h include/phonon/seekslider.h include/phonon/streaminterface.h include/phonon/videoplayer.h include/phonon/videowidget.h include/phonon/videowidgetinterface.h include/phonon/volumefadereffect.h include/phonon/volumefaderinterface.h include/phonon/volumeslider.h lib/cmake/phonon/PhononConfig.cmake lib/cmake/phonon/PhononConfigVersion.cmake lib/cmake/phonon/PhononTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/phonon/PhononTargets.cmake lib/libphonon.so lib/libphonon.so.4 lib/libphonon.so.%%SHLIB_VER%% lib/libphononexperimental.so lib/libphononexperimental.so.4 lib/libphononexperimental.so.%%SHLIB_VER%% libdata/pkgconfig/phonon.pc share/dbus-1/interfaces/org.kde.Phonon.AudioOutput.xml %%DATADIR%%/buildsystem/COPYING-CMAKE-SCRIPTS %%DATADIR%%/buildsystem/FindAutomoc4.cmake %%DATADIR%%/buildsystem/FindPackageHandleStandardArgs.cmake %%DATADIR%%/buildsystem/FindPhononInternal.cmake %%DATADIR%%/buildsystem/MacroEnsureVersion.cmake %%DATADIR%%/buildsystem/MacroLogFeature.cmake %%DATADIR%%/buildsystem/MacroOptionalFindPackage.cmake %%DATADIR%%/buildsystem/MacroPushRequiredVars.cmake %%DATADIR%%/buildsystem/PhononMacros.cmake %%DATADIR%%/buildsystem/cmake_uninstall.cmake.in -@dirrm %%DATADIR%%/buildsystem -@dirrm %%DATADIR%% -@dirrm lib/cmake/phonon -@dirrmtry lib/cmake -@dirrm include/phonon/experimental -@dirrm include/phonon -@dirrm include/KDE/Phonon/Experimental -@dirrm include/KDE/Phonon -@cwd %%QT_PREFIX%% -%%QT_INCDIR%%/Phonon -%%QT_INCDIR%%/phonon -%%QT_LIBDIR%%/libphonon.so -%%QT_LIBDIR%%/libphonon.so.4 -%%QT_LIBDIR%%/libphononexperimental.so -%%QT_LIBDIR%%/libphononexperimental.so.4 -share/qt4/mkspecs/modules/qt_phonon.pri -@dirrmtry share/qt4/mkspecs/modules -@dirrmtry %%QT_LIBDIR%% -@dirrmtry %%QT_INCDIR%% +%%QT_PREFIX%%/%%QT_INCDIR%%/Phonon +%%QT_PREFIX%%/%%QT_INCDIR%%/phonon +%%QT_PREFIX%%/%%QT_LIBDIR%%/libphonon.so +%%QT_PREFIX%%/%%QT_LIBDIR%%/libphonon.so.4 +%%QT_PREFIX%%/%%QT_LIBDIR%%/libphononexperimental.so +%%QT_PREFIX%%/%%QT_LIBDIR%%/libphononexperimental.so.4 +%%QT_PREFIX%%/%%QT_MKSPECDIR%%/modules/qt_phonon.pri Index: head/multimedia/phonon-designerplugin/Makefile =================================================================== --- head/multimedia/phonon-designerplugin/Makefile (revision 371189) +++ head/multimedia/phonon-designerplugin/Makefile (revision 371190) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= phonon -PORTVERSION= 4.7.2 -PORTREVISION= 1 +PORTVERSION= 4.8.1 CATEGORIES= multimedia kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} PKGNAMESUFFIX= -designerplugin DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Qt Designer plugin for Phonon LICENSE= LGPL21 USE_QT4= phonon designer \ qmake_build moc_build rcc_build uic_build USES= cmake tar:xz CMAKE_ARGS= -DPHONON_QT_PLUGIN_INSTALL_DIR=${PREFIX}/${QT_PLUGINDIR_REL}/designer BUILD_WRKSRC= ${WRKSRC}/designer INSTALL_WRKSRC= ${BUILD_WRKSRC} DISTINFO_FILE= ${.CURDIR:H}/phonon/distinfo PLIST_FILES= ${QT_PLUGINDIR_REL}/designer/libphononwidgets.so .include Index: head/multimedia/phonon-gstreamer/Makefile =================================================================== --- head/multimedia/phonon-gstreamer/Makefile (revision 371189) +++ head/multimedia/phonon-gstreamer/Makefile (revision 371190) @@ -1,36 +1,35 @@ # Created by: Martin Wilke # $FreeBSD$ PORTNAME= phonon -PORTVERSION= 4.7.2 -PORTREVISION= 1 +PORTVERSION= 4.8.0 CATEGORIES= multimedia kde -MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION}/src +MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION} PKGNAMESUFFIX= -gstreamer DISTNAME= ${PORTNAME}-backend${PKGNAMESUFFIX}-${PORTVERSION} DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= GStreamer backend for Phonon USE_GL= gl USE_GNOME= glib20 libxml2 -USE_GSTREAMER= yes -USE_KDE4= kdehier kdeprefix automoc4 +USE_GSTREAMER1= yes +USE_KDE4= kdeprefix automoc4 USE_QT4= corelib gui opengl phonon \ qmake_build moc_build rcc_build uic_build USE_XORG= x11 USES= cmake pkgconfig tar:xz SUB_FILES= pkg-message OPTIONS_DEFINE= GST_PLUGINS GST_PLUGINS_DESC= Install GStreamer plugins -GST_PLUGINS_RUN_DEPENDS= gstreamer-plugins-all>=0:${PORTSDIR}/multimedia/gstreamer-plugins-all +GST_PLUGINS_RUN_DEPENDS= gstreamer1-plugins-all>=0:${PORTSDIR}/multimedia/gstreamer1-plugins-all post-install: ${MKDIR} ${STAGEDIR}${QT_PLUGINDIR}/phonon_backend ${LN} -sf ${PREFIX}/lib/kde4/plugins/phonon_backend/phonon_gstreamer.so \ ${STAGEDIR}${QT_PLUGINDIR}/phonon_backend/libphonon_gstreamer.so .include Index: head/multimedia/phonon-gstreamer/distinfo =================================================================== --- head/multimedia/phonon-gstreamer/distinfo (revision 371189) +++ head/multimedia/phonon-gstreamer/distinfo (revision 371190) @@ -1,2 +1,2 @@ -SHA256 (KDE/phonon-backend-gstreamer-4.7.2.tar.xz) = 80b72a9092f540dd0a2abd2898328f3d5f9febfa073b0b1d44592a050a99d2b1 -SIZE (KDE/phonon-backend-gstreamer-4.7.2.tar.xz) = 75552 +SHA256 (KDE/phonon-backend-gstreamer-4.8.0.tar.xz) = f819cbd6296e1e19579e365902f7930ec8571e8cbb08718484091a795f70587e +SIZE (KDE/phonon-backend-gstreamer-4.8.0.tar.xz) = 75608 Index: head/multimedia/phonon-gstreamer/pkg-plist =================================================================== --- head/multimedia/phonon-gstreamer/pkg-plist (revision 371189) +++ head/multimedia/phonon-gstreamer/pkg-plist (revision 371190) @@ -1,14 +1,9 @@ lib/kde4/plugins/phonon_backend/phonon_gstreamer.so share/icons/hicolor/128x128/apps/phonon-gstreamer.png share/icons/hicolor/16x16/apps/phonon-gstreamer.png share/icons/hicolor/22x22/apps/phonon-gstreamer.png share/icons/hicolor/48x48/apps/phonon-gstreamer.png share/icons/hicolor/64x64/apps/phonon-gstreamer.png share/icons/hicolor/scalable/apps/phonon-gstreamer.svgz share/kde4/services/phononbackends/gstreamer.desktop -@dirrmtry share/kde4/services/phononbackends -@dirrmtry lib/kde4/plugins/phonon_backend -@cwd %%QT_PREFIX%% -%%QT_PLUGINDIR%%/phonon_backend/libphonon_gstreamer.so -@dirrmtry %%QT_PLUGINDIR%%/phonon_backend -@dirrmtry %%QT_PLUGINDIR%% +%%QT_PREFIX%%/%%QT_PLUGINDIR%%/phonon_backend/libphonon_gstreamer.so Index: head/multimedia/phonon-vlc/Makefile =================================================================== --- head/multimedia/phonon-vlc/Makefile (revision 371189) +++ head/multimedia/phonon-vlc/Makefile (revision 371190) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= phonon -PORTVERSION= 0.7.2 -PORTREVISION= 1 +PORTVERSION= 0.8.0 CATEGORIES= multimedia kde -MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION}/src +MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION} PKGNAMESUFFIX= -vlc DISTNAME= ${PORTNAME}-backend${PKGNAMESUFFIX}-${PORTVERSION} DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= VLC backend for Phonon LIB_DEPENDS= libvlc.so:${PORTSDIR}/multimedia/vlc -USE_KDE4= kdehier kdeprefix automoc4 +USE_KDE4= kdeprefix automoc4 USE_QT4= corelib gui phonon \ qmake_build moc_build rcc_build uic_build USES= cmake pkgconfig tar:xz post-install: ${MKDIR} ${STAGEDIR}${QT_PLUGINDIR}/phonon_backend ${LN} -sf ${PREFIX}/lib/kde4/plugins/phonon_backend/phonon_vlc.so \ ${STAGEDIR}${QT_PLUGINDIR}/phonon_backend/libphonon_vlc.so .include Index: head/multimedia/phonon-vlc/distinfo =================================================================== --- head/multimedia/phonon-vlc/distinfo (revision 371189) +++ head/multimedia/phonon-vlc/distinfo (revision 371190) @@ -1,2 +1,2 @@ -SHA256 (KDE/phonon-backend-vlc-0.7.2.tar.xz) = 0a788360df2e3439efefacae70b73252c1e1d4a7ad08f4d93301d77a915d95a9 -SIZE (KDE/phonon-backend-vlc-0.7.2.tar.xz) = 58988 +SHA256 (KDE/phonon-backend-vlc-0.8.0.tar.xz) = e092185ba7798b65da0ee2707e4ebdb32d4d1858282f5bb96bce890336938a42 +SIZE (KDE/phonon-backend-vlc-0.8.0.tar.xz) = 59076 Index: head/multimedia/phonon-vlc/pkg-plist =================================================================== --- head/multimedia/phonon-vlc/pkg-plist (revision 371189) +++ head/multimedia/phonon-vlc/pkg-plist (revision 371190) @@ -1,8 +1,3 @@ lib/kde4/plugins/phonon_backend/phonon_vlc.so share/kde4/services/phononbackends/vlc.desktop -@dirrmtry share/kde4/services/phononbackends -@dirrmtry lib/kde4/plugins/phonon_backend -@cwd %%QT_PREFIX%% -%%QT_PLUGINDIR%%/phonon_backend/libphonon_vlc.so -@dirrmtry %%QT_PLUGINDIR%%/phonon_backend -@dirrmtry %%QT_PLUGINDIR%% +%%QT_PREFIX%%/%%QT_PLUGINDIR%%/phonon_backend/libphonon_vlc.so