diff options
author | Andrej Kacian <ticho@gentoo.org> | 2006-10-11 00:51:52 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2006-10-11 00:51:52 +0000 |
commit | 53172b0b61560ae0e2d5f2075ed301fafb72fd7e (patch) | |
tree | a878d9b151d6f8b217a795c001fe068573eb8366 /media-sound/qmpdclient | |
parent | Update description to be less generic. (diff) | |
download | gentoo-2-53172b0b61560ae0e2d5f2075ed301fafb72fd7e.tar.gz gentoo-2-53172b0b61560ae0e2d5f2075ed301fafb72fd7e.tar.bz2 gentoo-2-53172b0b61560ae0e2d5f2075ed301fafb72fd7e.zip |
Version bump. Install required files manually instead of using make install. Bug #150464, by Sebastian <sebastian_ml at gmx.net>.
(Portage version: 2.1.2_pre2-r5)
Diffstat (limited to 'media-sound/qmpdclient')
-rw-r--r-- | media-sound/qmpdclient/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/qmpdclient/files/digest-qmpdclient-1.0.6.1 | 3 | ||||
-rw-r--r-- | media-sound/qmpdclient/qmpdclient-1.0.6.1.ebuild | 30 |
3 files changed, 40 insertions, 1 deletions
diff --git a/media-sound/qmpdclient/ChangeLog b/media-sound/qmpdclient/ChangeLog index 5f50096be5f0..ca927a88de07 100644 --- a/media-sound/qmpdclient/ChangeLog +++ b/media-sound/qmpdclient/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/qmpdclient # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.8 2006/10/03 19:20:58 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.9 2006/10/11 00:51:52 ticho Exp $ + +*qmpdclient-1.0.6.1 (11 Oct 2006) + + 11 Oct 2006; <ticho@gentoo.org> +qmpdclient-1.0.6.1.ebuild: + Version bump. Install required files manually instead of using make install. + Bug #150464, by Sebastian <sebastian_ml at gmx.net>. *qmpdclient-1.0.6 (03 Oct 2006) diff --git a/media-sound/qmpdclient/files/digest-qmpdclient-1.0.6.1 b/media-sound/qmpdclient/files/digest-qmpdclient-1.0.6.1 new file mode 100644 index 000000000000..a7d452067a4a --- /dev/null +++ b/media-sound/qmpdclient/files/digest-qmpdclient-1.0.6.1 @@ -0,0 +1,3 @@ +MD5 1dda6c371f14912a078c1740017aa59d qmpdclient-1.0.6.1.tar.gz 203787 +RMD160 7af757e22506d555c82aa79d7df1e9fd6ecdf2ad qmpdclient-1.0.6.1.tar.gz 203787 +SHA256 fcb6727f962a758e95024fcc9c93bac068b89cd45c7a64a27e23e12e1a619e04 qmpdclient-1.0.6.1.tar.gz 203787 diff --git a/media-sound/qmpdclient/qmpdclient-1.0.6.1.ebuild b/media-sound/qmpdclient/qmpdclient-1.0.6.1.ebuild new file mode 100644 index 000000000000..2d9b9c6c0b60 --- /dev/null +++ b/media-sound/qmpdclient/qmpdclient-1.0.6.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.0.6.1.ebuild,v 1.1 2006/10/11 00:51:52 ticho Exp $ + +inherit eutils + +DESCRIPTION="An easy to use MPD client written in Qt 4.1" +HOMEPAGE="http://havtknut.tihlde.org/qmpdclient" +SRC_URI="http://havtknut.tihlde.org/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~x86" +IUSE="" + +DEPEND=">=x11-libs/qt-4.1" + +src_compile() { + ./configure || die "configure failed" + emake || die "make failed" +} + +src_install() { + dodoc README AUTHORS THANKSTO Changelog + insinto /usr/share/pixmaps + doins icons/qmpdclient{16,22,32,64,128}.png + dobin qmpdclient + + make_desktop_entry qmpdclient "QMPDClient" qmpdclient64.png "KDE;Qt;AudioVideo" +} |