# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit mono eutils DESCRIPTION="Taglib C# binding" HOMEPAGE="http://developer.novell.com/wiki/index.php/TagLib_Sharp" #Actually the tar snapshot doesn't have versioning SRC_URI="http://developer.novell.com/wiki/index.php/Special:File/taglib-sharp/${P}/${P}.tar.gz" LICENSE="LGPL" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc" RDEPEND=">=dev-lang/mono-1.0 " DEPEND="${RDEPEND} doc? ( >=dev-util/monodoc-1.0 ) media-libs/taglib " src_compile() { econf $(use_enable doc docs) || die "configure failed" emake || die "make failed" } src_install() { emake DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS ChangeLog NEWS README }