public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/cmus: ChangeLog cmus-2.4.0.ebuild
@ 2011-04-25 12:55 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 2+ messages in thread
From: Christian Faulhammer (fauli) @ 2011-04-25 12:55 UTC (permalink / raw
  To: gentoo-commits

fauli       11/04/25 12:55:59

  Modified:             ChangeLog
  Added:                cmus-2.4.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.1.9.42/cvs/Linux i686)

Revision  Changes    Path
1.45                 media-sound/cmus/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cmus/ChangeLog?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cmus/ChangeLog?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cmus/ChangeLog?r1=1.44&r2=1.45

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	23 Apr 2011 22:22:48 -0000	1.44
+++ ChangeLog	25 Apr 2011 12:55:59 -0000	1.45
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/cmus
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v 1.44 2011/04/23 22:22:48 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v 1.45 2011/04/25 12:55:59 fauli Exp $
+
+*cmus-2.4.0 (25 Apr 2011)
+
+  25 Apr 2011; Christian Faulhammer <fauli@gentoo.org> +cmus-2.4.0.ebuild:
+  version bump
 
   23 Apr 2011; Christian Faulhammer <fauli@gentoo.org> cmus-2.3.4.ebuild,
   +files/cmus-2.3.4-detect_mp4.h.patch:



1.1                  media-sound/cmus/cmus-2.4.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cmus/cmus-2.4.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cmus/cmus-2.4.0.ebuild?rev=1.1&content-type=text/plain

Index: cmus-2.4.0.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/cmus-2.4.0.ebuild,v 1.1 2011/04/25 12:55:59 fauli Exp $

EAPI=4
inherit eutils multilib

MY_P=${PN}-v${PV}

DESCRIPTION="A ncurses based music player with plugin support for many formats"
HOMEPAGE="http://cmus.sourceforge.net/"
SRC_URI="mirror://sourceforge/cmus/${MY_P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="aac alsa ao debug examples flac mad mikmod modplug mp4 musepack oss
pidgin pulseaudio unicode vorbis wavpack wma zsh-completion"

DEPEND="sys-libs/ncurses[unicode?]
	aac? ( media-libs/faad2 )
	alsa? ( >=media-libs/alsa-lib-1.0.11 )
	ao? (  media-libs/libao )
	flac? ( media-libs/flac )
	mad? ( >=media-libs/libmad-0.14 )
	mikmod? ( media-libs/libmikmod )
	modplug? ( >=media-libs/libmodplug-0.7 )
	mp4? ( >=media-libs/libmp4v2-1.9 )
	musepack? ( >=media-sound/musepack-tools-444 )
	pulseaudio? ( media-sound/pulseaudio )
	vorbis? ( >=media-libs/libvorbis-1.0 )
	wavpack? ( media-sound/wavpack )
	wma? ( virtual/ffmpeg )"
RDEPEND="${DEPEND}
	zsh-completion? ( app-shells/zsh )
	pidgin? ( net-im/pidgin
		dev-python/dbus-python )"

S=${WORKDIR}/${MY_P}

my_config() {
	local value
	use ${1} && value=a || value=n
	myconf="${myconf} ${2}=${value}"
}

src_configure() {
	local debuglevel=1 myconf="CONFIG_ARTS=n CONFIG_SUN=n"

	use debug && debuglevel=2

	my_config flac CONFIG_FLAC
	my_config mad CONFIG_MAD
	my_config modplug CONFIG_MODPLUG
	my_config mikmod CONFIG_MIKMOD
	my_config musepack CONFIG_MPC
	my_config vorbis CONFIG_VORBIS
	my_config wavpack CONFIG_WAVPACK
	my_config mp4 CONFIG_MP4
	my_config aac CONFIG_AAC
	my_config wma CONFIG_FFMPEG
	my_config pulseaudio CONFIG_PULSE
	my_config alsa CONFIG_ALSA
	my_config ao CONFIG_AO
	my_config oss CONFIG_OSS

	./configure prefix=/usr ${myconf} exampledir=/usr/share/doc/${PF}/examples \
		libdir=/usr/$(get_libdir) DEBUG=${debuglevel} || die
}

