diff options
Diffstat (limited to 'x11-plugins/wmmp/wmmp-0.10.0-r1.ebuild')
-rw-r--r-- | x11-plugins/wmmp/wmmp-0.10.0-r1.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/x11-plugins/wmmp/wmmp-0.10.0-r1.ebuild b/x11-plugins/wmmp/wmmp-0.10.0-r1.ebuild new file mode 100644 index 000000000000..02f203f60cb7 --- /dev/null +++ b/x11-plugins/wmmp/wmmp-0.10.0-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmp/wmmp-0.10.0-r1.ebuild,v 1.1 2007/07/28 13:08:58 drac Exp $ + +MY_P=${P/wm/WM} + +DESCRIPTION="A Window Maker dock app client for Music Player Daemon(media-sound/mpd)" +HOMEPAGE="http://www.musicpd.org" +SRC_URI="mirror://sourceforge/musicpd/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~sparc ~x86" +IUSE="" + +DEPEND="x11-libs/libXext + x11-libs/libXpm" + +S="${WORKDIR}"/${MY_P} + +src_compile() { + econf --with-default-port=6600 + emake || die "emake install failed." +} + +src_install () { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog README THANKS TODO +} |