summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Goodyear <g2boojum@gentoo.org>2003-08-14 04:43:04 +0000
committerGrant Goodyear <g2boojum@gentoo.org>2003-08-14 04:43:04 +0000
commita537224ea3aca2916825a62d54a5cdfb7a04eaf9 (patch)
tree8733a5564b1f0ef53c75ffcd0454305a582ace3b /x11-plugins/wmmp
parentNew ebuild. See bug #25159 (diff)
downloadgentoo-2-a537224ea3aca2916825a62d54a5cdfb7a04eaf9.tar.gz
gentoo-2-a537224ea3aca2916825a62d54a5cdfb7a04eaf9.tar.bz2
gentoo-2-a537224ea3aca2916825a62d54a5cdfb7a04eaf9.zip
New ebuild. See bug #25159
Diffstat (limited to 'x11-plugins/wmmp')
-rw-r--r--x11-plugins/wmmp/ChangeLog8
-rw-r--r--x11-plugins/wmmp/Manifest1
-rw-r--r--x11-plugins/wmmp/files/digest-wmmp-0.8.01
-rw-r--r--x11-plugins/wmmp/wmmp-0.8.0.ebuild36
4 files changed, 46 insertions, 0 deletions
diff --git a/x11-plugins/wmmp/ChangeLog b/x11-plugins/wmmp/ChangeLog
new file mode 100644
index 000000000000..69ea443d8e14
--- /dev/null
+++ b/x11-plugins/wmmp/ChangeLog
@@ -0,0 +1,8 @@
+# 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 $
+
+*wmmp-0.8.0 (13 Aug 2003)
+
+ 13 Aug 2003; Nick Hadaway <raker@gentoo.org> wmmp-0.8.0.ebuild:
+ New ebuild. See bug #25159 for the original request.
diff --git a/x11-plugins/wmmp/Manifest b/x11-plugins/wmmp/Manifest
index ee5417196d71..5d2b74419baa 100644
--- a/x11-plugins/wmmp/Manifest
+++ b/x11-plugins/wmmp/Manifest
@@ -1,2 +1,3 @@
MD5 bdaf12209d2425f5799be45dba682da6 wmmp-0.8.0.ebuild 653
+MD5 bbc00e3d9487f0ace8675d61e6aaae71 ChangeLog 365
MD5 beb727868a84018b72dd002d9f392004 files/digest-wmmp-0.8.0 62
diff --git a/x11-plugins/wmmp/files/digest-wmmp-0.8.0 b/x11-plugins/wmmp/files/digest-wmmp-0.8.0
new file mode 100644
index 000000000000..4f44d3a87407
--- /dev/null
+++ b/x11-plugins/wmmp/files/digest-wmmp-0.8.0
@@ -0,0 +1 @@
+MD5 34b4d29478c7b32412c564fce2fa40eb WMmp-0.8.0.tar.gz 214608
diff --git a/x11-plugins/wmmp/wmmp-0.8.0.ebuild b/x11-plugins/wmmp/wmmp-0.8.0.ebuild
new file mode 100644
index 000000000000..644690521e71
--- /dev/null
+++ b/x11-plugins/wmmp/wmmp-0.8.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+#
+
+IUSE=""
+
+DESCRIPTION="A Window Maker dock app client for Music Player Daemon(media-sound/mpd)"
+SRC_URI="http://mercury.chem.pitt.edu/~shank/${P/wm/WM}.tar.gz"
+HOMEPAGE="http://www.musicpd.org"
+
+DEPEND="virtual/x11"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86 ~sparc ~alpha"
+
+S=${WORKDIR}/${P/wm/WM}
+
+src_compile() {
+ local myconf
+ myconf="--with-gnu-ld"
+
+ econf ${myconf} || die "configure failed"
+
+ emake || die "make failed"
+}
+
+src_install () {
+ dobin src/WMmp
+
+ doman doc/WMmp.1
+
+ dodoc AUTHORS COPYING INSTALL README THANKS TODO
+}
+
+