From owner-svn-ports-all@FreeBSD.ORG Sun Aug 11 17:05:53 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E07EEA93; Sun, 11 Aug 2013 17:05:53 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B2D4E2D73; Sun, 11 Aug 2013 17:05:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7BH5r06038866; Sun, 11 Aug 2013 17:05:53 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7BH5rEj038864; Sun, 11 Aug 2013 17:05:53 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201308111705.r7BH5rEj038864@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 11 Aug 2013 17:05:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324600 - in head/graphics/kpovmodeler: . 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.14 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: Sun, 11 Aug 2013 17:05:54 -0000 Author: rakuco Date: Sun Aug 11 17:05:53 2013 New Revision: 324600 URL: http://svnweb.freebsd.org/changeset/ports/324600 Log: Unbreak the build. Import a few patches originally from Gentoo: o http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/media-gfx/kpovmodeler/files/kpovmodeler-1.1.3-freetype-include.patch?hideattic=0&revision=1.1&view=markup o http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/media-gfx/kpovmodeler/files/kpovmodeler-1.1.3-underlinking.patch?hideattic=0&revision=1.2&view=markup That fix the FreeType errors there were occurring, and also a linking problem that was happening at a later stage. Obtained from: Gentoo Added: head/graphics/kpovmodeler/files/patch-CMakeLists.txt (contents, props changed) Modified: head/graphics/kpovmodeler/pkg-descr Added: head/graphics/kpovmodeler/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/kpovmodeler/files/patch-CMakeLists.txt Sun Aug 11 17:05:53 2013 (r324600) @@ -0,0 +1,25 @@ +The first hunk fixes the build by including the right FreeType directory. + +The second one explicitly links against libkdeui, as there were linking +problems because of kdeui functions being used without the library being +explicitly referenced. +--- CMakeLists.txt.orig 2009-08-31 18:17:15.000000000 +0300 ++++ CMakeLists.txt 2013-08-11 19:53:43.000000000 +0300 +@@ -11,7 +11,7 @@ + + configure_file(config-kpovmodeler.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-kpovmodeler.h ) + +-include_directories(${FREETYPE_INCLUDE_DIR}) ++include_directories(${FREETYPE_INCLUDE_DIRS}) + add_definitions (-DQT3_SUPPORT -DQT3_SUPPORT_WARNINGS) + + ########### next target ############### +@@ -306,7 +306,7 @@ + + kde4_add_executable(kpovmodeler ${kpovmodeler_SRCS}) + +-target_link_libraries(kpovmodeler ${KDE4_KDECORE_LIBS} lkpovmodeler ) ++target_link_libraries(kpovmodeler ${KDE4_KDECORE_LIBS} ${KDE4_KDEUI_LIBS} lkpovmodeler ) + + install(TARGETS kpovmodeler ${INSTALL_TARGETS_DEFAULT_ARGS} ) + Modified: head/graphics/kpovmodeler/pkg-descr ============================================================================== --- head/graphics/kpovmodeler/pkg-descr Sun Aug 11 16:45:53 2013 (r324599) +++ head/graphics/kpovmodeler/pkg-descr Sun Aug 11 17:05:53 2013 (r324600) @@ -1,4 +1,4 @@ KPovModeler is a modeling and composition program for creating POV-Ray(TM) scenes in KDE. -WWW: http://www.kpovmodeler.org/ +WWW: http://www.kpovmodeler.org/