diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2003-08-14 20:55:42 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2003-08-14 20:55:42 +0000 |
commit | 2ff460ee141a6f722542ffe660a041e5609dae6a (patch) | |
tree | 6514132b40eabc0d0b024b8191abbeba51a5dcbd /x11-plugins/wmusic | |
parent | Version bump. upstream fix so those without a scroll mouse can adjust the vo... (diff) | |
download | gentoo-2-2ff460ee141a6f722542ffe660a041e5609dae6a.tar.gz gentoo-2-2ff460ee141a6f722542ffe660a041e5609dae6a.tar.bz2 gentoo-2-2ff460ee141a6f722542ffe660a041e5609dae6a.zip |
Version bump. upstream fix so those without a scroll mouse can adjust the volume.
Diffstat (limited to 'x11-plugins/wmusic')
-rw-r--r-- | x11-plugins/wmusic/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/wmusic/Manifest | 4 | ||||
-rw-r--r-- | x11-plugins/wmusic/files/digest-wmusic-1.4.11 | 1 | ||||
-rw-r--r-- | x11-plugins/wmusic/wmusic-1.4.11.ebuild | 34 |
4 files changed, 44 insertions, 3 deletions
diff --git a/x11-plugins/wmusic/ChangeLog b/x11-plugins/wmusic/ChangeLog index 25bc555db84d..6069eef74ad3 100644 --- a/x11-plugins/wmusic/ChangeLog +++ b/x11-plugins/wmusic/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-plugins/wmusic # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmusic/ChangeLog,v 1.3 2003/02/12 09:44:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmusic/ChangeLog,v 1.4 2003/08/14 20:55:38 g2boojum Exp $ + +*wmusic-1.4.11 (14 Aug 2003) + + 14 Aug 2003; Nick Hadaway <raker@gentoo.org> wmusic-1.4.11.ebuild: + Version bump. Closes bug #26307. This version adds support for + volume control without a scroll mouse. *wmusic-1.4.10 (14 Jan 2003) diff --git a/x11-plugins/wmusic/Manifest b/x11-plugins/wmusic/Manifest index 7e6f27c1d0d6..5bfe9d907ab2 100644 --- a/x11-plugins/wmusic/Manifest +++ b/x11-plugins/wmusic/Manifest @@ -1,5 +1,5 @@ -MD5 59e7ed0551fa0e718d563793e13633e0 wmusic-1.4.11.ebuild 760 +MD5 9ca5cb522b026700b40bc1ddc05293ba wmusic-1.4.11.ebuild 762 MD5 59e7ed0551fa0e718d563793e13633e0 wmusic-1.4.10.ebuild 760 -MD5 f1887b8a3030b5dfa1403d13ba11f168 ChangeLog 496 +MD5 4190f1aca75f9e321d823b9071d94de8 ChangeLog 706 MD5 930cfaf5fe1664a43eb5c2a82110d573 files/digest-wmusic-1.4.10 69 MD5 c94be60d3c8d8276495ea62f69119612 files/digest-wmusic-1.4.11 68 diff --git a/x11-plugins/wmusic/files/digest-wmusic-1.4.11 b/x11-plugins/wmusic/files/digest-wmusic-1.4.11 new file mode 100644 index 000000000000..d4022270bdfb --- /dev/null +++ b/x11-plugins/wmusic/files/digest-wmusic-1.4.11 @@ -0,0 +1 @@ +MD5 234aa3e15e356b96f566e2eee0bea7f9 wmusic-1.4.11-src.tar.gz 43710 diff --git a/x11-plugins/wmusic/wmusic-1.4.11.ebuild b/x11-plugins/wmusic/wmusic-1.4.11.ebuild new file mode 100644 index 000000000000..391ebfcd7d70 --- /dev/null +++ b/x11-plugins/wmusic/wmusic-1.4.11.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmusic/wmusic-1.4.11.ebuild,v 1.1 2003/08/14 20:55:38 g2boojum Exp $ + +DESCRIPTION="dockapp for xmms" +HOMEPAGE="http://home.jtan.com/~john/wmusic/" +SRC_URI="http://home.jtan.com/~john/wmusic/downloads/${P}-src.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="virtual/glibc + virtual/x11 + >media-sound/xmms-1.2.4" + +S=${WORKDIR}/${P} + +src_unpack() { + unpack ${P}-src.tar.gz + cd ${S}/src + mv Makefile.in Makefile.in.orig + sed -e "s:-O2:${CFLAGS}:" Makefile.in.orig > Makefile.in + cd ${S} +} + +src_compile() { + econf || die + emake || die +} + +src_install() { + dobin src/wmusic + dodoc README +} |