diff options
author | Andrej Kacian <ticho@gentoo.org> | 2006-10-21 23:36:54 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2006-10-21 23:36:54 +0000 |
commit | 3158e73305e94c0b59755b5839b1eea2e4ca144f (patch) | |
tree | a3eed7d7cb8f341a61dc4e226c4c09045f967391 | |
parent | Stable on Alpha + ia64. (diff) | |
download | gentoo-2-3158e73305e94c0b59755b5839b1eea2e4ca144f.tar.gz gentoo-2-3158e73305e94c0b59755b5839b1eea2e4ca144f.tar.bz2 gentoo-2-3158e73305e94c0b59755b5839b1eea2e4ca144f.zip |
Version bump. Closes bug #152107, by Sebastian <sebastian_ml at gmx.net>.
(Portage version: 2.1.2_pre3-r2)
-rw-r--r-- | media-sound/qmpdclient/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/qmpdclient/files/digest-qmpdclient-1.0.6.2 | 3 | ||||
-rw-r--r-- | media-sound/qmpdclient/qmpdclient-1.0.6.2.ebuild | 30 |
3 files changed, 39 insertions, 1 deletions
diff --git a/media-sound/qmpdclient/ChangeLog b/media-sound/qmpdclient/ChangeLog index ca927a88de07..7a9b6a627efc 100644 --- a/media-sound/qmpdclient/ChangeLog +++ b/media-sound/qmpdclient/ChangeLog @@ -1,6 +1,11 @@ # 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.9 2006/10/11 00:51:52 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.10 2006/10/21 23:36:54 ticho Exp $ + +*qmpdclient-1.0.6.2 (21 Oct 2006) + + 21 Oct 2006; Andrej Kacian <ticho@gentoo.org> +qmpdclient-1.0.6.2.ebuild: + Version bump. Closes bug #152107, by Sebastian <sebastian_ml at gmx.net>. *qmpdclient-1.0.6.1 (11 Oct 2006) diff --git a/media-sound/qmpdclient/files/digest-qmpdclient-1.0.6.2 b/media-sound/qmpdclient/files/digest-qmpdclient-1.0.6.2 new file mode 100644 index 000000000000..c702badeed68 --- /dev/null +++ b/media-sound/qmpdclient/files/digest-qmpdclient-1.0.6.2 @@ -0,0 +1,3 @@ +MD5 776c7754ef898bf3b2bd5332edb7a902 qmpdclient-1.0.6.2.tar.gz 204103 +RMD160 927733606f027eff0ec4c7805481ae9b7d827474 qmpdclient-1.0.6.2.tar.gz 204103 +SHA256 f37513589b5a49c57240aee7b99ccf71647452193456a966ca0ce5d460768fff qmpdclient-1.0.6.2.tar.gz 204103 diff --git a/media-sound/qmpdclient/qmpdclient-1.0.6.2.ebuild b/media-sound/qmpdclient/qmpdclient-1.0.6.2.ebuild new file mode 100644 index 000000000000..8c68acce4888 --- /dev/null +++ b/media-sound/qmpdclient/qmpdclient-1.0.6.2.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.2.ebuild,v 1.1 2006/10/21 23:36:54 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" +} |