summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-03-13 11:24:02 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-03-13 11:24:02 +0000
commit89e008d6545836ed519471aa737035e453f1e3a4 (patch)
tree73a8fac81849a55ae84a3070b7dd3c1e9becbbbd /dev-libs/libebml/libebml-0.7.3.ebuild
parentfilter parallel make (bug #176998) (diff)
downloadhistorical-89e008d6545836ed519471aa737035e453f1e3a4.tar.gz
historical-89e008d6545836ed519471aa737035e453f1e3a4.tar.bz2
historical-89e008d6545836ed519471aa737035e453f1e3a4.zip
remove old
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'dev-libs/libebml/libebml-0.7.3.ebuild')
-rw-r--r--dev-libs/libebml/libebml-0.7.3.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/dev-libs/libebml/libebml-0.7.3.ebuild b/dev-libs/libebml/libebml-0.7.3.ebuild
deleted file mode 100644
index 8b975143ef23..000000000000
--- a/dev-libs/libebml/libebml-0.7.3.ebuild
+++ /dev/null
@@ -1,42 +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.3.ebuild,v 1.13 2008/02/04 20:34:14 grobian Exp $
-
-IUSE=""
-
-inherit flag-o-matic eutils
-
-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"
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}
- epatch ${FILESDIR}/libebml-shared2.patch
-}
-
-src_compile() {
- cd ${S}/make/linux
-
- # This fix is necessary due to libebml being used to generate
- # shared libraries, such as the vlc plugin for mozilla. on archs
- # that require shared objects to be compiled with -fPIC, this
- # really shouldn't happen, but libebml doesn't produce an so.
- # Travis Tilley <lv@gentoo.org>
- append-flags -fPIC
-
- sed -i -e 's/CXXFLAGS=/CXXFLAGS+=/g' Makefile
- make PREFIX=/usr || die "make failed"
-}
-
-src_install() {
- cd ${S}/make/linux
- einstall libdir="${D}/usr/$(get_libdir)" || die "make install failed"
- dodoc ${S}/LICENSE.*
-}