svn commit: r562022 - head/multimedia/musikcube

Yuri Victorovich yuri at FreeBSD.org
Tue Jan 19 04:26:23 UTC 2021


Author: yuri
Date: Tue Jan 19 04:26:22 2021
New Revision: 562022
URL: https://svnweb.freebsd.org/changeset/ports/562022

Log:
  multimedia/musikcube: Fix crash by reverting change to ncurses:base
  
  ncurses:base causes the application to abort due to the exception.
  
  PR:		249572 252817
  Reported by:	casey langen <casey.langen at gmail.com>

Modified:
  head/multimedia/musikcube/Makefile

Modified: head/multimedia/musikcube/Makefile
==============================================================================
--- head/multimedia/musikcube/Makefile	Tue Jan 19 04:26:12 2021	(r562021)
+++ head/multimedia/musikcube/Makefile	Tue Jan 19 04:26:22 2021	(r562022)
@@ -2,6 +2,7 @@
 
 PORTNAME=	musikcube
 DISTVERSION=	0.96.4
+PORTREVISION=	1
 CATEGORIES=	multimedia audio
 
 MAINTAINER=	yuri at FreeBSD.org
@@ -23,22 +24,11 @@ LIB_DEPENDS=	libavcodec.so:multimedia/ffmpeg \
 		libtag.so:audio/taglib \
 		libvorbis.so:audio/libvorbis
 
-USES=		cmake:noninja compiler:c++14-lang pkgconfig ssl
+USES=		cmake:noninja compiler:c++14-lang ncurses:port pkgconfig ssl # ncurses:port was changed to base by bug#249572, but this caused it to abort (bug#252817) and was reverted
 
 USE_LDCONFIG=	yes
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	clangen
-
-CMAKE_ARGS=	-DNCURSES_LIBRARIES="cursesw;tinfow;panelw"
-
-.include <bsd.port.options.mk>
-
-.if ${OPSYS} == "FreeBSD" && ${OSVERSION} >= 1300079
-USES+=		ncurses
-.else
-USES+=		ncurses:port
-CFLAGS+=	-I${LOCALBASE}/include/ncurses
-.endif
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list