diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-11-05 17:13:34 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-11-05 17:13:34 +0000 |
commit | ce7487621eb3b85e0387bfff696bbf5b135bebe7 (patch) | |
tree | 0643370b595987054102eb330c86847fa93ea2a4 /media-libs/libmatroska/libmatroska-0.8.0.ebuild | |
parent | Version bump, required for newer vlc beta. (diff) | |
download | gentoo-2-ce7487621eb3b85e0387bfff696bbf5b135bebe7.tar.gz gentoo-2-ce7487621eb3b85e0387bfff696bbf5b135bebe7.tar.bz2 gentoo-2-ce7487621eb3b85e0387bfff696bbf5b135bebe7.zip |
Version bump as per bug #111047.
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'media-libs/libmatroska/libmatroska-0.8.0.ebuild')
-rw-r--r-- | media-libs/libmatroska/libmatroska-0.8.0.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/media-libs/libmatroska/libmatroska-0.8.0.ebuild b/media-libs/libmatroska/libmatroska-0.8.0.ebuild new file mode 100644 index 000000000000..a3cb8379b296 --- /dev/null +++ b/media-libs/libmatroska/libmatroska-0.8.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmatroska/libmatroska-0.8.0.ebuild,v 1.1 2005/11/05 17:13:34 flameeyes Exp $ + +IUSE="" + +inherit flag-o-matic eutils + +DESCRIPTION="Extensible multimedia container format based on EBML" +HOMEPAGE="http://www.matroska.org/" +SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +DEPEND=">=dev-libs/libebml-0.7.3" + +src_unpack() { + unpack ${A} + + cd ${S}/make/linux + sed -i -e 's/CXXFLAGS=/CXXFLAGS+=/g' Makefile +} + +src_compile() { + cd ${S}/make/linux + + #fixes locale for gcc3.4.0 to close bug 52385 + append-flags $(test_flag -finput-charset=ISO8859-15) + + emake PREFIX=/usr \ + LIBEBML_INCLUDE_DIR=/usr/include/ebml \ + LIBEBML_LIB_DIR=/usr/$(get_libdir) || die "make failed" +} + +src_install() { + cd ${S}/make/linux + + einstall libdir="${D}/usr/$(get_libdir)" || die "make install failed" + dodoc ${S}/ChangeLog +} |