Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/mpg123: ChangeLog mpg123-0.67.ebuild mpg123-0.61.ebuild
Date: Tue, 18 Sep 2007 14:45:21
Message-Id: E1IXeCm-0001xw-ME@stork.gentoo.org
1 drac 07/09/18 14:37:36
2
3 Modified: ChangeLog
4 Added: mpg123-0.67.ebuild
5 Removed: mpg123-0.61.ebuild
6 Log:
7 Version bump wrt #192925 and add new optimization options altivec, 3dnowext, sse.
8 (Portage version: 2.1.3.9)
9
10 Revision Changes Path
11 1.119 media-sound/mpg123/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg123/ChangeLog?rev=1.119&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg123/ChangeLog?rev=1.119&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg123/ChangeLog?r1=1.118&r2=1.119
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v
20 retrieving revision 1.118
21 retrieving revision 1.119
22 diff -u -r1.118 -r1.119
23 --- ChangeLog 29 Jul 2007 18:55:58 -0000 1.118
24 +++ ChangeLog 18 Sep 2007 14:37:36 -0000 1.119
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/mpg123
27 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.118 2007/07/29 18:55:58 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.119 2007/09/18 14:37:36 drac Exp $
30 +
31 +*mpg123-0.67 (18 Sep 2007)
32 +
33 + 18 Sep 2007; Samuli Suominen <drac@g.o> +mpg123-0.67.ebuild:
34 + Version bump for bug 192925, thanks to Polynomial-C.
35
36 29 Jul 2007; Raúl Porcel <armin76@g.o> mpg123-0.65.ebuild:
37 ia64 stable wrt #113414
38
39
40
41 1.1 media-sound/mpg123/mpg123-0.67.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg123/mpg123-0.67.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpg123/mpg123-0.67.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mpg123-0.67.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/mpg123-0.67.ebuild,v 1.1 2007/09/18 14:37:36 drac Exp $
51
52 inherit eutils
53
54 DESCRIPTION="Real Time mp3 player"
55 HOMEPAGE="http://www.mpg123.de"
56 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
57
58 LICENSE="GPL-2 LGPL-2.1"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
61 IUSE="3dnow 3dnowext alsa altivec esd jack mmx nas oss sdl sse portaudio"
62
63 RDEPEND="alsa? ( media-libs/alsa-lib )
64 sdl? ( !alsa? ( !oss? ( media-libs/libsdl ) ) )
65 esd? ( !alsa? ( !oss? ( !sdl? ( media-sound/esound ) ) ) )
66 nas? ( !alsa? ( !oss? ( !sdl? ( !esd? ( media-libs/nas ) ) ) ) )
67 jack? ( !alsa? ( !oss? ( !sdl? ( !esd? ( !nas? ( media-sound/jack-audio-connection-kit ) ) ) ) ) )
68 portaudio? ( !alsa? ( !oss? ( !sdl? ( !esd? ( !nas? ( !jack? ( media-libs/portaudio ) ) ) ) ) ) )"
69 DEPEND="${RDEPEND}"
70
71 PROVIDE="virtual/mpg123"
72
73 src_compile() {
74 local audiodev
75 if use alsa; then
76 audiodev="alsa"
77 elif use oss; then
78 audiodev="oss"
79 elif use sdl; then
80 audiodev="sdl"
81 elif use esd; then
82 audiodev="esd"
83 elif use nas; then
84 audiodev="nas"
85 elif use jack; then
86 audiodev="jack"
87 elif use portaudio; then
88 audiodev="portaudio";
89 else audiodev="dummy"
90 fi
91
92 if use altivec; then
93 myconf="--with-cpu=altivec"
94 elif use 3dnowext; then
95 myconf="--with-cpu=3dnowext"
96 elif use 3dnow; then
97 myconf="--with-cpu=3dnow"
98 elif use sse; then
99 myconf="--with-cpu=sse"
100 elif use mmx; then
101 myconf="--with-cpu=mmx"
102 fi
103
104 elog "Compiling with ${audiodev} audio output."
105 elog "If that is not what you want, then select exactly ONE"
106 elog "of the following USE flags:"
107 elog "alsa oss sdl esd nas jack portaudio"
108 elog "and recompile ${PN}."
109 epause 5
110
111 econf --with-optimization=0 \
112 --with-audio=${audiodev} \
113 ${myconf} || die "econf failed."
114
115 emake || die "emake failed."
116 }
117
118 src_install() {
119 emake DESTDIR="${D}" install || die "emake install failed."
120 dodoc AUTHORS ChangeLog NEWS README
121 }
122
123
124
125 --
126 gentoo-commits@g.o mailing list