Gentoo Archives: gentoo-commits

From: "Sebastian Pipping (sping)" <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/mp3splt-gtk: mp3splt-gtk-0.7.0.920.ebuild ChangeLog
Date: Tue, 06 Sep 2011 22:35:10
Message-Id: 20110906223439.EB0E42004C@flycatcher.gentoo.org
1 sping 11/09/06 22:34:39
2
3 Modified: ChangeLog
4 Added: mp3splt-gtk-0.7.0.920.ebuild
5 Log:
6 media-libs/mp3splt-gtk: Bump to 0.7.0.920
7
8 (Portage version: 2.1.10.13/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.21 media-sound/mp3splt-gtk/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mp3splt-gtk/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mp3splt-gtk/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mp3splt-gtk/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/mp3splt-gtk/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 3 Aug 2011 21:35:24 -0000 1.20
24 +++ ChangeLog 6 Sep 2011 22:34:39 -0000 1.21
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-sound/mp3splt-gtk
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt-gtk/ChangeLog,v 1.20 2011/08/03 21:35:24 sping Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt-gtk/ChangeLog,v 1.21 2011/09/06 22:34:39 sping Exp $
30 +
31 +*mp3splt-gtk-0.7.0.920 (06 Sep 2011)
32 +
33 + 06 Sep 2011; Sebastian Pipping <sping@g.o>
34 + +mp3splt-gtk-0.7.0.920.ebuild:
35 + Bump to upstream's snapshot of SVN revision 920
36
37 03 Aug 2011; Sebastian Pipping <sping@g.o> mp3splt-gtk-0.7.ebuild,
38 +files/mp3splt-gtk-0.7-disable-docs.patch:
39
40
41
42 1.1 media-sound/mp3splt-gtk/mp3splt-gtk-0.7.0.920.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mp3splt-gtk/mp3splt-gtk-0.7.0.920.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mp3splt-gtk/mp3splt-gtk-0.7.0.920.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mp3splt-gtk-0.7.0.920.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt-gtk/mp3splt-gtk-0.7.0.920.ebuild,v 1.1 2011/09/06 22:34:39 sping Exp $
52
53 EAPI=2
54 inherit versionator autotools multilib
55
56 DESCRIPTION="a GTK+ based utility to split mp3 and ogg files without decoding."
57 HOMEPAGE="http://mp3splt.sourceforge.net"
58 SRC_URI="http://ioalex.net/testing_downloads/snapshots/$(get_version_component_range 4)/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="audacious doc gnome gstreamer nls"
64
65 # Audacious 3.x pulls in GTK+ 3.x which leads to compile errors
66 RDEPEND=">=x11-libs/gtk+-2.6:2
67 >=media-libs/libmp3splt-0.7.0.920
68 audacious? ( <media-sound/audacious-3.0 )
69 gstreamer? ( media-libs/gst-plugins-base:0.10 )
70 gnome? ( gnome-base/libgnomeui )"
71 DEPEND="${RDEPEND}
72 gnome? ( app-text/gnome-doc-utils app-text/rarian )
73 nls? ( sys-devel/gettext )"
74
75 src_prepare() {
76 if use audacious; then
77 sed -i \
78 -e 's:@AUDACIOUS_LIBS@:-laudclient &:' \
79 src/Makefile.am || die
80 fi
81
82 eautoreconf
83 }
84
85 src_configure() {
86 local myconf
87
88 use nls || myconf+=" --disable-nls"
89 use audacious || myconf+=" --disable-audacious"
90 use gstreamer || myconf+=" --disable-gstreamer"
91
92 econf \
93 --disable-dependency-tracking \
94 --with-mp3splt-libraries=/usr/$(get_libdir) \
95 --with-mp3splt-includes=/usr/include/libmp3splt \
96 $(use_enable gnome) \
97 $(use_enable doc doxygen_doc) \
98 ${myconf}
99 }
100
101 src_install() {
102 emake DESTDIR="${D}" install || die
103 dodoc AUTHORS ChangeLog NEWS README
104 }