summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2011-11-27 02:48:27 +0000
committerTim Harder <radhermit@gentoo.org>2011-11-27 02:48:27 +0000
commitcfa389afa975e64a3c76fe579d628716abef8af2 (patch)
tree8686af51cf54b6affb092f0bdf3547e88570a523 /dev-libs/libebml
parentRemove old. (diff)
downloadgentoo-2-cfa389afa975e64a3c76fe579d628716abef8af2.tar.gz
gentoo-2-cfa389afa975e64a3c76fe579d628716abef8af2.tar.bz2
gentoo-2-cfa389afa975e64a3c76fe579d628716abef8af2.zip
Remove old.
(Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libebml')
-rw-r--r--dev-libs/libebml/ChangeLog9
-rw-r--r--dev-libs/libebml/files/libebml-0.7.8-makefile-fixup.patch116
-rw-r--r--dev-libs/libebml/files/libebml-0.8.0-makefile-fixup.patch102
-rw-r--r--dev-libs/libebml/files/libebml-1.0.0-makefile-fixup.patch107
-rw-r--r--dev-libs/libebml/libebml-0.7.8-r1.ebuild25
-rw-r--r--dev-libs/libebml/libebml-0.7.8-r2.ebuild42
-rw-r--r--dev-libs/libebml/libebml-0.8.0.ebuild42
-rw-r--r--dev-libs/libebml/libebml-1.0.0.ebuild42
-rw-r--r--dev-libs/libebml/libebml-1.2.0.ebuild45
9 files changed, 8 insertions, 522 deletions
diff --git a/dev-libs/libebml/ChangeLog b/dev-libs/libebml/ChangeLog
index 004a5682f190..02041f7ab33c 100644
--- a/dev-libs/libebml/ChangeLog
+++ b/dev-libs/libebml/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for dev-libs/libebml
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libebml/ChangeLog,v 1.112 2011/11/20 10:21:11 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libebml/ChangeLog,v 1.113 2011/11/27 02:48:27 radhermit Exp $
+
+ 27 Nov 2011; Tim Harder <radhermit@gentoo.org> -libebml-0.7.8-r1.ebuild,
+ -libebml-0.7.8-r2.ebuild, -files/libebml-0.7.8-makefile-fixup.patch,
+ -libebml-0.8.0.ebuild, -files/libebml-0.8.0-makefile-fixup.patch,
+ -libebml-1.0.0.ebuild, -files/libebml-1.0.0-makefile-fixup.patch,
+ -libebml-1.2.0.ebuild:
+ Remove old.
20 Nov 2011; Kacper Kowalik <xarthisius@gentoo.org> libebml-1.2.1.ebuild:
ppc/ppc64 stable wrt #376395
diff --git a/dev-libs/libebml/files/libebml-0.7.8-makefile-fixup.patch b/dev-libs/libebml/files/libebml-0.7.8-makefile-fixup.patch
deleted file mode 100644
index dc25bee65e94..000000000000
--- a/dev-libs/libebml/files/libebml-0.7.8-makefile-fixup.patch
+++ /dev/null
@@ -1,116 +0,0 @@
-This patch fixes three issues:
-- http://bugs.gentoo.org/show_bug.cgi?id=292171
- respect DESTDIR, patch by Darik Horn
-- don't inject random warning flags
-- http://bugs.gentoo.org/show_bug.cgi?id=262973
- respect LDFLAGS and LIBS
-- build a dynamic lib on Darwin also (not just only a static lib), patch
- by Fabian Groffen
-
-
---- make/linux/Makefile
-+++ make/linux/Makefile
-@@ -53,6 +53,8 @@
- LIBRARY=libebml.a
- LIBRARY_SO=libebml.so
- LIBRARY_SO_VER=libebml.so.0
-+LIBRARY_DYLIB=libebml.dylib
-+LIBRARY_DYLIB_VER=libebml.0.dylib
-
- # source-files
- sources:=$(wildcard ${SRC_DIR}*$(EXTENSION))
-@@ -65,11 +67,11 @@
- objects_so:=$(patsubst %$(EXTENSION),%.lo,$(sources))
-
- WARNINGFLAGS=-Wall -Wno-unknown-pragmas -ansi -fno-gnu-keywords -Wshadow
--COMPILEFLAGS=$(WARNINGFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(DEBUGFLAGS) $(INCLUDE)
-+COMPILEFLAGS=$(CXXFLAGS) $(CPPFLAGS) $(DEBUGFLAGS) $(INCLUDE)
- DEPENDFLAGS = $(CXXFLAGS) $(INCLUDE)
-
- ifeq (Darwin,$(shell uname -s))
--all: staticlib
-+all: staticlib macholib
- else
- all: staticlib sharedlib
- endif
-@@ -78,8 +80,10 @@
-
- sharedlib: $(LIBRARY_SO)
-
-+macholib: $(LIBRARY_DYLIB)
-+
- lib:
-- @echo "Use the 'staticlib', 'sharedlib' or 'all' targets."
-+ @echo "Use the 'staticlib', 'sharedlib', 'macholib' or 'all' targets."
- @false
-
- # Build rules
-@@ -94,15 +98,22 @@
- $(RANLIB) $@
-
- $(LIBRARY_SO): $(objects_so)
-- $(CXX) -shared -Wl,-soname,$(LIBRARY_SO_VER) -o $(LIBRARY_SO_VER) $(objects_so)
-+ $(CXX) $(LDFLAGS) -shared -Wl,-soname,$(LIBRARY_SO_VER) -o $(LIBRARY_SO_VER) $(objects_so) $(LIBS)
- rm -f $(LIBRARY_SO)
- ln -s $(LIBRARY_SO_VER) $(LIBRARY_SO)
-
-+$(LIBRARY_DYLIB): $(objects_so)
-+ $(CXX) $(LDFLAGS) -dynamiclib -install_name $(libdir)/$(LIBRARY_DYLIB_VER) -o $(LIBRARY_DYLIB_VER) $(objects_so) $(LIBS)
-+ rm -f $(LIBRARY_DYLIB)
-+ ln -s $(LIBRARY_DYLIB_VER) $(LIBRARY_DYLIB)
-+
- clean:
- rm -f $(objects) $(objects_so)
- rm -f $(LIBRARY)
- rm -f $(LIBRARY_SO)
- rm -f $(LIBRARY_SO_VER)
-+ rm -f $(LIBRARY_DYLIB)
-+ rm -f $(LIBRARY_DYLIB_VER)
- rm -f CORE
-
- distclean dist-clean: clean
-@@ -119,29 +130,34 @@
- done
-
- ifeq (Darwin,$(shell uname -s))
--install: install_staticlib install_headers
-+install: install_staticlib install_macholib install_headers
- else
- install: install_staticlib install_sharedlib install_headers
- endif
-
- install_headers:
-- $(INSTALL) $(INSTALL_DIR_OPTS) -d $(includedir)
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(includedir)
- for i in $(INCLUDE_DIR)/*.h; do \
-- $(INSTALL) $(INSTALL_OPTS) $$i $(includedir) ; \
-+ $(INSTALL) $(INSTALL_OPTS) $$i $(DESTDIR)$(includedir) ; \
- done
-- $(INSTALL) $(INSTALL_DIR_OPTS) -d $(includedir)/c
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(includedir)/c
- for i in $(INCLUDE_DIR)/c/*.h; do \
-- $(INSTALL) $(INSTALL_OPTS) $$i $(includedir)/c ; \
-+ $(INSTALL) $(INSTALL_OPTS) $$i $(DESTDIR)$(includedir)/c ; \
- done
-
- install_staticlib: $(LIBRARY)
-- $(INSTALL) $(INSTALL_DIR_OPTS) -d $(libdir)
-- $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY) $(libdir)
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(libdir)
-+ $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY) $(DESTDIR)$(libdir)
-
- install_sharedlib: $(LIBRARY_SO)
-- $(INSTALL) $(INSTALL_DIR_OPTS) -d $(libdir)
-- $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY_SO_VER) $(libdir)
-- ln -fs $(LIBRARY_SO_VER) $(libdir)/$(LIBRARY_SO)
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(libdir)
-+ $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY_SO_VER) $(DESTDIR)$(libdir)
-+ ln -fs $(LIBRARY_SO_VER) $(DESTDIR)$(libdir)/$(LIBRARY_SO)
-+
-+install_macholib: $(LIBRARY_DYLIB)
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(libdir)
-+ $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY_DYLIB_VER) $(DESTDIR)$(libdir)
-+ ln -fs $(LIBRARY_DYLIB_VER) $(DESTDIR)$(libdir)/$(LIBRARY_DYLIB)
-
-
- ifneq ($(wildcard .depend),)
diff --git a/dev-libs/libebml/files/libebml-0.8.0-makefile-fixup.patch b/dev-libs/libebml/files/libebml-0.8.0-makefile-fixup.patch
deleted file mode 100644
index 4c3efdb4ae32..000000000000
--- a/dev-libs/libebml/files/libebml-0.8.0-makefile-fixup.patch
+++ /dev/null
@@ -1,102 +0,0 @@
---- make/linux/Makefile.orig 2010-06-05 09:38:38.000000000 -0600
-+++ make/linux/Makefile 2010-06-05 10:01:26.000000000 -0600
-@@ -50,6 +50,8 @@
- LIBRARY=libebml.a
- LIBRARY_SO=libebml.so
- LIBRARY_SO_VER=libebml.so.0
-+LIBRARY_DYLIB=libebml.dylib
-+LIBRARY_DYLIB_VER=libebml.0.dylib
-
- # source-files
- sources:=$(wildcard ${SRC_DIR}*$(EXTENSION))
-@@ -66,7 +68,7 @@
- DEPENDFLAGS = $(CXXFLAGS) $(INCLUDE)
-
- ifeq (Darwin,$(shell uname -s))
--all: staticlib
-+all: staticlib macholib
- else
- all: staticlib sharedlib
- endif
-@@ -75,8 +77,10 @@
-
- sharedlib: $(LIBRARY_SO)
-
-+macholib: $(LIBRARY_DYLIB)
-+
- lib:
-- @echo "Use the 'staticlib', 'sharedlib' or 'all' targets."
-+ @echo "Use the 'staticlib', 'sharedlib', 'macholib' or 'all' targets."
- @false
-
- # Build rules
-@@ -91,15 +95,22 @@
- $(RANLIB) $@
-
- $(LIBRARY_SO): $(objects_so)
-- $(CXX) -shared -Wl,-soname,$(LIBRARY_SO_VER) -o $(LIBRARY_SO_VER) $(objects_so)
-+ $(CXX) $(LDFLAGS) -shared -Wl,-soname,$(LIBRARY_SO_VER) -o $(LIBRARY_SO_VER) $(objects_so) $(LIBS)
- rm -f $(LIBRARY_SO)
- ln -s $(LIBRARY_SO_VER) $(LIBRARY_SO)
-
-+$(LIBRARY_DYLIB): $(objects_so)
-+ $(CXX) $(LDFLAGS) -dynamiclib -install_name $(libdir)/$(LIBRARY_DYLIB_VER) -o $(LIBRARY_DYLIB_VER) $(objects_so) $(LIBS)
-+ rm -f $(LIBRARY_DYLIB)
-+ ln -s $(LIBRARY_DYLIB_VER) $(LIBRARY_DYLIB)
-+
- clean:
- rm -f $(objects) $(objects_so)
- rm -f $(LIBRARY)
- rm -f $(LIBRARY_SO)
- rm -f $(LIBRARY_SO_VER)
-+ rm -f $(LIBRARY_DYLIB)
-+ rm -f $(LIBRARY_DYLIB_VER)
- rm -f CORE
-
- distclean dist-clean: clean
-@@ -116,30 +127,34 @@
- done
-
- ifeq (Darwin,$(shell uname -s))
--install: install_staticlib install_headers
-+install: install_staticlib install_macholib install_headers
- else
- install: install_staticlib install_sharedlib install_headers
- endif
-
- install_headers:
-- $(INSTALL) $(INSTALL_DIR_OPTS) -d $(includedir)
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(includedir)
- for i in $(INCLUDE_DIR)/*.h; do \
-- $(INSTALL) $(INSTALL_OPTS) $$i $(includedir) ; \
-+ $(INSTALL) $(INSTALL_OPTS) $$i $(DESTDIR)$(includedir) ; \
- done
-- $(INSTALL) $(INSTALL_DIR_OPTS) -d $(includedir)/c
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(includedir)/c
- for i in $(INCLUDE_DIR)/c/*.h; do \
-- $(INSTALL) $(INSTALL_OPTS) $$i $(includedir)/c ; \
-+ $(INSTALL) $(INSTALL_OPTS) $$i $(DESTDIR)$(includedir)/c ; \
- done
-
- install_staticlib: $(LIBRARY)
-- $(INSTALL) $(INSTALL_DIR_OPTS) -d $(libdir)
-- $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY) $(libdir)
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(libdir)
-+ $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY) $(DESTDIR)$(libdir)
-
- install_sharedlib: $(LIBRARY_SO)
-- $(INSTALL) $(INSTALL_DIR_OPTS) -d $(libdir)
-- $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY_SO_VER) $(libdir)
-- ln -fs $(LIBRARY_SO_VER) $(libdir)/$(LIBRARY_SO)
--
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(libdir)
-+ $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY_SO_VER) $(DESTDIR)$(libdir)
-+ ln -fs $(LIBRARY_SO_VER) $(DESTDIR)$(libdir)/$(LIBRARY_SO)
-+
-+install_macholib: $(LIBRARY_DYLIB)
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(libdir)
-+ $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY_DYLIB_VER) $(DESTDIR)$(libdir)
-+ ln -fs $(LIBRARY_DYLIB_VER) $(DESTDIR)$(libdir)/$(LIBRARY_DYLIB)
-
- ifneq ($(wildcard .depend),)
- include .depend
diff --git a/dev-libs/libebml/files/libebml-1.0.0-makefile-fixup.patch b/dev-libs/libebml/files/libebml-1.0.0-makefile-fixup.patch
deleted file mode 100644
index 18508e6b3278..000000000000
--- a/dev-libs/libebml/files/libebml-1.0.0-makefile-fixup.patch
+++ /dev/null
@@ -1,107 +0,0 @@
---- make/linux/Makefile.orig 2010-06-05 09:00:43.000000000 -0600
-+++ make/linux/Makefile 2010-06-05 09:34:40.000000000 -0600
-@@ -50,6 +50,8 @@
- LIBRARY=libebml.a
- LIBRARY_SO=libebml.so
- LIBRARY_SO_VER=libebml.so.2
-+LIBRARY_DYLIB=libebml.dylib
-+LIBRARY_DYLIB_VER=libebml.2.dylib
-
- # source-files
- sources:=$(wildcard ${SRC_DIR}*$(EXTENSION))
-@@ -62,11 +64,11 @@
- objects_so:=$(patsubst %$(EXTENSION),%.lo,$(sources))
-
- WARNINGFLAGS=-Wall -Wno-unknown-pragmas -ansi -fno-gnu-keywords -Wshadow
--COMPILEFLAGS=$(WARNINGFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(DEBUGFLAGS) $(INCLUDE)
-+COMPILEFLAGS=$(CXXFLAGS) $(CPPFLAGS) $(DEBUGFLAGS) $(INCLUDE)
- DEPENDFLAGS = $(CXXFLAGS) $(INCLUDE)
-
- ifeq (Darwin,$(shell uname -s))
--all: staticlib
-+all: staticlib macholib
- else
- all: staticlib sharedlib
- endif
-@@ -75,8 +77,10 @@
-
- sharedlib: $(LIBRARY_SO)
-
-+macholib: $(LIBRARY_DYLIB)
-+
- lib:
-- @echo "Use the 'staticlib', 'sharedlib' or 'all' targets."
-+ @echo "Use the 'staticlib', 'sharedlib', 'macholib' or 'all' targets."
- @false
-
- # Build rules
-@@ -91,15 +95,22 @@
- $(RANLIB) $@
-
- $(LIBRARY_SO): $(objects_so)
-- $(CXX) -shared -Wl,-soname,$(LIBRARY_SO_VER) -o $(LIBRARY_SO_VER) $(objects_so)
-+ $(CXX) $(LDFLAGS) -shared -Wl,-soname,$(LIBRARY_SO_VER) -o $(LIBRARY_SO_VER) $(objects_so) $(LIBS)
- rm -f $(LIBRARY_SO)
- ln -s $(LIBRARY_SO_VER) $(LIBRARY_SO)
-
-+$(LIBRARY_DYLIB): $(objects_so)
-+ $(CXX) $(LDFLAGS) -dynamiclib -install_name $(libdir)/$(LIBRARY_DYLIB_VER) -o $(LIBRARY_DYLIB_VER) $(objects_so) $(LIBS)
-+ rm -f $(LIBRARY_DYLIB)
-+ ln -s $(LIBRARY_DYLIB_VER) $(LIBRARY_DYLIB)
-+
- clean:
- rm -f $(objects) $(objects_so)
- rm -f $(LIBRARY)
- rm -f $(LIBRARY_SO)
- rm -f $(LIBRARY_SO_VER)
-+ rm -f $(LIBRARY_DYLIB)
-+ rm -f $(LIBRARY_DYLIB_VER)
- rm -f CORE
-
- distclean dist-clean: clean
-@@ -116,30 +127,34 @@
- done
-
- ifeq (Darwin,$(shell uname -s))
--install: install_staticlib install_headers
-+install: install_staticlib install_macholib install_headers
- else
- install: install_staticlib install_sharedlib install_headers
- endif
-
- install_headers:
-- $(INSTALL) $(INSTALL_DIR_OPTS) -d $(includedir)
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(includedir)
- for i in $(INCLUDE_DIR)/*.h; do \
-- $(INSTALL) $(INSTALL_OPTS) $$i $(includedir) ; \
-+ $(INSTALL) $(INSTALL_OPTS) $$i $(DESTDIR)$(includedir) ; \
- done
-- $(INSTALL) $(INSTALL_DIR_OPTS) -d $(includedir)/c
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(includedir)/c
- for i in $(INCLUDE_DIR)/c/*.h; do \
-- $(INSTALL) $(INSTALL_OPTS) $$i $(includedir)/c ; \
-+ $(INSTALL) $(INSTALL_OPTS) $$i $(DESTDIR)$(includedir)/c ; \
- done
-
- install_staticlib: $(LIBRARY)
-- $(INSTALL) $(INSTALL_DIR_OPTS) -d $(libdir)
-- $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY) $(libdir)
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(libdir)
-+ $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY) $(DESTDIR)$(libdir)
-
- install_sharedlib: $(LIBRARY_SO)
-- $(INSTALL) $(INSTALL_DIR_OPTS) -d $(libdir)
-- $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY_SO_VER) $(libdir)
-- ln -fs $(LIBRARY_SO_VER) $(libdir)/$(LIBRARY_SO)
--
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(libdir)
-+ $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY_SO_VER) $(DESTDIR)$(libdir)
-+ ln -fs $(LIBRARY_SO_VER) $(DESTDIR)$(libdir)/$(LIBRARY_SO)
-+
-+install_macholib: $(LIBRARY_DYLIB)
-+ $(INSTALL) $(INSTALL_DIR_OPTS) -d $(DESTDIR)$(libdir)
-+ $(INSTALL) $(INSTALL_OPTS_LIB) $(LIBRARY_DYLIB_VER) $(DESTDIR)$(libdir)
-+ ln -fs $(LIBRARY_DYLIB_VER) $(DESTDIR)$(libdir)/$(LIBRARY_DYLIB)
-
- ifneq ($(wildcard .depend),)
- include .depend
diff --git a/dev-libs/libebml/libebml-0.7.8-r1.ebuild b/dev-libs/libebml/libebml-0.7.8-r1.ebuild
deleted file mode 100644
index 347d07ac8734..000000000000
--- a/dev-libs/libebml/libebml-0.7.8-r1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libebml/libebml-0.7.8-r1.ebuild,v 1.7 2008/09/27 16:45:45 armin76 Exp $
-
-inherit multilib toolchain-funcs
-
-DESCRIPTION="Extensible binary format library (kinda like XML)"
-HOMEPAGE="http://www.matroska.org/"
-SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
-IUSE=""
-
-S="${S}/make/linux"
-
-src_compile() {
- emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die "emake failed"
-}
-
-src_install() {
- einstall libdir="${D}/usr/$(get_libdir)" || die "make install failed"
- dodoc "${WORKDIR}/${P}/ChangeLog"
-}
diff --git a/dev-libs/libebml/libebml-0.7.8-r2.ebuild b/dev-libs/libebml/libebml-0.7.8-r2.ebuild
deleted file mode 100644
index e2f211d299e2..000000000000
--- a/dev-libs/libebml/libebml-0.7.8-r2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libebml/libebml-0.7.8-r2.ebuild,v 1.1 2009/11/13 18:55:08 grobian Exp $
-
-EAPI=2
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="Extensible binary format library (kinda like XML)"
-HOMEPAGE="http://www.matroska.org/"
-SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
-
-S="${S}/make/linux"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-makefile-fixup.patch
-}
-
-src_compile() {
- # keep the prefix in here to make sure the binary is built with a correct
- # install_name on Darwin
- emake \
- prefix="${EPREFIX}/usr" \
- CC="$(tc-getCC)" \
- CXX="$(tc-getCXX)" \
- || die "emake failed"
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- prefix="${EPREFIX}/usr" \
- libdir="${EPREFIX}/usr/$(get_libdir)" \
- install || die "emake install failed"
-
- dodoc "${WORKDIR}/${P}/ChangeLog"
-}
diff --git a/dev-libs/libebml/libebml-0.8.0.ebuild b/dev-libs/libebml/libebml-0.8.0.ebuild
deleted file mode 100644
index bb872e0501d2..000000000000
--- a/dev-libs/libebml/libebml-0.8.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libebml/libebml-0.8.0.ebuild,v 1.4 2010/10/15 21:38:00 ranger Exp $
-
-EAPI=2
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="Extensible binary format library (kinda like XML)"
-HOMEPAGE="http://www.matroska.org/"
-SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
-
-S="${S}/make/linux"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-makefile-fixup.patch
-}
-
-src_compile() {
- # keep the prefix in here to make sure the binary is built with a correct
- # install_name on Darwin
- emake \
- prefix="${EPREFIX}/usr" \
- CC="$(tc-getCC)" \
- CXX="$(tc-getCXX)" \
- || die "emake failed"
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- prefix="${EPREFIX}/usr" \
- libdir="${EPREFIX}/usr/$(get_libdir)" \
- install || die "emake install failed"
-
- dodoc "${WORKDIR}/${P}/ChangeLog"
-}
diff --git a/dev-libs/libebml/libebml-1.0.0.ebuild b/dev-libs/libebml/libebml-1.0.0.ebuild
deleted file mode 100644
index 51a02e407b88..000000000000
--- a/dev-libs/libebml/libebml-1.0.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libebml/libebml-1.0.0.ebuild,v 1.4 2011/05/28 11:46:47 ranger Exp $
-
-EAPI=2
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="Extensible binary format library (kinda like XML)"
-HOMEPAGE="http://www.matroska.org/"
-SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
-
-S="${S}/make/linux"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-makefile-fixup.patch
-}
-
-src_compile() {
- # keep the prefix in here to make sure the binary is built with a correct
- # install_name on Darwin
- emake \
- prefix="${EPREFIX}/usr" \
- CC="$(tc-getCC)" \
- CXX="$(tc-getCXX)" \
- || die "emake failed"
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- prefix="${EPREFIX}/usr" \
- libdir="${EPREFIX}/usr/$(get_libdir)" \
- install || die "emake install failed"
-
- dodoc "${WORKDIR}/${P}/ChangeLog"
-}
diff --git a/dev-libs/libebml/libebml-1.2.0.ebuild b/dev-libs/libebml/libebml-1.2.0.ebuild
deleted file mode 100644
index 17ecdc1c1f02..000000000000
--- a/dev-libs/libebml/libebml-1.2.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libebml/libebml-1.2.0.ebuild,v 1.2 2011/02/02 03:40:30 radhermit Exp $
-
-EAPI=2
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="Extensible binary format library (kinda like XML)"
-HOMEPAGE="http://www.matroska.org/"
-SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-S="${WORKDIR}/${P}/make/linux"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-makefile-fixup.patch
-}
-
-src_compile() {
- # keep the prefix in here to make sure the binary is built with a correct
- # install_name on Darwin
- emake \
- prefix="${EPREFIX}/usr" \
- CC="$(tc-getCC)" \
- CXX="$(tc-getCXX)" \
- || die "emake failed"
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- prefix="${EPREFIX}/usr" \
- libdir="${EPREFIX}/usr/$(get_libdir)" \
- install || die "emake install failed"
-
- dodoc "${WORKDIR}/${P}/ChangeLog"
-}