src_install() {
	emake DESTDIR="${D}" install || die
	dodoc AUTHORS README TODO

	use examples || rm -rf "${D}"/usr/share/doc/${PF}/examples

	if use zsh-completion; then
		insinto /usr/share/zsh/site-functions
		doins contrib/_cmus || die
	fi

	if use pidgin; then
		newbin contrib/cmus-updatepidgin.py cmus-updatepidgin || die
	fi
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/cmus: ChangeLog cmus-2.4.0.ebuild
@ 2011-07-10  7:30 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 2+ messages in thread
From: Christian Faulhammer (fauli) @ 2011-07-10  7:30 UTC (permalink / raw
  To: gentoo-commits

fauli       11/07/10 07:30:52

  Modified:             ChangeLog cmus-2.4.0.ebuild
  Log:
  Add dev-util/pkgconfig to DEPEND as reported in bug 373755 by nzqr <candysnell DOT ya DOT ru>
  
  (Portage version: 2.1.10.3/cvs/Linux i686)

Revision  Changes    Path
1.46                 media-sound/cmus/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cmus/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cmus/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cmus/ChangeLog?r1=1.45&r2=1.46

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	25 Apr 2011 12:55:59 -0000	1.45
+++ ChangeLog	10 Jul 2011 07:30:52 -0000	1.46
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/cmus
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v 1.45 2011/04/25 12:55:59 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v 1.46 2011/07/10 07:30:52 fauli Exp $
+
+  10 Jul 2011; Christian Faulhammer <fauli@gentoo.org> cmus-2.4.0.ebuild:
+  Add dev-util/pkgconfig to DEPEND as reported in bug 373755 by nzqr
+  <candysnell DOT ya DOT ru>
 
 *cmus-2.4.0 (25 Apr 2011)
 



1.2                  media-sound/cmus/cmus-2.4.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cmus/cmus-2.4.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cmus/cmus-2.4.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cmus/cmus-2.4.0.ebuild?r1=1.1&r2=1.2

Index: cmus-2.4.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/cmus/cmus-2.4.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cmus-2.4.0.ebuild	25 Apr 2011 12:55:59 -0000	1.1
+++ cmus-2.4.0.ebuild	10 Jul 2011 07:30:52 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/cmus-2.4.0.ebuild,v 1.1 2011/04/25 12:55:59 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/cmus-2.4.0.ebuild,v 1.2 2011/07/10 07:30:52 fauli Exp $
 
 EAPI=4
 inherit eutils multilib
@@ -17,7 +17,7 @@
 IUSE="aac alsa ao debug examples flac mad mikmod modplug mp4 musepack oss
 pidgin pulseaudio unicode vorbis wavpack wma zsh-completion"
 
-DEPEND="sys-libs/ncurses[unicode?]
+CDEPEND="sys-libs/ncurses[unicode?]
 	aac? ( media-libs/faad2 )
 	alsa? ( >=media-libs/alsa-lib-1.0.11 )
 	ao? (  media-libs/libao )
@@ -31,7 +31,9 @@
 	vorbis? ( >=media-libs/libvorbis-1.0 )
 	wavpack? ( media-sound/wavpack )
 	wma? ( virtual/ffmpeg )"
-RDEPEND="${DEPEND}
+DEPEND="${CDEPEND}
+	dev-util/pkgconfig"
+RDEPEND="${CDEPEND}
 	zsh-completion? ( app-shells/zsh )
 	pidgin? ( net-im/pidgin
 		dev-python/dbus-python )"






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-07-10  7:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-25 12:55 [gentoo-commits] gentoo-x86 commit in media-sound/cmus: ChangeLog cmus-2.4.0.ebuild Christian Faulhammer (fauli)
  -- strict thread matches above, loose matches on Subject: below --
2011-07-10  7:30 Christian Faulhammer (fauli)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox