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.3.4.ebuild
@ 2011-02-27 15:20 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Faulhammer (fauli) @ 2011-02-27 15:20 UTC (permalink / raw
  To: gentoo-commits

fauli       11/02/27 15:20:37

  Modified:             ChangeLog
  Added:                cmus-2.3.4.ebuild
  Log:
  version bump, fixes bug 356667 by radhermit
  
  (Portage version: 2.1.9.40/cvs/Linux i686)

Revision  Changes    Path
1.40                 media-sound/cmus/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	12 Oct 2010 10:33:08 -0000	1.39
+++ ChangeLog	27 Feb 2011 15:20:37 -0000	1.40
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/cmus
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v 1.39 2010/10/12 10:33:08 fauli Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v 1.40 2011/02/27 15:20:37 fauli Exp $
+
+*cmus-2.3.4 (27 Feb 2011)
+
+  27 Feb 2011; Christian Faulhammer <fauli@gentoo.org> +cmus-2.3.4.ebuild:
+  version bump, fixes bug 356667 by radhermit
 
   12 Oct 2010; Christian Faulhammer <fauli@gentoo.org> metadata.xml:
   remove zsh-completion USE flag description as it is the same as the global



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

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

Index: cmus-2.3.4.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.3.4.ebuild,v 1.1 2011/02/27 15:20:37 fauli Exp $

EAPI=2
inherit 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? ( >=media-video/ffmpeg-0.4.9_p20080326 )"
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=y || 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] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/cmus: ChangeLog cmus-2.3.4.ebuild
@ 2011-04-23 22:09 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Faulhammer (fauli) @ 2011-04-23 22:09 UTC (permalink / raw
  To: gentoo-commits

fauli       11/04/23 22:09:02

  Modified:             ChangeLog cmus-2.3.4.ebuild
  Log:
  Fix configure handling of variables as pointed out by Johannes Weißl via email
  
  (Portage version: 2.1.9.42/cvs/Linux i686)

Revision  Changes    Path
1.43                 media-sound/cmus/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	10 Apr 2011 17:00:29 -0000	1.42
+++ ChangeLog	23 Apr 2011 22:09:02 -0000	1.43
@@ -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.42 2011/04/10 17:00:29 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v 1.43 2011/04/23 22:09:02 fauli Exp $
+
+  23 Apr 2011; Christian Faulhammer <fauli@gentoo.org> cmus-2.3.4.ebuild:
+  Fix configure handling of variables as pointed out by Johannes Weißl via
+  email
 
   10 Apr 2011; Christian Faulhammer <fauli@gentoo.org> cmus-2.3.2.ebuild,
   cmus-2.3.4.ebuild:



1.3                  media-sound/cmus/cmus-2.3.4.ebuild

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

Index: cmus-2.3.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/cmus/cmus-2.3.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cmus-2.3.4.ebuild	10 Apr 2011 17:00:29 -0000	1.2
+++ cmus-2.3.4.ebuild	23 Apr 2011 22:09:02 -0000	1.3
@@ -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.3.4.ebuild,v 1.2 2011/04/10 17:00:29 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/cmus-2.3.4.ebuild,v 1.3 2011/04/23 22:09:02 fauli Exp $
 
 EAPI=2
 inherit multilib
@@ -40,7 +40,7 @@
 
 my_config() {
 	local value
-	use ${1} && value=y || value=n
+	use ${1} && value=a || value=n
 	myconf="${myconf} ${2}=${value}"
 }
 






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

* [gentoo-commits] gentoo-x86 commit in media-sound/cmus: ChangeLog cmus-2.3.4.ebuild
@ 2011-04-23 22:22 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Faulhammer (fauli) @ 2011-04-23 22:22 UTC (permalink / raw
  To: gentoo-commits

fauli       11/04/23 22:22:48

  Modified:             ChangeLog cmus-2.3.4.ebuild
  Log:
  Fix detection of mp4.h as reported by Johannes Weißl via email
  
  (Portage version: 2.1.9.42/cvs/Linux i686)

Revision  Changes    Path
1.44                 media-sound/cmus/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	23 Apr 2011 22:09:02 -0000	1.43
+++ ChangeLog	23 Apr 2011 22:22:48 -0000	1.44
@@ -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.43 2011/04/23 22:09:02 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v 1.44 2011/04/23 22:22:48 fauli Exp $
+
+  23 Apr 2011; Christian Faulhammer <fauli@gentoo.org> cmus-2.3.4.ebuild,
+  +files/cmus-2.3.4-detect_mp4.h.patch:
+  Fix detection of mp4.h as reported by Johannes Weißl via email
 
   23 Apr 2011; Christian Faulhammer <fauli@gentoo.org> cmus-2.3.4.ebuild:
   Fix configure handling of variables as pointed out by Johannes Weißl via



1.4                  media-sound/cmus/cmus-2.3.4.ebuild

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

Index: cmus-2.3.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/cmus/cmus-2.3.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- cmus-2.3.4.ebuild	23 Apr 2011 22:09:02 -0000	1.3
+++ cmus-2.3.4.ebuild	23 Apr 2011 22:22:48 -0000	1.4
@@ -1,9 +1,9 @@
 # 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.3.4.ebuild,v 1.3 2011/04/23 22:09:02 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/cmus-2.3.4.ebuild,v 1.4 2011/04/23 22:22:48 fauli Exp $
 
-EAPI=2
-inherit multilib
+EAPI=4
+inherit eutils multilib
 
 MY_P=${PN}-v${PV}
 
@@ -44,6 +44,11 @@
 	myconf="${myconf} ${2}=${value}"
 }
 
+src_prepare() {
+	# reported upstream
+	epatch "${FILESDIR}"/${P}-detect_mp4.h.patch
+}
+
 src_configure() {
 	local debuglevel=1 myconf="CONFIG_ARTS=n CONFIG_SUN=n"
 






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

end of thread, other threads:[~2011-04-23 22:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-23 22:09 [gentoo-commits] gentoo-x86 commit in media-sound/cmus: ChangeLog cmus-2.3.4.ebuild Christian Faulhammer (fauli)
  -- strict thread matches above, loose matches on Subject: below --
2011-04-23 22:22 Christian Faulhammer (fauli)
2011-02-27 15:20 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