svn commit: r560014 - in branches/2021Q1/audio/libsidplay2: . files

Rene Ladan rene at FreeBSD.org
Sun Jan 3 15:32:21 UTC 2021


Author: rene
Date: Sun Jan  3 15:32:21 2021
New Revision: 560014
URL: https://svnweb.freebsd.org/changeset/ports/560014

Log:
  MFH: r560012
  
  audio/libsidplay2: several fixes and improvements
  
  - fix build on architectures using GCC 6
  - drop unused gmake dependency
  - use DIST* instead of PORT*
  
  PR:		252368
  Submitted by:	Daniel Engberg

Added:
  branches/2021Q1/audio/libsidplay2/files/patch-libsidplay_src-xsid_xsid.cpp
     - copied unchanged from r560012, head/audio/libsidplay2/files/patch-libsidplay_src-xsid_xsid.cpp
Modified:
  branches/2021Q1/audio/libsidplay2/Makefile
Directory Properties:
  branches/2021Q1/   (props changed)

Modified: branches/2021Q1/audio/libsidplay2/Makefile
==============================================================================
--- branches/2021Q1/audio/libsidplay2/Makefile	Sun Jan  3 15:30:35 2021	(r560013)
+++ branches/2021Q1/audio/libsidplay2/Makefile	Sun Jan  3 15:32:21 2021	(r560014)
@@ -2,18 +2,18 @@
 # $FreeBSD$
 
 PORTNAME=	libsidplay2
-PORTVERSION=	2.1.1
-PORTREVISION=	8
+DISTVERSION=	2.1.1
+PORTREVISION=	9
 CATEGORIES=	audio emulators
-MASTER_SITES=	SF/sidplay2/sidplay2/sidplay-libs-${PORTVERSION}
-DISTNAME=	sidplay-libs-${PORTVERSION}
+MASTER_SITES=	SF/sidplay2/sidplay2/sidplay-libs-${DISTVERSION}
+DISTNAME=	sidplay-libs-${DISTVERSION}
 
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Library to play Commodore 64 SID-tunes cycle accurately
 
 GNU_CONFIGURE=	yes
 INSTALL_TARGET=	install-strip
-USES=		gmake libtool pathfix pkgconfig
+USES=		libtool pathfix pkgconfig
 USE_LDCONFIG=	yes
 
 post-patch:

Copied: branches/2021Q1/audio/libsidplay2/files/patch-libsidplay_src-xsid_xsid.cpp (from r560012, head/audio/libsidplay2/files/patch-libsidplay_src-xsid_xsid.cpp)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2021Q1/audio/libsidplay2/files/patch-libsidplay_src-xsid_xsid.cpp	Sun Jan  3 15:32:21 2021	(r560014, copy of r560012, head/audio/libsidplay2/files/patch-libsidplay_src-xsid_xsid.cpp)
@@ -0,0 +1,13 @@
+--- libsidplay/src/xsid/xsid.cpp.orig	2004-06-14 20:08:02 UTC
++++ libsidplay/src/xsid/xsid.cpp
+@@ -96,8 +96,8 @@ const int8_t XSID::sampleConvertTable[16] =
+ */
+ const int8_t XSID::sampleConvertTable[16] =
+ {
+-    '\x80', '\x94', '\xa9', '\xbc', '\xce', '\xe1', '\xf2', '\x03',
+-    '\x1b', '\x2a', '\x3b', '\x49', '\x58', '\x66', '\x73', '\x7f'
++    (int8_t)'\x80', (int8_t)'\x94', (int8_t)'\xa9', (int8_t)'\xbc', (int8_t)'\xce', (int8_t)'\xe1', (int8_t)'\xf2', (int8_t)'\x03',
++    (int8_t)'\x1b', (int8_t)'\x2a', (int8_t)'\x3b', (int8_t)'\x49', (int8_t)'\x58', (int8_t)'\x66', (int8_t)'\x73', (int8_t)'\x7f'
+ };
+ 
+ const char *XSID::credit =


More information about the svn-ports-branches mailing list