Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 ocp (1:0.2.2+ds-1) unstable; urgency=medium
 .
   * New upstream version.
   * Add ttf-unifont, xa65 to Build-Depends.
   * Bump standards version to 4.5.0.
   * Drop d/rules.old.
Author: Gürkan Myczko <gurkan@phys.ethz.ch>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2020-06-01

--- /dev/null
+++ ocp-0.2.2+ds/playsid/sidplayfp-config/config.h
@@ -0,0 +1,26 @@
+/* playsid/sidplayfp-config/config.h.  Generated from config.h.in by configure.  */
+/* define if the compiler supports basic C++11 syntax */
+#define HAVE_CXX11 1
+
+/* Define to 1 if you have the <sidplayfp/builders/exsid.h> header file. */
+/* #undef HAVE_SIDPLAYFP_BUILDERS_EXSID_H */
+
+/* Define to 1 if you have the <sidplayfp/builders/hardsid.h> header file. */
+/* #undef HAVE_SIDPLAYFP_BUILDERS_HARDSID_H */
+
+/* Define to 1 if you have the <sidplayfp/builders/residfp.h> header file. */
+/* #undef HAVE_SIDPLAYFP_BUILDERS_RESIDFP_H */
+
+/* Define to 1 if you have the <sidplayfp/builders/resid.h> header file. */
+/* #undef HAVE_SIDPLAYFP_BUILDERS_RESID_H */
+
+/* Define to 1 if you have the `strcasecmp' function. */
+#define HAVE_STRCASECMP 1
+
+/* Define to 1 if you have the `strncasecmp' function. */
+#define HAVE_STRNCASECMP 1
+
+/* Define to 1 if you have the <unistd.h> header file. */
+#define HAVE_UNISTD_H 1
+
+/* #undef WORDS_BIGENDIAN */
--- /dev/null
+++ ocp-0.2.2+ds/playsid/sidplayfp-git/libsidplayfp/src/builders/resid-builder/resid/siddefs.h
@@ -0,0 +1,94 @@
+//  ---------------------------------------------------------------------------
+//  This file is part of reSID, a MOS6581 SID emulator engine.
+//  Copyright (C) 2010  Dag Lem <resid@nimrod.no>
+//
+//  This program is free software; you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License as published by
+//  the Free Software Foundation; either version 2 of the License, or
+//  (at your option) any later version.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, write to the Free Software
+//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+//  ---------------------------------------------------------------------------
+
+#ifndef RESID_SIDDEFS_H
+#define RESID_SIDDEFS_H
+
+// Compilation configuration.
+#define RESID_INLINING 1
+#define RESID_INLINE inline
+#define RESID_BRANCH_HINTS 1
+
+#define NEW_8580_FILTER 0
+
+// Compiler specifics.
+#define HAVE_BOOL 1
+#define HAVE_BUILTIN_EXPECT 1
+#define HAVE_LOG1P 1
+
+// Define bool, true, and false for C++ compilers that lack these keywords.
+#if !HAVE_BOOL
+typedef int bool;
+const bool true = 1;
+const bool false = 0;
+#endif
+
+#if HAVE_LOG1P
+#define HAS_LOG1P
+#endif
+
+// Branch prediction macros, lifted off the Linux kernel.
+#if RESID_BRANCH_HINTS && HAVE_BUILTIN_EXPECT
+#define likely(x)      __builtin_expect(!!(x), 1)
+#define unlikely(x)    __builtin_expect(!!(x), 0)
+#else
+#define likely(x)      (x)
+#define unlikely(x)    (x)
+#endif
+
+namespace reSID {
+
+// We could have used the smallest possible data type for each SID register,
+// however this would give a slower engine because of data type conversions.
+// An int is assumed to be at least 32 bits (necessary in the types reg24
+// and cycle_count). GNU does not support 16-bit machines
+// (GNU Coding Standards: Portability between CPUs), so this should be
+// a valid assumption.
+
+typedef unsigned int reg4;
+typedef unsigned int reg8;
+typedef unsigned int reg12;
+typedef unsigned int reg16;
+typedef unsigned int reg24;
+
+typedef int cycle_count;
+typedef short short_point[2];
+typedef double double_point[2];
+
+enum chip_model { MOS6581, MOS8580 };
+
+enum sampling_method {
+    SAMPLE_FAST, 
+    SAMPLE_INTERPOLATE,
+    SAMPLE_RESAMPLE, 
+    SAMPLE_RESAMPLE_FASTMEM 
+};
+
+} // namespace reSID
+
+extern "C"
+{
+#ifndef RESID_VERSION_CC
+extern const char* resid_version_string;
+#else
+const char* resid_version_string = VERSION;
+#endif
+}
+
+#endif // not RESID_SIDDEFS_H
--- /dev/null
+++ ocp-0.2.2+ds/playsid/sidplayfp-git/libsidplayfp/src/builders/residfp-builder/residfp/siddefs-fp.h
@@ -0,0 +1,62 @@
+//  ---------------------------------------------------------------------------
+//  This file is part of reSID, a MOS6581 SID emulator engine.
+//  Copyright (C) 1999  Dag Lem <resid@nimrod.no>
+//
+//  This program is free software; you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License as published by
+//  the Free Software Foundation; either version 2 of the License, or
+//  (at your option) any later version.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, write to the Free Software
+//  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+//  ---------------------------------------------------------------------------
+
+#ifndef SIDDEFS_FP_H
+#define SIDDEFS_FP_H
+
+// Compilation configuration.
+#define RESID_BRANCH_HINTS 1
+
+// Compiler specifics.
+#define HAVE_BUILTIN_EXPECT 1
+
+#ifndef M_PI
+#  define M_PI    3.14159265358979323846
+#endif
+
+// Branch prediction macros, lifted off the Linux kernel.
+#if RESID_BRANCH_HINTS && HAVE_BUILTIN_EXPECT
+#  define likely(x)      __builtin_expect(!!(x), 1)
+#  define unlikely(x)    __builtin_expect(!!(x), 0)
+#else
+#  define likely(x)      (x)
+#  define unlikely(x)    (x)
+#endif
+
+namespace reSIDfp {
+
+typedef enum { MOS6581=1, MOS8580 } ChipModel;
+
+typedef enum { DECIMATE=1, RESAMPLE } SamplingMethod;
+}
+
+extern "C"
+{
+#ifndef __VERSION_CC__
+extern const char* residfp_version_string;
+#else
+const char* residfp_version_string = "0.2.2";
+#endif
+}
+
+// Inlining on/off.
+#define RESID_INLINING 1
+#define RESID_INLINE inline
+
+#endif // SIDDEFS_FP_H
