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 | f815cb987a78c86ac5b164c024a8eb4a36eb6fd5 (patch) | |
tree | af51149ba00d6a9cd666de2153efd0e5e63feb44 /dev-dotnet/njb-sharp | |
parent | stable on amd64, this time for real (diff) | |
download | historical-f815cb987a78c86ac5b164c024a8eb4a36eb6fd5.tar.gz historical-f815cb987a78c86ac5b164c024a8eb4a36eb6fd5.tar.bz2 historical-f815cb987a78c86ac5b164c024a8eb4a36eb6fd5.zip |
New Package. New dependency for Banshee to support njb.[D[C[
Package-Manager: portage-2.1_pre1
Diffstat (limited to 'dev-dotnet/njb-sharp')
-rw-r--r-- | dev-dotnet/njb-sharp/ChangeLog | 9 | ||||
-rw-r--r-- | dev-dotnet/njb-sharp/Manifest | 14 | ||||
-rw-r--r-- | dev-dotnet/njb-sharp/files/digest-njb-sharp-0.2.2 | 1 | ||||
-rw-r--r-- | dev-dotnet/njb-sharp/metadata.xml | 12 | ||||
-rw-r--r-- | dev-dotnet/njb-sharp/njb-sharp-0.2.2.ebuild | 29 |
5 files changed, 65 insertions, 0 deletions
diff --git a/dev-dotnet/njb-sharp/ChangeLog b/dev-dotnet/njb-sharp/ChangeLog new file mode 100644 index 000000000000..46e0dd29f020 --- /dev/null +++ b/dev-dotnet/njb-sharp/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-dotnet/njb-sharp +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/njb-sharp/ChangeLog,v 1.1 2005/12/23 21:52:27 metalgod Exp $ + +*njb-sharp-0.2.2 (23 Dec 2005) + + 23 Dec 2005; Luis Medinas <metalgod@gentoo.org> +njb-sharp-0.2.2.ebuild: + New Package. This is a new dependency for Banshee to be able to support njb. + diff --git a/dev-dotnet/njb-sharp/Manifest b/dev-dotnet/njb-sharp/Manifest new file mode 100644 index 000000000000..4789b92fa13f --- /dev/null +++ b/dev-dotnet/njb-sharp/Manifest @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 11c7ac6b59a67ac0932d656f391641d4 ChangeLog 402 +MD5 3abbda3f5241e0c6fffd9456041a1e9a files/digest-njb-sharp-0.2.2 67 +MD5 46261388ca1ae057f1d8590a23834c49 metadata.xml 294 +MD5 1bda9a95be5f0bbbbd7a7a856af14de4 njb-sharp-0.2.2.ebuild 892 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.2 (GNU/Linux) + +iD8DBQFDrHHYwUpWvClEHQoRAju0AJ46GtJQ8m12LHmNizIcBBQQ9Lai1wCffSEp +agOOSS+H0mH4GjUrU/XdKX8= +=+0ku +-----END PGP SIGNATURE----- diff --git a/dev-dotnet/njb-sharp/files/digest-njb-sharp-0.2.2 b/dev-dotnet/njb-sharp/files/digest-njb-sharp-0.2.2 new file mode 100644 index 000000000000..bb90037038c2 --- /dev/null +++ b/dev-dotnet/njb-sharp/files/digest-njb-sharp-0.2.2 @@ -0,0 +1 @@ +MD5 81c36f14bfb36302598735ec6c5b46c6 njb-sharp-0.2.2.tar.gz 309885 diff --git a/dev-dotnet/njb-sharp/metadata.xml b/dev-dotnet/njb-sharp/metadata.xml new file mode 100644 index 000000000000..f7940f41f4e7 --- /dev/null +++ b/dev-dotnet/njb-sharp/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sound</herd> +<maintainer> +<email>metalgod@gentoo.org</email> +<name>Luis Medinas</name> +</maintainer> +<longdescription lang="en"> +</longdescription> +</pkgmetadata> + 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 +} |