Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Sep 2020 04:24:09 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r547319 - in head/multimedia/musikcube: . files
Message-ID:  <202009020424.0824O9BZ091794@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Wed Sep  2 04:24:08 2020
New Revision: 547319
URL: https://svnweb.freebsd.org/changeset/ports/547319

Log:
  multimedia/musikcube: switch to base ncurses
  
  PR:		248900
  Approved by:	yuri (maintainer)

Added:
  head/multimedia/musikcube/files/patch-src_musikcube_CMakeLists.txt   (contents, props changed)
Modified:
  head/multimedia/musikcube/Makefile   (contents, props changed)

Modified: head/multimedia/musikcube/Makefile
==============================================================================
--- head/multimedia/musikcube/Makefile	Wed Sep  2 04:22:56 2020	(r547318)
+++ head/multimedia/musikcube/Makefile	Wed Sep  2 04:24:08 2020	(r547319)
@@ -2,7 +2,7 @@
 
 PORTNAME=	musikcube
 DISTVERSION=	0.93.1
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	multimedia audio
 
 MAINTAINER=	yuri@FreeBSD.org
@@ -24,7 +24,7 @@ LIB_DEPENDS=	libavcodec.so:multimedia/ffmpeg \
 		libtag.so:audio/taglib \
 		libvorbis.so:audio/libvorbis
 
-USES=		cmake:noninja compiler:c++14-lang ncurses:port pkgconfig ssl
+USES=		cmake:noninja compiler:c++14-lang ncurses:base pkgconfig ssl
 USE_GITHUB=	yes
 GH_ACCOUNT=	clangen
 USE_LDCONFIG=	yes

Added: head/multimedia/musikcube/files/patch-src_musikcube_CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/musikcube/files/patch-src_musikcube_CMakeLists.txt	Wed Sep  2 04:24:08 2020	(r547319)
@@ -0,0 +1,12 @@
+--- src/musikcube/CMakeLists.txt.orig	2020-08-25 03:20:42 UTC
++++ src/musikcube/CMakeLists.txt
+@@ -80,8 +80,7 @@ set_target_properties(musikcube PROPERTIES LINK_FLAGS 
+ 
+ if (CMAKE_SYSTEM_NAME MATCHES "Linux" OR CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
+ 	find_package(PkgConfig)
+-	pkg_check_modules(NCURSES REQUIRED ncursesw panelw)
+-	target_link_libraries(musikcube ${musikcube_LINK_LIBS} ${NCURSES_LIBRARIES} musikcore)
++	target_link_libraries(musikcube ${musikcube_LINK_LIBS} ncursesw tinfow panelw musikcore)
+ else()
+ 	target_link_libraries(musikcube ${musikcube_LINK_LIBS} curses panel musikcore)
+ endif()



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009020424.0824O9BZ091794>