+++ /dev/null
-diff -ur mode2cdmaker-1.5.1.orig/Makefile.linux mode2cdmaker-1.5.1/Makefile.linux
---- mode2cdmaker-1.5.1.orig/Makefile.linux 2003-02-01 16:27:18.000000000 +0200
-+++ mode2cdmaker-1.5.1/Makefile.linux 2008-06-15 19:24:14.000000000 +0300
-@@ -4,8 +4,8 @@
- output=mode2cdmaker
-
- all:
-- gcc -c $(srcs)
-- gcc -o $(output) $(objs)
-+ $(CC) ${CFLAGS} -DMAX_PATH=512 -c $(srcs)
-+ $(CC) ${LDFLAGS} -o $(output) $(objs)
-
- clean:
- -rm -f $(objs) $(output)
-diff -ur mode2cdmaker-1.5.1.orig/mkvcdfs.c mode2cdmaker-1.5.1/mkvcdfs.c
---- mode2cdmaker-1.5.1.orig/mkvcdfs.c 2003-03-14 19:57:38.000000000 +0200
-+++ mode2cdmaker-1.5.1/mkvcdfs.c 2008-06-15 19:23:25.000000000 +0300
-@@ -120,6 +120,7 @@
- #endif\r
- #endif\r
- #include <stdio.h>\r
-+#include <stdlib.h>\r
- #include <fcntl.h>\r
- #include <string.h>\r
- #include <ctype.h>\r
-@@ -629,7 +630,7 @@
- next_command[1]=(char*)malloc(256);\r
- while (fgets(next_command[1],256,pf))\r
- {\r
-- next_command[1][lstrlen(next_command[1])-1]=0;\r
-+ next_command[1][strlen(next_command[1])-1]=0;\r
- parse_params(2,next_command,idepth+1);\r
- }\r
- fclose(pf);\r
-diff -ur mode2cdmaker-1.5.1.orig/vcdisofs.c mode2cdmaker-1.5.1/vcdisofs.c
---- mode2cdmaker-1.5.1.orig/vcdisofs.c 2003-02-02 00:02:44.000000000 +0200
-+++ mode2cdmaker-1.5.1/vcdisofs.c 2008-06-15 19:19:59.000000000 +0300
-@@ -80,6 +80,8 @@
- #include <windows.h>\r
- #endif\r
- #include <stdio.h>\r
-+#include <stdlib.h>\r
-+#include <string.h>\r
- #include <time.h>\r
- #include "defaults.h"\r
- \r
+++ /dev/null
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Utility to create mode-2 CDs, for example XCDs"
-HOMEPAGE="https://www.gentoo.org/"
-SRC_URI="mirror://gentoo/${P}-src.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND="app-arch/unzip"
-RDEPEND=""
-
-S=${WORKDIR}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-gentoo.patch
-}
-
-src_compile() {
- tc-export CC
- emake -f Makefile.linux || die
-}
-
-src_install() {
- dobin mode2cdmaker || die
- dodoc {bugs,compatibility,readme}.txt
-}