summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Mende <angelos@gentoo.org>2009-01-01 10:04:01 +0000
committerChristoph Mende <angelos@gentoo.org>2009-01-01 10:04:01 +0000
commit67fbcaecf597c94e50ab2712d46b6ddc9042be01 (patch)
treecb7326929b7cf42f94ba3673aeaff3e10c4cfa4c /media-sound/gimmix
parentFixed merging with custom ROOT, bug #247968, thank Łukasz Mierzwa for report. (diff)
downloadgentoo-2-67fbcaecf597c94e50ab2712d46b6ddc9042be01.tar.gz
gentoo-2-67fbcaecf597c94e50ab2712d46b6ddc9042be01.tar.bz2
gentoo-2-67fbcaecf597c94e50ab2712d46b6ddc9042be01.zip
Version bump
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'media-sound/gimmix')
-rw-r--r--media-sound/gimmix/ChangeLog9
-rw-r--r--media-sound/gimmix/gimmix-0.5.4.ebuild47
2 files changed, 54 insertions, 2 deletions
diff --git a/media-sound/gimmix/ChangeLog b/media-sound/gimmix/ChangeLog
index 22fde0184c59..d763e2f5d74d 100644
--- a/media-sound/gimmix/ChangeLog
+++ b/media-sound/gimmix/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/gimmix
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/gimmix/ChangeLog,v 1.18 2008/12/12 19:31:49 angelos Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/gimmix/ChangeLog,v 1.19 2009/01/01 10:04:01 angelos Exp $
+
+*gimmix-0.5.4 (01 Jan 2009)
+
+ 01 Jan 2009; Christoph Mende <angelos@gentoo.org> +gimmix-0.5.4.ebuild:
+ Version bump
12 Dec 2008; Christoph Mende <angelos@gentoo.org>
+files/gimmix-0.5.3-missing-prototypes.patch, +gimmix-0.5.3.ebuild:
diff --git a/media-sound/gimmix/gimmix-0.5.4.ebuild b/media-sound/gimmix/gimmix-0.5.4.ebuild
new file mode 100644
index 000000000000..80456a8679fb
--- /dev/null
+++ b/media-sound/gimmix/gimmix-0.5.4.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/gimmix/gimmix-0.5.4.ebuild,v 1.1 2009/01/01 10:04:01 angelos Exp $
+
+DESCRIPTION="a graphical music player daemon (MPD) client using GTK+2"
+HOMEPAGE="http://gimmix.berlios.de/"
+SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~sparc ~x86"
+IUSE="cover lyrics"
+
+RDEPEND=">=x11-libs/gtk+-2.6
+ >=gnome-base/libglade-2.6
+ >=media-libs/libmpd-0.12
+ >=media-libs/taglib-1.4
+ cover? ( net-libs/libnxml net-misc/curl )
+ lyrics? ( net-libs/libnxml net-misc/curl )"
+DEPEND="${RDEPEND}
+ >=dev-util/pkgconfig-0.9
+ dev-util/intltool"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+
+ echo "src/eggtrayicon.c" >> "${S}"/po/POTFILES.skip
+ echo "src/gimmix-covers.c" >> "${S}"/po/POTFILES.skip
+ echo "src/gimmix-lyrics.c" >> "${S}"/po/POTFILES.skip
+}
+
+src_compile() {
+ econf $(use_enable cover) $(use_enable lyrics)
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc AUTHORS ChangeLog NEWS README TODO
+}
+
+pkg_postinst() {
+ elog "gimmix-0.4 introduces a new config file format."
+ elog "If you're upgrading from an older version please"
+ elog "delete your ~/.gimmixrc before running gimmix."
+}