diff options
author | Michael Stewart <vericgar@gentoo.org> | 2006-10-31 05:03:51 +0000 |
---|---|---|
committer | Michael Stewart <vericgar@gentoo.org> | 2006-10-31 05:03:51 +0000 |
commit | 53f107ca81930942af9b383e101c057aee1d8d96 (patch) | |
tree | 8aae520f1668d187de1cabe7a9421ba0bf5b55b7 /x11-plugins | |
parent | always copy/sed script regardless of USE (diff) | |
download | gentoo-2-53f107ca81930942af9b383e101c057aee1d8d96.tar.gz gentoo-2-53f107ca81930942af9b383e101c057aee1d8d96.tar.bz2 gentoo-2-53f107ca81930942af9b383e101c057aee1d8d96.zip |
Version bump. Fixes segfaults in option processing and install location of pixmaps.
(Portage version: 2.1.2_pre2-r5)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/wmauda/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/wmauda/files/digest-wmauda-0.3 | 3 | ||||
-rw-r--r-- | x11-plugins/wmauda/wmauda-0.3.ebuild | 23 |
3 files changed, 33 insertions, 1 deletions
diff --git a/x11-plugins/wmauda/ChangeLog b/x11-plugins/wmauda/ChangeLog index 887a6ca73bbe..a3625ca39bf1 100644 --- a/x11-plugins/wmauda/ChangeLog +++ b/x11-plugins/wmauda/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-plugins/wmauda # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmauda/ChangeLog,v 1.1 2006/10/30 00:48:29 vericgar Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmauda/ChangeLog,v 1.2 2006/10/31 05:03:51 vericgar Exp $ + +*wmauda-0.3 (31 Oct 2006) + + 31 Oct 2006; Michael Stewart <vericgar@gentoo.org> +wmauda-0.3.ebuild: + Version bump. Fixes segfaults in option processing and install location of + pixmaps. *wmauda-0.2 (30 Oct 2006) diff --git a/x11-plugins/wmauda/files/digest-wmauda-0.3 b/x11-plugins/wmauda/files/digest-wmauda-0.3 new file mode 100644 index 000000000000..c976885c4667 --- /dev/null +++ b/x11-plugins/wmauda/files/digest-wmauda-0.3 @@ -0,0 +1,3 @@ +MD5 2398d1dc2d80bc4d9b5bb0219447e657 wmauda-0.3.tar.bz2 16843 +RMD160 cab1cf0e5d2faa287d385b18e211d112cdd8b17a wmauda-0.3.tar.bz2 16843 +SHA256 167cc9118ff4fa231bc51a9d021bb1a913c04839db85ebdcd59ed3bf63a0e298 wmauda-0.3.tar.bz2 16843 diff --git a/x11-plugins/wmauda/wmauda-0.3.ebuild b/x11-plugins/wmauda/wmauda-0.3.ebuild new file mode 100644 index 000000000000..14bc3a7e872e --- /dev/null +++ b/x11-plugins/wmauda/wmauda-0.3.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmauda/wmauda-0.3.ebuild,v 1.1 2006/10/31 05:03:51 vericgar Exp $ + +DESCRIPTION="Dockable applet for WindowMaker that controls Audacious." +SRC_URI="http://downloads.alteredeclipse.org/${P}.tar.bz2" +HOMEPAGE="http://software.alteredeclipse.org/" + +DEPEND="=x11-libs/gtk+-2* + media-sound/audacious" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +src_compile() { + emake || die +} + +src_install () { + make DESTDIR="${D}" PREFIX="/usr" install || die "make install failed" + dodoc README AUTHORS +} |