public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/ecasound: ChangeLog ecasound-2.5.2-r1.ebuild
@ 2008-09-29  5:55 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 2+ messages in thread
From: Diego Petteno (flameeyes) @ 2008-09-29  5:55 UTC (permalink / raw
  To: gentoo-commits

flameeyes    08/09/29 05:55:27

  Modified:             ChangeLog
  Added:                ecasound-2.5.2-r1.ebuild
  Log:
  Add a new revision using EAPI=2 and USE dependencies.
  (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 x86_64)

Revision  Changes    Path
1.48                 media-sound/ecasound/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	29 Aug 2008 07:30:24 -0000	1.47
+++ ChangeLog	29 Sep 2008 05:55:27 -0000	1.48
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/ecasound
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v 1.47 2008/08/29 07:30:24 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v 1.48 2008/09/29 05:55:27 flameeyes Exp $
+
+*ecasound-2.5.2-r1 (29 Sep 2008)
+
+  29 Sep 2008; Diego Pettenò <flameeyes@gentoo.org>
+  +ecasound-2.5.2-r1.ebuild:
+  Add a new revision using EAPI=2 and USE dependencies.
 
 *ecasound-2.5.2 (29 Aug 2008)
 



1.1                  media-sound/ecasound/ecasound-2.5.2-r1.ebuild

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

Index: ecasound-2.5.2-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.5.2-r1.ebuild,v 1.1 2008/09/29 05:55:27 flameeyes Exp $

EAPI=2

inherit eutils multilib python

DESCRIPTION="a package for multitrack audio processing"
HOMEPAGE="http://ecasound.seul.org/ecasound"
SRC_URI="http://${PN}.seul.org/download/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="1"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="alsa arts audiofile debug doc jack libsamplerate mikmod ncurses vorbis oss python ruby sndfile"

DEPEND="python? ( dev-lang/python )
	jack? ( media-sound/jack-audio-connection-kit )
	media-libs/ladspa-sdk
	audiofile? ( media-libs/audiofile )
	alsa? ( media-libs/alsa-lib[midi] )
	vorbis? ( media-libs/libvorbis )
	arts? ( kde-base/arts )
	libsamplerate? ( media-libs/libsamplerate )
	mikmod? ( media-libs/libmikmod )
	ruby? ( dev-lang/ruby )
	python? ( dev-lang/python )
	ncurses? ( sys-libs/ncurses )
	sndfile? ( media-libs/libsndfile )
	sys-libs/readline"

src_compile() {
	local PYConf

	if use python; then
		python_version
		PYConf="--enable-pyecasound=c
			--with-python-includes=/usr/include/python${PYVER}
			--with-python-modules=/usr/$(get_libdir)/python${PYVER}"
	else
		PYConf="$myconf --disable-pyecasound"
	fi

	econf $(use_enable alsa) \
		$(use_enable arts) \
		$(use_enable audiofile) \
		$(use_enable debug) \
		$(use_enable jack) \
		$(use_enable libsamplerate) \
		$(use_enable ncurses) \
		$(use_enable oss) \
		$(use_enable ruby rubyecasound) \
		$(use_enable sndfile) \
		--enable-shared \
		--with-largefile \
		--enable-sys-readline \
		${PYConf} || die "econf failed"

	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed."
	dodoc BUGS NEWS README TODO Documentation/*.txt
	use doc && dohtml Documentation/*.html
}

pkg_postinst() {
	if use python; then
		ebegin "Byte-compiling ${CATEGORY}/${PF} python modules"
		python_version
		local PYMODULE
		for PYMODULE in ecacontrol.py pyeca.py eci.py; do
			python_mod_compile /usr/$(get_libdir)/python${PYVER}/site-packages/${PYMODULE}
		done
		eend $?
	fi
	if use arts; then
		ewarn "WARNING: You have requested ecasound ARTS support,"
		ewarn "this is no longer supported and will go away in"
		ewarn "future releases."
	fi
}

pkg_postrm() {
	python_mod_cleanup
}






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

* [gentoo-commits] gentoo-x86 commit in media-sound/ecasound: ChangeLog ecasound-2.5.2-r1.ebuild
@ 2008-09-29  9:05 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 2+ messages in thread
From: Diego Petteno (flameeyes) @ 2008-09-29  9:05 UTC (permalink / raw
  To: gentoo-commits

flameeyes    08/09/29 09:05:40

  Modified:             ChangeLog ecasound-2.5.2-r1.ebuild
  Log:
  Avoid double econf run with EAPI=2.
  (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 x86_64)

Revision  Changes    Path
1.49                 media-sound/ecasound/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	29 Sep 2008 05:55:27 -0000	1.48
+++ ChangeLog	29 Sep 2008 09:05:39 -0000	1.49
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/ecasound
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v 1.48 2008/09/29 05:55:27 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v 1.49 2008/09/29 09:05:39 flameeyes Exp $
+
+  29 Sep 2008; Diego Pettenò <flameeyes@gentoo.org>
+  ecasound-2.5.2-r1.ebuild:
+  Avoid double econf run with EAPI=2.
 
 *ecasound-2.5.2-r1 (29 Sep 2008)
 



1.2                  media-sound/ecasound/ecasound-2.5.2-r1.ebuild

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

Index: ecasound-2.5.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.5.2-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ecasound-2.5.2-r1.ebuild	29 Sep 2008 05:55:27 -0000	1.1
+++ ecasound-2.5.2-r1.ebuild	29 Sep 2008 09:05:39 -0000	1.2
@@ -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/ecasound/ecasound-2.5.2-r1.ebuild,v 1.1 2008/09/29 05:55:27 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.5.2-r1.ebuild,v 1.2 2008/09/29 09:05:39 flameeyes Exp $
 
 EAPI=2
 
@@ -30,7 +30,7 @@
 	sndfile? ( media-libs/libsndfile )
 	sys-libs/readline"
 
-src_compile() {
+src_configure() {
 	local PYConf
 
 	if use python; then
@@ -56,8 +56,6 @@
 		--with-largefile \
 		--enable-sys-readline \
 		${PYConf} || die "econf failed"
-
-	emake || die "emake failed"
 }
 
 src_install() {






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

end of thread, other threads:[~2008-09-29  9:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-29  5:55 [gentoo-commits] gentoo-x86 commit in media-sound/ecasound: ChangeLog ecasound-2.5.2-r1.ebuild Diego Petteno (flameeyes)
  -- strict thread matches above, loose matches on Subject: below --
2008-09-29  9:05 Diego Petteno (flameeyes)

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