From owner-svn-ports-all@freebsd.org Wed Mar 29 08:49:21 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8666D22B75; Wed, 29 Mar 2017 08:49:21 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C8E465D21; Wed, 29 Mar 2017 08:49:21 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2T8nKkb071117; Wed, 29 Mar 2017 08:49:20 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2T8nKKx071115; Wed, 29 Mar 2017 08:49:20 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201703290849.v2T8nKKx071115@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Wed, 29 Mar 2017 08:49:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r437186 - in head/deskutils/plasma-applet-daisy: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Mar 2017 08:49:21 -0000 Author: jhale Date: Wed Mar 29 08:49:20 2017 New Revision: 437186 URL: https://svnweb.freebsd.org/changeset/ports/437186 Log: Unbreak linking after r436971 /usr/bin/ld: cannot find -ltaskmanager c++: error: linker command failed with exit code 1 (use -v to see invocation) *** Error code 1 Add missing dependencies Fix LICENSE and add LICENSE_FILE Added: head/deskutils/plasma-applet-daisy/files/ head/deskutils/plasma-applet-daisy/files/patch-applet_CMakeLists.txt (contents, props changed) Modified: head/deskutils/plasma-applet-daisy/Makefile Modified: head/deskutils/plasma-applet-daisy/Makefile ============================================================================== --- head/deskutils/plasma-applet-daisy/Makefile Wed Mar 29 08:36:41 2017 (r437185) +++ head/deskutils/plasma-applet-daisy/Makefile Wed Mar 29 08:49:20 2017 (r437186) @@ -2,7 +2,7 @@ PORTNAME= daisy PORTVERSION= 0.0.4.26 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= deskutils kde MASTER_SITES= http://cdlszm.org/downloads/ PKGNAMEPREFIX= plasma-applet- @@ -11,10 +11,12 @@ DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${ MAINTAINER= jhale@FreeBSD.org COMMENT= Simple launcher plasma applet for KDE4 -LICENSE= GPLv3 +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake gettext kde:4 USE_KDE= automoc4 kdelibs workspace -USE_QT4= qmake_build moc_build rcc_build uic_build +USE_QT4= corelib dbus gui network svg xml \ + qmake_build moc_build rcc_build uic_build .include Added: head/deskutils/plasma-applet-daisy/files/patch-applet_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/plasma-applet-daisy/files/patch-applet_CMakeLists.txt Wed Mar 29 08:49:20 2017 (r437186) @@ -0,0 +1,21 @@ +Specifically find taskmanager library with CMake + +--- applet/CMakeLists.txt.orig 2017-03-29 07:44:51 UTC ++++ applet/CMakeLists.txt +@@ -4,6 +4,7 @@ project(daisy) + + # Find the required Libaries + find_package(KDE4 REQUIRED) ++find_package(KDE4Workspace REQUIRED) + include(KDE4Defaults) + + add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS}) +@@ -26,7 +27,7 @@ kde4_add_plugin(plasma_applet_daisy ${da + + target_link_libraries(plasma_applet_daisy + ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_KUTILS_LIBS} +- ${KDE4_KIO_LIBS} taskmanager ) ++ ${KDE4_KIO_LIBS} ${KDE4WORKSPACE_TASKMANAGER_LIBRARY} ) + + install(TARGETS plasma_applet_daisy + DESTINATION ${PLUGIN_INSTALL_DIR})