diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-10-07 17:43:31 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-10-07 17:43:31 +0000 |
commit | 6b7c3b4d57d75472494e9376db4d7edb4a3f081d (patch) | |
tree | a1aad2ee8bf0ce94381da616208297a06692bb97 /x11-plugins/wmmp | |
parent | Version bumped. (diff) | |
download | gentoo-2-6b7c3b4d57d75472494e9376db4d7edb4a3f081d.tar.gz gentoo-2-6b7c3b4d57d75472494e9376db4d7edb4a3f081d.tar.bz2 gentoo-2-6b7c3b4d57d75472494e9376db4d7edb4a3f081d.zip |
Version bumped.
Diffstat (limited to 'x11-plugins/wmmp')
-rw-r--r-- | x11-plugins/wmmp/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/wmmp/Manifest | 4 | ||||
-rw-r--r-- | x11-plugins/wmmp/files/digest-wmmp-0.9.1 | 1 | ||||
-rw-r--r-- | x11-plugins/wmmp/wmmp-0.9.1.ebuild | 33 |
4 files changed, 42 insertions, 3 deletions
diff --git a/x11-plugins/wmmp/ChangeLog b/x11-plugins/wmmp/ChangeLog index 69ea443d8e14..4dde5d8031d4 100644 --- a/x11-plugins/wmmp/ChangeLog +++ b/x11-plugins/wmmp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-plugins/wmmp # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmp/ChangeLog,v 1.1 2003/08/14 04:43:00 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmp/ChangeLog,v 1.2 2003/10/07 17:43:26 mholzer Exp $ + +*wmmp-0.9.1 (08 Oct 2003) + + 08 Oct 2003; Martin Holzer <mholzer@gentoo.org> wmmp-0.9.1.ebuild: + Version bumped. *wmmp-0.8.0 (13 Aug 2003) diff --git a/x11-plugins/wmmp/Manifest b/x11-plugins/wmmp/Manifest index 83a1c8e02978..09604764ccd0 100644 --- a/x11-plugins/wmmp/Manifest +++ b/x11-plugins/wmmp/Manifest @@ -1,5 +1,5 @@ -MD5 bbc00e3d9487f0ace8675d61e6aaae71 ChangeLog 365 +MD5 bf964e2a679e0d4a6119000afbd3d5d1 ChangeLog 479 MD5 bdaf12209d2425f5799be45dba682da6 wmmp-0.8.0.ebuild 653 -MD5 3b9ad04e85722e3379750f2bc9470bc2 wmmp-0.9.1.ebuild 687 +MD5 0bfbafaa053724d07ed7c6ea4204cceb wmmp-0.9.1.ebuild 661 MD5 beb727868a84018b72dd002d9f392004 files/digest-wmmp-0.8.0 62 MD5 999b899312796e783824ace79291a08d files/digest-wmmp-0.9.1 62 diff --git a/x11-plugins/wmmp/files/digest-wmmp-0.9.1 b/x11-plugins/wmmp/files/digest-wmmp-0.9.1 new file mode 100644 index 000000000000..c8485c530e35 --- /dev/null +++ b/x11-plugins/wmmp/files/digest-wmmp-0.9.1 @@ -0,0 +1 @@ +MD5 3ee54308e0e66544651eb6d37de492fc WMmp-0.9.1.tar.gz 313037 diff --git a/x11-plugins/wmmp/wmmp-0.9.1.ebuild b/x11-plugins/wmmp/wmmp-0.9.1.ebuild new file mode 100644 index 000000000000..a943a3a8bc8b --- /dev/null +++ b/x11-plugins/wmmp/wmmp-0.9.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# + +IUSE="" + +MY_P=${P/wm/WM} +DESCRIPTION="A Window Maker dock app client for Music Player Daemon(media-sound/mpd)" +SRC_URI="http://mercury.chem.pitt.edu/~shank/${MY_P}.tar.gz" +HOMEPAGE="http://www.musicpd.org" + +DEPEND="virtual/x11" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~sparc ~alpha" + +S=${WORKDIR}/${MY_P} + +src_compile() { + local myconf + myconf="--with-gnu-ld" + + econf ${myconf} || die "configure failed" + + emake || die "make failed" +} + +src_install () { + emake install DESTDIR=${D} || die + + dodoc AUTHORS COPYING INSTALL README THANKS TODO +} |