diff options
author | Luis Medinas <metalgod@gentoo.org> | 2005-12-23 21:52:27 +0000 |
---|---|---|
committer | Luis Medinas <metalgod@gentoo.org> | 2005-12-23 21:52:27 +0000 |
commit | 405532cbad8a53e2cffed5f2f49b2fd00e750426 (patch) | |
tree | e2be741d796bd4deee1a310a275d6bf89170a5e0 /dev-dotnet/njb-sharp/njb-sharp-0.2.2.ebuild | |
parent | stable on amd64, this time for real (diff) | |
download | gentoo-2-405532cbad8a53e2cffed5f2f49b2fd00e750426.tar.gz gentoo-2-405532cbad8a53e2cffed5f2f49b2fd00e750426.tar.bz2 gentoo-2-405532cbad8a53e2cffed5f2f49b2fd00e750426.zip |
New Package. New dependency for Banshee to support njb.[D[C[
(Portage version: 2.1_pre1)
Diffstat (limited to 'dev-dotnet/njb-sharp/njb-sharp-0.2.2.ebuild')
-rw-r--r-- | dev-dotnet/njb-sharp/njb-sharp-0.2.2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-dotnet/njb-sharp/njb-sharp-0.2.2.ebuild b/dev-dotnet/njb-sharp/njb-sharp-0.2.2.ebuild new file mode 100644 index 000000000000..f1f391c2536a --- /dev/null +++ b/dev-dotnet/njb-sharp/njb-sharp-0.2.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/njb-sharp/njb-sharp-0.2.2.ebuild,v 1.1 2005/12/23 21:52:27 metalgod Exp $ + +inherit mono + +DESCRIPTION="njb-sharp provides C# bindings for libnjb, to provide NJB Digital Audio Player (DAP) support to Mono applications." +HOMEPAGE="http://www.banshee-project.org/Subprojects/Njb-sharp" +SRC_URI="http://banshee-project.org/files/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +RDEPEND=">=dev-lang/mono-1.1.10 + doc? ( dev-util/monodoc ) + >=dev-dotnet/gtk-sharp-2.0" +DEPEND="${RDEPEND} + media-libs/libnjb" + +src_compile() { + econf $(use_enable doc docs) || die "configure failed" + emake -j1 || die "make failed" +} +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog NEWS README +} |