summaryrefslogtreecommitdiff
path: root/media-libs/mac
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2014-02-25 11:16:29 +0200
committerGluzskiy Alexandr <sss123next@list.ru>2014-02-25 11:16:29 +0200
commit57c170daf7e82b40b2424a1af8de4d4b2120dd78 (patch)
treeb4c3782297c1622372993654f1898aebfdc1ed4d /media-libs/mac
parent94c6f32bfcf16170704cdec6c3ad7558f6155aae (diff)
deleted: mac/files/gcc4.4.patch
deleted: mac/mac-3.99.4.5-r2.ebuild
Diffstat (limited to 'media-libs/mac')
-rw-r--r--media-libs/mac/files/gcc4.4.patch18
-rw-r--r--media-libs/mac/mac-3.99.4.5-r2.ebuild33
2 files changed, 0 insertions, 51 deletions
diff --git a/media-libs/mac/files/gcc4.4.patch b/media-libs/mac/files/gcc4.4.patch
deleted file mode 100644
index 751e2f1..0000000
--- a/media-libs/mac/files/gcc4.4.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -Naur original//mac-3.99-u4-b5/src/MACLib/APELink.cpp patched//mac-3.99-u4-b5/src/MACLib/APELink.cpp
---- original//mac-3.99-u4-b5/src/MACLib/APELink.cpp 2006-06-01 12:00:57.000000000 +0300
-+++ patched//mac-3.99-u4-b5/src/MACLib/APELink.cpp 2010-06-15 16:14:29.000000000 +0300
-@@ -63,10 +63,10 @@
- if (pData != NULL)
- {
- // parse out the information
-- char * pHeader = strstr(pData, APE_LINK_HEADER);
-- char * pImageFile = strstr(pData, APE_LINK_IMAGE_FILE_TAG);
-- char * pStartBlock = strstr(pData, APE_LINK_START_BLOCK_TAG);
-- char * pFinishBlock = strstr(pData, APE_LINK_FINISH_BLOCK_TAG);
-+ char * pHeader = strstr((char*)pData, (char*)APE_LINK_HEADER);
-+ char * pImageFile = strstr((char*)pData, (char*)APE_LINK_IMAGE_FILE_TAG);
-+ char * pStartBlock = strstr((char*)pData, (char*)APE_LINK_START_BLOCK_TAG);
-+ char * pFinishBlock = strstr((char*)pData, (char*)APE_LINK_FINISH_BLOCK_TAG);
-
- if (pHeader && pImageFile && pStartBlock && pFinishBlock)
- {
diff --git a/media-libs/mac/mac-3.99.4.5-r2.ebuild b/media-libs/mac/mac-3.99.4.5-r2.ebuild
deleted file mode 100644
index a0175d4..0000000
--- a/media-libs/mac/mac-3.99.4.5-r2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit eutils versionator
-
-MY_P="${PN}-$(get_version_component_range 1-2)"
-MY_P="${MY_P}-u$(get_version_component_range 3)"
-MY_P="${MY_P}-b$(get_version_component_range 4)"
-S="${WORKDIR}/${MY_P}"
-
-DESCRIPTION="Unix port of Monkey's Audio codec"
-HOMEPAGE="http://www.monkeysaudio.com/"
-SRC_URI="http://www.genoetigt.de/ape//${MY_P}.tar.gz"
-
-# License status is unclear, see discussion in
-# https://bugs.gentoo.org/94477 and 52882
-LICENSE="monkeysaudio"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="dev-lang/yasm"
-
-src_unpack() {
- unpack ${A}
- epatch ${FILESDIR}/gcc4.4.patch
-}
-
-src_install() {
- make DESTDIR=${D} install || die "make install failed"
- dodoc AUTHORS INSTALL NEWS README TODO
- dohtml ${S}/src/Readme.htm
-}