public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/rezound: ChangeLog rezound-0.12.3_beta-r1.ebuild
@ 2007-12-30 12:34 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2007-12-30 12:34 UTC (permalink / raw
  To: gentoo-commits

aballier    07/12/30 12:34:05

  Modified:             ChangeLog
  Added:                rezound-0.12.3_beta-r1.ebuild
  Log:
  add a patch from Christian Schoenebeck <cuse@users.sourceforge.net>, bug #203471, to save raw files correctly
  (Portage version: 2.1.4_rc11)

Revision  Changes    Path
1.49                 media-sound/rezound/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/rezound/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	18 Nov 2007 20:24:28 -0000	1.48
+++ ChangeLog	30 Dec 2007 12:34:05 -0000	1.49
@@ -1,6 +1,13 @@
 # ChangeLog for media-sound/rezound
 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/rezound/ChangeLog,v 1.48 2007/11/18 20:24:28 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/rezound/ChangeLog,v 1.49 2007/12/30 12:34:05 aballier Exp $
+
+*rezound-0.12.3_beta-r1 (30 Dec 2007)
+
+  30 Dec 2007; Alexis Ballier <aballier@gentoo.org>
+  +rezound-0.12.3_beta-r1.ebuild:
+  add a patch from Christian Schoenebeck <cuse@users.sourceforge.net>, bug
+  #203471, to save raw files correctly
 
   18 Nov 2007; Alexis Ballier <aballier@gentoo.org>
   rezound-0.12.3_beta.ebuild:



1.1                  media-sound/rezound/rezound-0.12.3_beta-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/rezound/rezound-0.12.3_beta-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/rezound/rezound-0.12.3_beta-r1.ebuild?rev=1.1&content-type=text/plain

Index: rezound-0.12.3_beta-r1.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/rezound/rezound-0.12.3_beta-r1.ebuild,v 1.1 2007/12/30 12:34:05 aballier Exp $

WANT_AUTOMAKE=1.9
WANT_AUTOCONF=2.5

inherit eutils autotools

MY_P="${P/_/}"
S="${WORKDIR}/${MY_P}"

PATCHLEVEL="3"
DESCRIPTION="Sound editor and recorder"
HOMEPAGE="http://rezound.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz
	mirror://gentoo/${P}-patches-${PATCHLEVEL}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="16bittmp alsa flac jack nls oss portaudio soundtouch vorbis"

RDEPEND="=sci-libs/fftw-2*
	>=x11-libs/fox-1.6.19
	>=media-libs/audiofile-0.2.3
	>=media-libs/ladspa-sdk-1.12
	>=media-libs/ladspa-cmt-1.15
	alsa? ( >=media-libs/alsa-lib-1.0 )
	flac? ( >=media-libs/flac-1.1.2 )
	jack? ( media-sound/jack-audio-connection-kit )
	portaudio? ( >=media-libs/portaudio-18 )
	soundtouch? ( >=media-libs/libsoundtouch-1.2.1 )
	vorbis? ( media-libs/libvorbis media-libs/libogg )"

# optional packages (don't need to be installed during emerge):
#
# >=media-sound/lame-3.92
# app-cdr/cdrdao

DEPEND="${RDEPEND}
	sys-devel/bison
	sys-devel/flex"

pkg_setup() {
	if use flac && ! built_with_use --missing true media-libs/flac cxx; then
		eerror "To build ${PN} with flac support you need the C++ bindings for flac."
		eerror "Please enable the cxx USE flag for media-libs/flac"
		die "Missing FLAC C++ bindings."
	fi
}

src_unpack() {
	unpack ${A}
	cd "${S}"

	EPATCH_SUFFIX="patch" epatch "${WORKDIR}/patches"

	AT_M4DIR="config/m4" eautoreconf
}

src_compile() {
	# fix compilation errors on ppc, where some
	# of the required functions aren't defined
	use ppc && epatch "${FILESDIR}/undefined-functions.patch"

	# following features can't be disabled if already installed:
	# -> flac, oggvorbis, soundtouch
	local sampletype="--enable-internal-sample-type=float"
	use 16bittmp && sampletype="--enable-internal-sample-type=int16"

	econf \
		$(use_enable alsa) \
		$(use_enable jack) \
		$(use_enable nls) \
		$(use_enable oss) \
		$(use_enable portaudio) \
		$(use_enable flac) \
		$(use_enable vorbis) \
		$(use_enable soundtouch) \
		${sampletype} \
		--enable-ladspa \
		--enable-largefile \
		|| die "configure failed"

	emake || die "make failed"
}

src_install() {
	make DESTDIR="${D}" install || die "make install failed"

	# remove wrong doc directory
	rm -rf "${D}/usr/doc"

	dodoc docs/{AUTHORS,NEWS,README*}
	dodoc docs/{TODO_FOR_USERS_TO_READ,*.txt}
	newdoc README README.rezound

	docinto code
	dodoc docs/code/*
	newicon src/images/icon_logo_32.gif rezound.gif
	make_desktop_entry rezound Rezound rezound.gif AudioVideo
}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in media-sound/rezound: ChangeLog rezound-0.12.3_beta-r1.ebuild
@ 2008-12-03 22:25 Markus Meier (maekke)
  0 siblings, 0 replies; 2+ messages in thread
From: Markus Meier (maekke) @ 2008-12-03 22:25 UTC (permalink / raw
  To: gentoo-commits

maekke      08/12/03 22:25:30

  Modified:             ChangeLog rezound-0.12.3_beta-r1.ebuild
  Log:
  amd64/x86 stable, bug #245696
  (Portage version: 2.1.6_rc2/cvs/Linux 2.6.26.8 x86_64)

Revision  Changes    Path
1.56                 media-sound/rezound/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/rezound/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	10 Oct 2008 12:57:50 -0000	1.55
+++ ChangeLog	3 Dec 2008 22:25:30 -0000	1.56
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/rezound
 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/rezound/ChangeLog,v 1.55 2008/10/10 12:57:50 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/rezound/ChangeLog,v 1.56 2008/12/03 22:25:30 maekke Exp $
+
+  03 Dec 2008; Markus Meier <maekke@gentoo.org>
+  rezound-0.12.3_beta-r1.ebuild:
+  amd64/x86 stable, bug #245696
 
 *rezound-0.12.3_beta-r2 (10 Oct 2008)
 



1.7                  media-sound/rezound/rezound-0.12.3_beta-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/rezound/rezound-0.12.3_beta-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/rezound/rezound-0.12.3_beta-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/rezound/rezound-0.12.3_beta-r1.ebuild?r1=1.6&r2=1.7

Index: rezound-0.12.3_beta-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/rezound/rezound-0.12.3_beta-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rezound-0.12.3_beta-r1.ebuild	1 Jun 2008 23:19:21 -0000	1.6
+++ rezound-0.12.3_beta-r1.ebuild	3 Dec 2008 22:25:30 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/rezound/rezound-0.12.3_beta-r1.ebuild,v 1.6 2008/06/01 23:19:21 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/rezound/rezound-0.12.3_beta-r1.ebuild,v 1.7 2008/12/03 22:25:30 maekke Exp $
 
 inherit eutils autotools
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc -sparc ~x86"
+KEYWORDS="amd64 ~ppc -sparc x86"
 IUSE="16bittmp alsa flac jack nls oss portaudio soundtouch vorbis"
 
 RDEPEND="=sci-libs/fftw-2*






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

end of thread, other threads:[~2008-12-03 22:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-30 12:34 [gentoo-commits] gentoo-x86 commit in media-sound/rezound: ChangeLog rezound-0.12.3_beta-r1.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2008-12-03 22:25 Markus Meier (maekke)

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