diff options
author | John J. Ellis <jje@gentoo.org> | 2003-03-22 14:22:21 +0000 |
---|---|---|
committer | John J. Ellis <jje@gentoo.org> | 2003-03-22 14:22:21 +0000 |
commit | 0f017ce95d936b394b96c7f5402afce6657e9a4d (patch) | |
tree | 2d2d3e7864728306b7eaf1f327b455776da810b1 /media-plugins/streamtuner-local | |
parent | Moved to stable for x86. (diff) | |
download | gentoo-2-0f017ce95d936b394b96c7f5402afce6657e9a4d.tar.gz gentoo-2-0f017ce95d936b394b96c7f5402afce6657e9a4d.tar.bz2 gentoo-2-0f017ce95d936b394b96c7f5402afce6657e9a4d.zip |
New ebuilds for streamtuner plugins. Closes #17937, 17943
Diffstat (limited to 'media-plugins/streamtuner-local')
3 files changed, 37 insertions, 0 deletions
diff --git a/media-plugins/streamtuner-local/ChangeLog b/media-plugins/streamtuner-local/ChangeLog new file mode 100644 index 000000000000..ec78973d091b --- /dev/null +++ b/media-plugins/streamtuner-local/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for media-plugins/streamtuner-local +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/streamtuner-local/ChangeLog,v 1.1 2003/03/22 14:22:21 jje Exp $ + +*streamtuner-local-0.2.1 (22 Mar 2003) + + 22 Mar 2003; jje <jje@gentoo.org> streamtuner-local-0.2.1.ebuild: + Initial revision. + + Submitted by: Ulli Ivens + diff --git a/media-plugins/streamtuner-local/files/digest-streamtuner-local-0.2.1 b/media-plugins/streamtuner-local/files/digest-streamtuner-local-0.2.1 new file mode 100644 index 000000000000..f43d2bb37299 --- /dev/null +++ b/media-plugins/streamtuner-local/files/digest-streamtuner-local-0.2.1 @@ -0,0 +1 @@ +MD5 ada99bb7e64aea59ca06c24124291bee streamtuner-local-0.2.1.tar.gz 182499 diff --git a/media-plugins/streamtuner-local/streamtuner-local-0.2.1.ebuild b/media-plugins/streamtuner-local/streamtuner-local-0.2.1.ebuild new file mode 100644 index 000000000000..72eaddd96c5b --- /dev/null +++ b/media-plugins/streamtuner-local/streamtuner-local-0.2.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: + +DESCRIPTION="A plugin for Streamtuner. It allow to play and browse local mp3 files" +SRC_URI="http://savannah.nongnu.org/download/streamtuner/streamtuner-local.pkg/${PV}/${P}.tar.gz" +HOMEPAGE="http://www.nongnu.org/streamtuner/" +KEYWORDS="~x86" +SLOT="0" +LICENSE="as-is" + +DEPEND=">=net-misc/streamtuner-0.9.0 + >=media-libs/id3lib-3.8.0" + +src_compile() { + econf || die "./configure failed" + emake || die +} + +src_install () { + make DESTDIR=${D} \ + sysconfdir=${D}/etc \ + install || die + dodoc COPYING ChangeLog NEWS README INSTALL +} |