# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libebml/libebml-0.7.1.ebuild,v 1.1 2004/07/26 17:50:21 chriswhite Exp $ inherit flag-o-matic 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="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~hppa ~amd64 ~ia64" IUSE="doc" DEPEND="virtual/libc doc? ( app-doc/doxygen )" RDEPEND="virtual/libc" 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 append-flags -fPIC sed -i -e 's/CXXFLAGS=/CXXFLAGS+=/g' Makefile make PREFIX=/usr || die "make failed" if use doc; then cd ${S} cp ${FILESDIR}/${PV}-doxygen ${S}/Doxyfile doxygen fi } src_install() { cd ${S}/make/linux einstall || die "make install failed" dodoc ${S}/LICENSE.* use doc && dohtml -r ${S}/docs/html/* }