public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/lame: ChangeLog lame-3.98.2.ebuild
@ 2008-09-23 22:46 Peter Alfredsen (loki_val)
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Alfredsen (loki_val) @ 2008-09-23 22:46 UTC (permalink / raw
  To: gentoo-commits

loki_val    08/09/23 22:46:29

  Modified:             ChangeLog
  Added:                lame-3.98.2.ebuild
  Log:
  Bump to 3.98.2, bug 238443. Drop a bunch of patches that were merged upstream.
  (Portage version: 2.2_rc8/cvs/Linux 2.6.25.8 i686)

Revision  Changes    Path
1.102                media-sound/lame/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	8 Aug 2008 08:29:25 -0000	1.101
+++ ChangeLog	23 Sep 2008 22:46:29 -0000	1.102
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/lame
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.101 2008/08/08 08:29:25 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.102 2008/09/23 22:46:29 loki_val Exp $
+
+*lame-3.98.2 (23 Sep 2008)
+
+  23 Sep 2008; Peter Alfredsen <loki_val@gentoo.org> +lame-3.98.2.ebuild:
+  Bump to 3.98.2, bug 238443. Drop a bunch of patches that were merged
+  upstream.
 
   08 Aug 2008; Alexis Ballier <aballier@gentoo.org>
   +files/lame-3.98-echo.patch, lame-3.98.ebuild:



1.1                  media-sound/lame/lame-3.98.2.ebuild

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

Index: lame-3.98.2.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.98.2.ebuild,v 1.1 2008/09/23 22:46:29 loki_val Exp $

inherit flag-o-matic toolchain-funcs eutils autotools versionator

DESCRIPTION="LAME Ain't an MP3 Encoder"
HOMEPAGE="http://lame.sourceforge.net"

MY_PV=$(replace_version_separator 1 '')
[ ${MY_PV/.} = ${MY_PV} ] || MY_PV=$(replace_version_separator 1 '-' ${MY_PV})
S=${WORKDIR}/${PN}-${MY_PV}
SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="debug mmx mp3rtp sndfile"

RDEPEND=">=sys-libs/ncurses-5.2
	sndfile? ( >=media-libs/libsndfile-1.0.2 )"
DEPEND="${RDEPEND}
	dev-util/pkgconfig
	mmx? ( dev-lang/nasm )"

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

	# The frontened tries to link staticly, but we prefer shared libs
	epatch "${FILESDIR}"/${PN}-3.98-shared-frontend.patch

	# If ccc (alpha compiler) is installed on the system, the default
	# configure is broken, fix it to respect CC.  This is only
	# directly broken for ARCH=alpha but would affect anybody with a
	# ccc binary in their PATH.  Bug #41908  (26 Jul 2004 agriffis)
	epatch "${FILESDIR}"/${PN}-3.96-ccc.patch

	# Patch gtk stuff, otherwise eautoreconf dies
	epatch "${FILESDIR}"/${PN}-3.98-gtk-path.patch

	# It fails parallel make otherwise when enabling nasm...
	mkdir "${S}/libmp3lame/i386/.libs" || die

	AT_M4DIR="${S}" eautoreconf
	epunt_cxx # embedded bug #74498
}

src_compile() {
	use sndfile && myconf="--with-fileio=sndfile"
	# The user sets compiler optimizations... But if you'd like
	# lame to choose it's own... uncomment one of these (experiMENTAL)
	# myconf="${myconf} --enable-expopt=full \
	# myconf="${myconf} --enable-expopt=norm \

	econf \
		--enable-shared \
		$(use_enable debug debug norm) \
		--disable-mp3x \
		$(use_enable mmx nasm) \
		$(use_enable mp3rtp) \
		${myconf} || die "econf failed"

	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" pkghtmldir="/usr/share/doc/${PF}/html" install || die

	dodoc API ChangeLog HACKING README* STYLEGUIDE TODO USAGE || die
	dohtml misc/lameGUI.html Dll/LameDLLInterface.htm || die

	dobin "${S}"/misc/mlame || die
}

