diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-12-15 21:52:19 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-12-15 21:52:19 +0000 |
commit | 81020779cc67f099115022b1e26dc963f01879a9 (patch) | |
tree | 347f2251546413228bad74cd6187fab39d5be06c /media-sound | |
parent | jump to file/xmmsctrl patch (diff) | |
download | historical-81020779cc67f099115022b1e26dc963f01879a9.tar.gz historical-81020779cc67f099115022b1e26dc963f01879a9.tar.bz2 historical-81020779cc67f099115022b1e26dc963f01879a9.zip |
new package to control xmms from the cli
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/xmmsctrl/ChangeLog | 12 | ||||
-rw-r--r-- | media-sound/xmmsctrl/files/digest-xmmsctrl-1.6 | 1 | ||||
-rw-r--r-- | media-sound/xmmsctrl/files/xmmsctrl-jump.patch | 15 | ||||
-rw-r--r-- | media-sound/xmmsctrl/xmmsctrl-1.6.ebuild | 31 |
4 files changed, 59 insertions, 0 deletions
diff --git a/media-sound/xmmsctrl/ChangeLog b/media-sound/xmmsctrl/ChangeLog new file mode 100644 index 000000000000..fd96298b765f --- /dev/null +++ b/media-sound/xmmsctrl/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for media-sound/xmmsctrl +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/xmmsctrl/ChangeLog,v 1.1 2002/12/15 21:52:19 seemant Exp $ + +*xmmsctrl-1.6 (15 Dec 2002) + + 15 Dec 2002; Seemant Kulleen <seemant@gentoo.org> xmmsctrl-1.6.ebuild + ChangeLog files/xmmsctrl-jump.patch files/digest-xmmsctrl-1.6 : + + New package to control XMMS from the commandline, by novas007@gmx.net + (Mike Lundy) in bug #10821. This is patched to allow the "jump to file" + dialog box to pop up. diff --git a/media-sound/xmmsctrl/files/digest-xmmsctrl-1.6 b/media-sound/xmmsctrl/files/digest-xmmsctrl-1.6 new file mode 100644 index 000000000000..08cc0659180e --- /dev/null +++ b/media-sound/xmmsctrl/files/digest-xmmsctrl-1.6 @@ -0,0 +1 @@ +MD5 71fd55fbd9d8f7a05adb24897e8ef643 xmmsctrl-1.6.tar.gz 7843 diff --git a/media-sound/xmmsctrl/files/xmmsctrl-jump.patch b/media-sound/xmmsctrl/files/xmmsctrl-jump.patch new file mode 100644 index 000000000000..cd0dd07e5679 --- /dev/null +++ b/media-sound/xmmsctrl/files/xmmsctrl-jump.patch @@ -0,0 +1,15 @@ +diff -ur xmmsctrl-1.6/xmmsctrl.c ../xmmsctrl-1.6/xmmsctrl.c +--- xmmsctrl-1.6/xmmsctrl.c Wed Nov 21 10:45:56 2001 ++++ ../xmmsctrl-1.6/xmmsctrl.c Sat Jan 5 08:14:17 2002 +@@ -101,6 +101,11 @@ + "help", + print_help , + "print this help message" ++ }, ++ { ++ "jump" , ++ xmms_remote_show_jump_box , ++ "open the xmms jump to file box" + }, + { + "next" , diff --git a/media-sound/xmmsctrl/xmmsctrl-1.6.ebuild b/media-sound/xmmsctrl/xmmsctrl-1.6.ebuild new file mode 100644 index 000000000000..4815222e0f6b --- /dev/null +++ b/media-sound/xmmsctrl/xmmsctrl-1.6.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/xmmsctrl/xmmsctrl-1.6.ebuild,v 1.1 2002/12/15 21:52:19 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A small program to control xmms from a shell script." +SRC_URI="http://www.docs.uu.se/~adavid/utils/${P}.tar.gz" +HOMEPAGE="http://user.it.uu.se/~adavid/utils/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND=">=media-sound/xmms-1.2.7-r16" + +src_unpack() { + unpack ${A} || die + cd ${S} + patch -p1 <${FILESDIR}/xmmsctrl-jump.patch || die +} + +src_compile() { + emake || die +} + +src_install () { + dobin xmmsctrl + dodoc README HELP + mv samples ${D}/usr/share/doc/${PF}/ + prepalldocs +} |