diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2004-06-30 08:25:32 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2004-06-30 08:25:32 +0000 |
commit | 2741820790238e9e2324ffba6ccfefafd2c04bd4 (patch) | |
tree | c91d46fff075255e8c931956e7b0ec4915b471cc /x11-plugins/wmsmixer | |
parent | bump x11-plugins/wmweather+ to version 2.9. clean up old ebuilds... (Manifest... (diff) | |
download | gentoo-2-2741820790238e9e2324ffba6ccfefafd2c04bd4.tar.gz gentoo-2-2741820790238e9e2324ffba6ccfefafd2c04bd4.tar.bz2 gentoo-2-2741820790238e9e2324ffba6ccfefafd2c04bd4.zip |
bump x11-plugins/wmsmixer to version 0.5.1...
Diffstat (limited to 'x11-plugins/wmsmixer')
-rw-r--r-- | x11-plugins/wmsmixer/ChangeLog | 9 | ||||
-rw-r--r-- | x11-plugins/wmsmixer/Manifest | 4 | ||||
-rw-r--r-- | x11-plugins/wmsmixer/files/digest-wmsmixer-0.5.1 | 1 | ||||
-rw-r--r-- | x11-plugins/wmsmixer/wmsmixer-0.5.1.ebuild | 29 |
4 files changed, 41 insertions, 2 deletions
diff --git a/x11-plugins/wmsmixer/ChangeLog b/x11-plugins/wmsmixer/ChangeLog index 5bd4acd537d2..f822090116e1 100644 --- a/x11-plugins/wmsmixer/ChangeLog +++ b/x11-plugins/wmsmixer/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-plugins/wmsmixer # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsmixer/ChangeLog,v 1.9 2004/06/28 21:31:42 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsmixer/ChangeLog,v 1.10 2004/06/30 08:25:32 s4t4n Exp $ + + *wmsmixer-0.5.1 (30 June 2004) + + 30 Jun 2004; Michele Noberasco <s4t4n@gentoo.org> wmsmixer-0.5.1.ebuild: + Version Bump. No longer need for gcc3.diff as the problem + was fixed upstream. wmsmixer now installs in /usr/bin/ instead + of /usr/X11R6/bin/ 28 Jun 2004; Aron Griffis <agriffis@gentoo.org> wmsmixer-0.5.ebuild: glibc -> libc diff --git a/x11-plugins/wmsmixer/Manifest b/x11-plugins/wmsmixer/Manifest index 46f436bf9642..f77417897d36 100644 --- a/x11-plugins/wmsmixer/Manifest +++ b/x11-plugins/wmsmixer/Manifest @@ -1,5 +1,7 @@ MD5 e07218344f8cb3fc10ee207b32e2a606 wmsmixer-0.5.ebuild 880 -MD5 4aa937923a1d9845789455ba66f60af5 ChangeLog 1068 +MD5 0dedb6b7abf51da8458cc47e40a9c255 ChangeLog 1260 MD5 cbcbfa5899b062c064cd902ba13c1f89 metadata.xml 380 +MD5 dc4dac89dd74ee41e377123eb62a5f3b wmsmixer-0.5.1.ebuild 806 MD5 2a88cef104773c371d0b8d96362d47d5 files/digest-wmsmixer-0.5 63 +MD5 3ef0320fe7b417f8464b2a74981a814b files/digest-wmsmixer-0.5.1 65 MD5 2888240d41fcb8a0569feba2cb252dfa files/gcc3.diff 398 diff --git a/x11-plugins/wmsmixer/files/digest-wmsmixer-0.5.1 b/x11-plugins/wmsmixer/files/digest-wmsmixer-0.5.1 new file mode 100644 index 000000000000..a72b936ab6b9 --- /dev/null +++ b/x11-plugins/wmsmixer/files/digest-wmsmixer-0.5.1 @@ -0,0 +1 @@ +MD5 41d64b4a79756ded25ddb614d574114b wmsmixer-0.5.1.tar.gz 33350 diff --git a/x11-plugins/wmsmixer/wmsmixer-0.5.1.ebuild b/x11-plugins/wmsmixer/wmsmixer-0.5.1.ebuild new file mode 100644 index 000000000000..7e77eecc63e7 --- /dev/null +++ b/x11-plugins/wmsmixer/wmsmixer-0.5.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsmixer/wmsmixer-0.5.1.ebuild,v 1.1 2004/06/30 08:25:32 s4t4n Exp $ + +inherit eutils +IUSE="" +DESCRIPTION="fork of wmmixer adding scrollwheel support and other features" +HOMEPAGE="http://www.hibernaculum.net/wmsmixer.html" +SRC_URI="http://www.hibernaculum.net/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~sparc" + +DEPEND="virtual/libc + virtual/x11" + +src_compile() { + g++ -m32 ${CFLAGS} -I/usr/X11R6/include -c -o wmsmixer.o wmsmixer.cc + rm -f wmsmixer + g++ -o wmsmixer ${CFLAGS} -L/usr/X11R6/lib wmsmixer.o -lXpm -lXext -lX11 +} + +src_install() { + insinto /usr/bin + insopts -m0655 + doins wmsmixer + dodoc README README.wmmixer +} |