summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-08-30 08:35:31 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-08-30 08:35:31 +0000
commit42c1afbe1245597cb0a1fe7baf68680c3a2cafd3 (patch)
tree9ef0818565fe45599454dda5cad22f3e4040c6b4 /media-plugins/xmms-status-plugin
parentmoved x11-misc/ikons to x11-themes/ikons (diff)
downloadhistorical-42c1afbe1245597cb0a1fe7baf68680c3a2cafd3.tar.gz
historical-42c1afbe1245597cb0a1fe7baf68680c3a2cafd3.tar.bz2
historical-42c1afbe1245597cb0a1fe7baf68680c3a2cafd3.zip
moved xmms plugins from media-sound to media-plugins
Diffstat (limited to 'media-plugins/xmms-status-plugin')
-rw-r--r--media-plugins/xmms-status-plugin/ChangeLog17
-rw-r--r--media-plugins/xmms-status-plugin/files/README.Gentoo13
-rw-r--r--media-plugins/xmms-status-plugin/files/digest-xmms-status-plugin-0.91
-rw-r--r--media-plugins/xmms-status-plugin/xmms-status-plugin-0.9.ebuild34
4 files changed, 65 insertions, 0 deletions
diff --git a/media-plugins/xmms-status-plugin/ChangeLog b/media-plugins/xmms-status-plugin/ChangeLog
new file mode 100644
index 000000000000..3ff25e26f28d
--- /dev/null
+++ b/media-plugins/xmms-status-plugin/ChangeLog
@@ -0,0 +1,17 @@
+# ChangeLog for media-plugins/xmms-status-plugin
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-status-plugin/ChangeLog,v 1.1 2002/08/30 08:35:31 seemant Exp $
+
+* xmms-status-plugin-0.9 (17 Apr 2002)
+
+ 30 Aug 2002; Seemant Kulleen <seemant@gentoo.org> * :
+
+ Relocated to media-plugins
+
+ 17 Apr 2002; Matthew Kennedy <mkennedy@gentoo.org> ChangeLog,
+ xmms-status-plugin-0.9.ebuild, files/README.Gentoo
+ files/digest-xmms-status-plugin-0.9 :
+
+ New ebuild. Submitted originally by Gary Chisholm
+ <gary@nexlinks.net>. Please see files/README.Gentoo for issues
+ related to xmms-status-plugin-0.9.
diff --git a/media-plugins/xmms-status-plugin/files/README.Gentoo b/media-plugins/xmms-status-plugin/files/README.Gentoo
new file mode 100644
index 000000000000..af31abc53895
--- /dev/null
+++ b/media-plugins/xmms-status-plugin/files/README.Gentoo
@@ -0,0 +1,13 @@
+[ from Gary Chisholm <gary@nexlinks.net> ]
+
+Known Bugs/Problems
+
+Sawfish: Status plugins and Sawfish 1.0.1 will not stick the
+applet in the docklet, this is a Sawfish issue unmerge Sawfish
+1.0.1 and merge Sawfish 1.0.0 works fine.
+
+Enlightenment: Status plugins and enlightenment do not play well
+together, this is not anyones fault, but is due to the rather
+hacky way in which status windows are implemented. Unfortunately
+I don't use E and haven't got the time to implement anything myself.
+
diff --git a/media-plugins/xmms-status-plugin/files/digest-xmms-status-plugin-0.9 b/media-plugins/xmms-status-plugin/files/digest-xmms-status-plugin-0.9
new file mode 100644
index 000000000000..486dc2bfd71c
--- /dev/null
+++ b/media-plugins/xmms-status-plugin/files/digest-xmms-status-plugin-0.9
@@ -0,0 +1 @@
+MD5 75cf2f91aee128679f469a7723db73f2 xmms-status-plugin-0.9.tar.gz 293570
diff --git a/media-plugins/xmms-status-plugin/xmms-status-plugin-0.9.ebuild b/media-plugins/xmms-status-plugin/xmms-status-plugin-0.9.ebuild
new file mode 100644
index 000000000000..adee807794ff
--- /dev/null
+++ b/media-plugins/xmms-status-plugin/xmms-status-plugin-0.9.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-status-plugin/xmms-status-plugin-0.9.ebuild,v 1.1 2002/08/30 08:35:31 seemant Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="Provides a docklet for the GNOME Status applet and the KDE panel."
+SRC_URI="http://www.hellion.org.uk/source/${P}.tar.gz"
+HOMEPAGE="http://www.hellion.org.uk/xmms-status-plugin/"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86"
+
+DEPEND="media-sound/xmms
+ =x11-libs/gtk+-1.2*"
+
+RDEPEND="nls? ( sys-devel/gettext )"
+
+src_compile() {
+ local myconf
+
+ use nls \
+ && myconf="--enable-nls" \
+ || myconf="--disable-nls"
+
+ econf ${myconf} || die
+ emake || die
+}
+
+
+src_install () {
+ make DESTDIR=${D} install || die
+ dodoc AUTHORS COPYING ChangeLog INSTALL README TODO
+}