# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/libmpcdec/libmpcdec-1.2.4.ebuild,v 1.1 2006/12/26 17:37:00 flameeyes Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" inherit autotools DESCRIPTION="Musepack decoder library" HOMEPAGE="http://www.musepack.net" SRC_URI="http://files2.musepack.net/source/${P}.tar.bz2" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" IUSE="doc" src_unpack() { unpack ${A} cd "${S}" eautoreconf } src_compile() { econf \ --enable-static --enable-shared \ || die "econf failed" emake || die "emake failed" } src_install() { emake -j1 DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS ChangeLog README use doc && dohtml docs/html/* }