diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-02-02 10:05:05 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-02-02 10:05:05 +0000 |
commit | 6583fb0ad7249c3881d5d3aa6893cb6d5c7f561d (patch) | |
tree | ecb71d9b3e19d1ac4d7e96d3f7e13b5542e9e020 /media-plugins/xmms-finespectrum | |
parent | This is a visualization plugin similar to the simple spectrum analyzer that c... (diff) | |
download | gentoo-2-6583fb0ad7249c3881d5d3aa6893cb6d5c7f561d.tar.gz gentoo-2-6583fb0ad7249c3881d5d3aa6893cb6d5c7f561d.tar.bz2 gentoo-2-6583fb0ad7249c3881d5d3aa6893cb6d5c7f561d.zip |
This is a visualization plugin similar to the simple spectrum analyzer that comes with xmms, but this one uses fine lines instead of bars. Ebuild submitted by Stefan Briesenick <sbriesen@gmx.de> in bug #39963.
Diffstat (limited to 'media-plugins/xmms-finespectrum')
5 files changed, 41 insertions, 2 deletions
diff --git a/media-plugins/xmms-finespectrum/ChangeLog b/media-plugins/xmms-finespectrum/ChangeLog new file mode 100644 index 000000000000..f562ed72d8e4 --- /dev/null +++ b/media-plugins/xmms-finespectrum/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for media-plugins/xmms-finespectrum +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-finespectrum/ChangeLog,v 1.1 2004/02/02 10:04:58 eradicator Exp $ + +*xmms-finespectrum-1.0.1_alpha1 (02 Feb 2004) + + 02 Feb 2004; Jeremy Huddleston <eradicator@gentoo.org> + xmms-finespectrum-1.0.1_alpha1.ebuild: + This is a visualization plugin similar to the simple spectrum analyzer that + comes with xmms, but this one uses fine lines instead of bars. Ebuild + submitted by Stefan Briesenick <sbriesen@gmx.de> in bug #39963. + diff --git a/media-plugins/xmms-finespectrum/Manifest b/media-plugins/xmms-finespectrum/Manifest index 9e4d02020d85..4077105dbfc1 100644 --- a/media-plugins/xmms-finespectrum/Manifest +++ b/media-plugins/xmms-finespectrum/Manifest @@ -1,4 +1,4 @@ -MD5 b651e8596f9d5009338ebf2b34b21e31 xmms-finespectrum-1.0.1_alpha1.ebuild 667 -MD5 aeb2067f03bfafb7958d61777a02a656 ChangeLog 502 +MD5 ed852d05e7bee20da7d78501fcde25b8 xmms-finespectrum-1.0.1_alpha1.ebuild 803 +MD5 9b1167b2a9075ccc160631870b4640a1 ChangeLog 610 MD5 a1eaeb2ae801daeb712c90c060e922dc metadata.xml 158 MD5 c00babedaf8f6b7231c49835a667d124 files/digest-xmms-finespectrum-1.0.1_alpha1 76 diff --git a/media-plugins/xmms-finespectrum/files/digest-xmms-finespectrum-1.0.1_alpha1 b/media-plugins/xmms-finespectrum/files/digest-xmms-finespectrum-1.0.1_alpha1 new file mode 100644 index 000000000000..1f49a3e53821 --- /dev/null +++ b/media-plugins/xmms-finespectrum/files/digest-xmms-finespectrum-1.0.1_alpha1 @@ -0,0 +1 @@ +MD5 993cf9f7bfc64c0cacf89fd982cfbb51 finespectrum-1.0.1alpha.tar.bz2 101292 diff --git a/media-plugins/xmms-finespectrum/metadata.xml b/media-plugins/xmms-finespectrum/metadata.xml new file mode 100644 index 000000000000..e1774e3d9ad7 --- /dev/null +++ b/media-plugins/xmms-finespectrum/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sound</herd> +</pkgmetadata> diff --git a/media-plugins/xmms-finespectrum/xmms-finespectrum-1.0.1_alpha1.ebuild b/media-plugins/xmms-finespectrum/xmms-finespectrum-1.0.1_alpha1.ebuild new file mode 100644 index 000000000000..21c5c52b7092 --- /dev/null +++ b/media-plugins/xmms-finespectrum/xmms-finespectrum-1.0.1_alpha1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-finespectrum/xmms-finespectrum-1.0.1_alpha1.ebuild,v 1.1 2004/02/02 10:04:58 eradicator Exp $ + +MY_P="${PN/xmms-/}-${PV/_alpha1/alpha}" +S="${WORKDIR}/${MY_P}" +DESCRIPTION="Fine Spectrum Analyzer visualization plugin for xmms (Like simple spectrum, but with fine lines instead of bars)" +HOMEPAGE="http://www.sourceforge.net/projects/finespectrum/" +SRC_URI="mirror://sourceforge/finespectrum/${MY_P}.tar.bz2" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64 ~ia64 ~ppc ~sparc" + +DEPEND="media-sound/xmms" + +src_install() { + make DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README TODO + dohtml README.html +} |