Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
drac 07/09/18 14:37:36
Modified: ChangeLog
Added: mpg123-0.67.ebuild
Removed: mpg123-0.61.ebuild
Log:
Version bump wrt #192925 and add new optimization options altivec, 3dnowext, sse.
(Portage version: 2.1.3.9)
Revision Changes Path
1.119 media-sound/mpg123/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg123/ChangeLog?rev=1.119&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg123/ChangeLog?rev=1.119&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg123/ChangeLog?r1=1.118&r2=1.119
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog 29 Jul 2007 18:55:58 -0000 1.118
+++ ChangeLog 18 Sep 2007 14:37:36 -0000 1.119
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/mpg123
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.118 2007/07/29 18:55:58 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.119 2007/09/18 14:37:36 drac Exp $
+
+*mpg123-0.67 (18 Sep 2007)
+
+ 18 Sep 2007; Samuli Suominen <drac@g.o> +mpg123-0.67.ebuild:
+ Version bump for bug 192925, thanks to Polynomial-C.
29 Jul 2007; Raúl Porcel <armin76@g.o> mpg123-0.65.ebuild:
ia64 stable wrt #113414
1.1 media-sound/mpg123/mpg123-0.67.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg123/mpg123-0.67.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg123/mpg123-0.67.ebuild?rev=1.1&content-type=text/plain
Index: mpg123-0.67.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/mpg123-0.67.ebuild,v 1.1 2007/09/18 14:37:36 drac Exp $
inherit eutils
DESCRIPTION="Real Time mp3 player"
HOMEPAGE="http://www.mpg123.de"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="3dnow 3dnowext alsa altivec esd jack mmx nas oss sdl sse portaudio"
RDEPEND="alsa? ( media-libs/alsa-lib )
sdl? ( !alsa? ( !oss? ( media-libs/libsdl ) ) )
esd? ( !alsa? ( !oss? ( !sdl? ( media-sound/esound ) ) ) )
nas? ( !alsa? ( !oss? ( !sdl? ( !esd? ( media-libs/nas ) ) ) ) )
jack? ( !alsa? ( !oss? ( !sdl? ( !esd? ( !nas? ( media-sound/jack-audio-connection-kit ) ) ) ) ) )
portaudio? ( !alsa? ( !oss? ( !sdl? ( !esd? ( !nas? ( !jack? ( media-libs/portaudio ) ) ) ) ) ) )"
DEPEND="${RDEPEND}"
PROVIDE="virtual/mpg123"
src_compile() {
local audiodev
if use alsa; then
audiodev="alsa"
elif use oss; then
audiodev="oss"
elif use sdl; then
audiodev="sdl"
elif use esd; then
audiodev="esd"
elif use nas; then
audiodev="nas"
elif use jack; then
audiodev="jack"
elif use portaudio; then
audiodev="portaudio";
else audiodev="dummy"
fi
if use altivec; then
myconf="--with-cpu=altivec"
elif use 3dnowext; then
myconf="--with-cpu=3dnowext"
elif use 3dnow; then
myconf="--with-cpu=3dnow"
elif use sse; then
myconf="--with-cpu=sse"
elif use mmx; then
myconf="--with-cpu=mmx"
fi
elog "Compiling with ${audiodev} audio output."
elog "If that is not what you want, then select exactly ONE"
elog "of the following USE flags:"
elog "alsa oss sdl esd nas jack portaudio"
elog "and recompile ${PN}."
epause 5
econf --with-optimization=0 \
--with-audio=${audiodev} \
${myconf} || die "econf failed."
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README
}
--
gentoo-commits@g.o mailing list
|
|