summaryrefslogtreecommitdiff
path: root/app-cdr/mode2cdmaker
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-cdr/mode2cdmaker
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-cdr/mode2cdmaker')
-rw-r--r--app-cdr/mode2cdmaker/Manifest4
-rw-r--r--app-cdr/mode2cdmaker/files/mode2cdmaker-1.5.1-gentoo.patch46
-rw-r--r--app-cdr/mode2cdmaker/metadata.xml5
-rw-r--r--app-cdr/mode2cdmaker/mode2cdmaker-1.5.1.ebuild36
4 files changed, 0 insertions, 91 deletions
diff --git a/app-cdr/mode2cdmaker/Manifest b/app-cdr/mode2cdmaker/Manifest
deleted file mode 100644
index 85c7da2fc709..000000000000
--- a/app-cdr/mode2cdmaker/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX mode2cdmaker-1.5.1-gentoo.patch 1479 BLAKE2B 513be90ffca1422de78b069177e97d57e8bb239026f8c3576b54fe9861ee28cf22e24991773c2aa72971dee507157e19c8f7eeb89bacb1d4f656d984b6734ba8 SHA512 c88dbebb84183c8a47e185de0890bcccde5d5dd99a7942166d0d388a96c14269a38549906dfc0e982fd3fc31c47e75898f811c01b76de28c2625840e230c1f3c
-DIST mode2cdmaker-1.5.1-src.zip 57049 BLAKE2B f314dcd862732598a6c0035dc50fcbbebb14da3c8941d9d34ebc8c012add030040b9a8465c2b5bf526da792738119c570eb98ab840d9b376c7fd7f602f6c2388 SHA512 854aea23ae83521f689c5e4d91e6b3aba3e0977a987eb5a88fd340bb2b3f795ba76bf227a84727f3792b4f2453b4a4710d5e3782ccbfda79569506c23e77302f
-EBUILD mode2cdmaker-1.5.1.ebuild 627 BLAKE2B d2419493c98514431e648ba89b02541b36c47e331374c54e05f9d4ecc2ca5def4a91d73e0d784ed8581f08fcb015b8740d15d55af4574c485381ed0c46098d59 SHA512 e9342e30984dd016e6a68062c7cf44411a57df0124276a2eff3cf71dfa5838e468e1a7becee2eee2ae96f9d44e0d2416afd216b06bb7bc94755fccd2b681706f
-MISC metadata.xml 166 BLAKE2B c254f1fb642881aba57637be14fb0a89b10384f91a128feaec3a8c870d76efc2cbacb92caccc0dee2dd19a5ac5eaf8643080dafa05c4e2ac96a68568927e5afd SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84
diff --git a/app-cdr/mode2cdmaker/files/mode2cdmaker-1.5.1-gentoo.patch b/app-cdr/mode2cdmaker/files/mode2cdmaker-1.5.1-gentoo.patch
deleted file mode 100644
index 502819c11df3..000000000000
--- a/app-cdr/mode2cdmaker/files/mode2cdmaker-1.5.1-gentoo.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-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
- #endif
- #include <stdio.h>
-+#include <stdlib.h>
- #include <fcntl.h>
- #include <string.h>
- #include <ctype.h>
-@@ -629,7 +630,7 @@
- next_command[1]=(char*)malloc(256);
- while (fgets(next_command[1],256,pf))
- {
-- next_command[1][lstrlen(next_command[1])-1]=0;
-+ next_command[1][strlen(next_command[1])-1]=0;
- parse_params(2,next_command,idepth+1);
- }
- fclose(pf);
-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>
- #endif
- #include <stdio.h>
-+#include <stdlib.h>
-+#include <string.h>
- #include <time.h>
- #include "defaults.h"
-
diff --git a/app-cdr/mode2cdmaker/metadata.xml b/app-cdr/mode2cdmaker/metadata.xml
deleted file mode 100644
index 6f49eba8f496..000000000000
--- a/app-cdr/mode2cdmaker/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/app-cdr/mode2cdmaker/mode2cdmaker-1.5.1.ebuild b/app-cdr/mode2cdmaker/mode2cdmaker-1.5.1.ebuild
deleted file mode 100644
index d3f0bde8ee9c..000000000000
--- a/app-cdr/mode2cdmaker/mode2cdmaker-1.5.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# 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
-}