public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/sox: ChangeLog sox-14.3.1.ebuild
@ 2010-04-29 11:46 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-04-29 11:46 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/04/29 11:46:59

  Modified:             ChangeLog sox-14.3.1.ebuild
  Log:
  Fix building with USE="-mad" wrt #317595 by Sergiy Borodych.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.119                media-sound/sox/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/sox/ChangeLog?rev=1.119&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/sox/ChangeLog?rev=1.119&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/sox/ChangeLog?r1=1.118&r2=1.119

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog	23 Apr 2010 12:18:17 -0000	1.118
+++ ChangeLog	29 Apr 2010 11:46:59 -0000	1.119
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/sox
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v 1.118 2010/04/23 12:18:17 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v 1.119 2010/04/29 11:46:59 ssuominen Exp $
+
+  29 Apr 2010; Samuli Suominen <ssuominen@gentoo.org> sox-14.3.1.ebuild,
+  +files/sox-14.3.1-nomad.patch:
+  Fix building with USE="-mad" wrt #317595 by Sergiy Borodych.
 
 *sox-14.3.1 (23 Apr 2010)
 



1.2                  media-sound/sox/sox-14.3.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/sox/sox-14.3.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/sox/sox-14.3.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/sox/sox-14.3.1.ebuild?r1=1.1&r2=1.2

Index: sox-14.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/sox/sox-14.3.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sox-14.3.1.ebuild	23 Apr 2010 12:18:17 -0000	1.1
+++ sox-14.3.1.ebuild	29 Apr 2010 11:46:59 -0000	1.2
@@ -1,8 +1,9 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/sox-14.3.1.ebuild,v 1.1 2010/04/23 12:18:17 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/sox-14.3.1.ebuild,v 1.2 2010/04/29 11:46:59 ssuominen Exp $
 
-inherit flag-o-matic
+EAPI=2
+inherit eutils flag-o-matic
 
 DESCRIPTION="The swiss army knife of sound processing programs"
 HOMEPAGE="http://sox.sourceforge.net"
@@ -13,7 +14,9 @@
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
 IUSE="alsa amr ao debug encode ffmpeg flac id3tag ladspa mad ogg oss png pulseaudio sndfile wavpack"
 
-RDEPEND="alsa? ( media-libs/alsa-lib )
+# libtool required for libltdl
+RDEPEND="sys-devel/libtool
+	alsa? ( media-libs/alsa-lib )
 	amr? ( media-libs/opencore-amr )
 	encode? ( media-sound/lame )
 	flac? ( media-libs/flac )
@@ -31,11 +34,16 @@
 DEPEND="${RDEPEND}
 	dev-util/pkgconfig"
 
-src_compile () {
+src_prepare() {
+	epatch "${FILESDIR}"/${P}-nomad.patch
+}
+
+src_configure() {
 	# Fixes wav segfaults. See Bug #35745.
 	append-flags -fsigned-char
 
-	econf $(use_with alsa) \
+	econf \
+		$(use_with alsa) \
 		$(use_enable debug) \
 		$(use_with ao) \
 		$(use_with oss) \
@@ -53,11 +61,9 @@
 		$(use_with pulseaudio) \
 		$(use_with wavpack) \
 		--with-distro="Gentoo"
-
-	emake || die "emake failed."
 }
 
 src_install() {
-	emake DESTDIR="${D}" install || die "emake install failed."
+	emake DESTDIR="${D}" install || die
 	dodoc NEWS ChangeLog README AUTHORS
 }






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

* [gentoo-commits] gentoo-x86 commit in media-sound/sox: ChangeLog sox-14.3.1.ebuild
@ 2011-02-16 15:54 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2011-02-16 15:54 UTC (permalink / raw
  To: gentoo-commits

aballier    11/02/16 15:54:19

  Modified:             ChangeLog sox-14.3.1.ebuild
  Log:
  fix build with libpng 1.5
  
  (Portage version: 2.2.0_alpha24/cvs/Linux x86_64)

Revision  Changes    Path
1.121                media-sound/sox/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog	29 Apr 2010 12:02:15 -0000	1.120
+++ ChangeLog	16 Feb 2011 15:54:18 -0000	1.121
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/sox
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v 1.120 2010/04/29 12:02:15 ssuominen Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v 1.121 2011/02/16 15:54:18 aballier Exp $
+
+  16 Feb 2011; Alexis Ballier <aballier@gentoo.org> sox-14.3.1.ebuild,
+  +files/sox-14.3.1-libpng15.patch:
+  fix build with libpng 1.5
 
   29 Apr 2010; Samuli Suominen <ssuominen@gentoo.org> sox-14.3.0.ebuild:
   Fix commit that was made 29 Dec 2009 to stabilize sox-14.3.0 for sparc.



1.3                  media-sound/sox/sox-14.3.1.ebuild

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

Index: sox-14.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/sox/sox-14.3.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sox-14.3.1.ebuild	29 Apr 2010 11:46:59 -0000	1.2
+++ sox-14.3.1.ebuild	16 Feb 2011 15:54:18 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/sox-14.3.1.ebuild,v 1.2 2010/04/29 11:46:59 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/sox-14.3.1.ebuild,v 1.3 2011/02/16 15:54:18 aballier Exp $
 
 EAPI=2
 inherit eutils flag-o-matic
@@ -28,7 +28,7 @@
 	ladspa? ( media-libs/ladspa-sdk )
 	>=media-sound/gsm-1.0.12-r1
 	id3tag? ( media-libs/libid3tag )
-	png? ( media-libs/libpng )
+	png? ( media-libs/libpng sys-libs/zlib )
 	pulseaudio? ( media-sound/pulseaudio )
 	wavpack? ( media-sound/wavpack )"
 DEPEND="${RDEPEND}
@@ -36,6 +36,7 @@
 
 src_prepare() {
 	epatch "${FILESDIR}"/${P}-nomad.patch
+	epatch "${FILESDIR}"/${P}-libpng15.patch
 }
 
 src_configure() {






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

end of thread, other threads:[~2011-02-16 15:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-16 15:54 [gentoo-commits] gentoo-x86 commit in media-sound/sox: ChangeLog sox-14.3.1.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2010-04-29 11:46 Samuli Suominen (ssuominen)

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