pkg_postinst(){
	if use mp3rtp ; then
	    ewarn "Warning, support for the encode-to-RTP program, 'mp3rtp'"
	    ewarn "is broken as of August 2001."
	    ewarn " "
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in media-sound/lame: ChangeLog lame-3.98.2.ebuild
@ 2008-11-12  5:37 Joseph Jezak (josejx)
  0 siblings, 0 replies; 3+ messages in thread
From: Joseph Jezak (josejx) @ 2008-11-12  5:37 UTC (permalink / raw
  To: gentoo-commits

josejx      08/11/12 05:37:10

  Modified:             ChangeLog lame-3.98.2.ebuild
  Log:
  Marked ppc/ppc64 stable for bug #246219.
  (Portage version: 2.1.4.5)

Revision  Changes    Path
1.106                media-sound/lame/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	11 Nov 2008 22:26:59 -0000	1.105
+++ ChangeLog	12 Nov 2008 05:37:10 -0000	1.106
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lame
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.105 2008/11/11 22:26:59 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.106 2008/11/12 05:37:10 josejx Exp $
+
+  12 Nov 2008; Joseph Jezak <josejx@gentoo.org> lame-3.98.2.ebuild:
+  Marked ppc/ppc64 stable for bug #246219.
 
   11 Nov 2008; Jeremy Olexa <darkside@gentoo.org> lame-3.98.2.ebuild:
   amd64 stable, bug 246219



1.4                  media-sound/lame/lame-3.98.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lame/lame-3.98.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lame/lame-3.98.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lame/lame-3.98.2.ebuild?r1=1.3&r2=1.4

Index: lame-3.98.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.98.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- lame-3.98.2.ebuild	11 Nov 2008 22:26:59 -0000	1.3
+++ lame-3.98.2.ebuild	12 Nov 2008 05:37:10 -0000	1.4
@@ -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/lame/lame-3.98.2.ebuild,v 1.3 2008/11/11 22:26:59 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.98.2.ebuild,v 1.4 2008/11/12 05:37:10 josejx Exp $
 
 inherit flag-o-matic toolchain-funcs eutils autotools versionator
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~sh sparc ~x86 ~x86-fbsd"
 IUSE="debug mmx mp3rtp sndfile"
 
 RDEPEND=">=sys-libs/ncurses-5.2






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

* [gentoo-commits] gentoo-x86 commit in media-sound/lame: ChangeLog lame-3.98.2.ebuild
@ 2008-11-14 12:25 Raul Porcel (armin76)
  0 siblings, 0 replies; 3+ messages in thread
From: Raul Porcel (armin76) @ 2008-11-14 12:25 UTC (permalink / raw
  To: gentoo-commits

armin76     08/11/14 12:25:17

  Modified:             ChangeLog lame-3.98.2.ebuild
  Log:
  alpha/arm/ia64/sh/x86 stable wrt #246219
  (Portage version: 2.1.4.5)

Revision  Changes    Path
1.108                media-sound/lame/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog	14 Nov 2008 04:01:54 -0000	1.107
+++ ChangeLog	14 Nov 2008 12:25:16 -0000	1.108
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lame
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.107 2008/11/14 04:01:54 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.108 2008/11/14 12:25:16 armin76 Exp $
+
+  14 Nov 2008; Raúl Porcel <armin76@gentoo.org> lame-3.98.2.ebuild:
+  alpha/arm/ia64/sh/x86 stable wrt #246219
 
   14 Nov 2008; Jeroen Roovers <jer@gentoo.org> lame-3.98.2.ebuild:
   Stable for HPPA (bug #246219).



1.6                  media-sound/lame/lame-3.98.2.ebuild

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

Index: lame-3.98.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.98.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- lame-3.98.2.ebuild	14 Nov 2008 04:01:54 -0000	1.5
+++ lame-3.98.2.ebuild	14 Nov 2008 12:25:16 -0000	1.6
@@ -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/lame/lame-3.98.2.ebuild,v 1.5 2008/11/14 04:01:54 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.98.2.ebuild,v 1.6 2008/11/14 12:25:16 armin76 Exp $
 
 inherit flag-o-matic toolchain-funcs eutils autotools versionator
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sh sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd"
 IUSE="debug mmx mp3rtp sndfile"
 
 RDEPEND=">=sys-libs/ncurses-5.2






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

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

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-12  5:37 [gentoo-commits] gentoo-x86 commit in media-sound/lame: ChangeLog lame-3.98.2.ebuild Joseph Jezak (josejx)
  -- strict thread matches above, loose matches on Subject: below --
2008-11-14 12:25 Raul Porcel (armin76)
2008-09-23 22:46 Peter Alfredsen (loki_val)

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