Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/easytag: ChangeLog easytag-2.1.6-r2.ebuild
Date: Fri, 10 Jul 2009 11:24:45
Message-Id: E1MPEDb-0001bd-Nn@stork.gentoo.org
1 ssuominen 09/07/10 11:24:43
2
3 Modified: ChangeLog
4 Added: easytag-2.1.6-r2.ebuild
5 Log:
6 Revision bump to drop usage of obsolete libmp4v2 from mpeg4ip package.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.130 media-sound/easytag/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/easytag/ChangeLog?rev=1.130&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/easytag/ChangeLog?rev=1.130&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/easytag/ChangeLog?r1=1.129&r2=1.130
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v
19 retrieving revision 1.129
20 retrieving revision 1.130
21 diff -u -r1.129 -r1.130
22 --- ChangeLog 25 Jun 2009 18:02:46 -0000 1.129
23 +++ ChangeLog 10 Jul 2009 11:24:43 -0000 1.130
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-sound/easytag
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.129 2009/06/25 18:02:46 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.130 2009/07/10 11:24:43 ssuominen Exp $
29 +
30 +*easytag-2.1.6-r2 (10 Jul 2009)
31 +
32 + 10 Jul 2009; Samuli Suominen <ssuominen@g.o>
33 + +easytag-2.1.6-r2.ebuild:
34 + Revision bump to drop usage of obsolete libmp4v2 from mpeg4ip package.
35
36 25 Jun 2009; Raúl Porcel <armin76@g.o> easytag-2.1.6-r1.ebuild:
37 sparc stable wrt #272966
38
39
40
41 1.1 media-sound/easytag/easytag-2.1.6-r2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/easytag/easytag-2.1.6-r2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/easytag/easytag-2.1.6-r2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: easytag-2.1.6-r2.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/easytag-2.1.6-r2.ebuild,v 1.1 2009/07/10 11:24:43 ssuominen Exp $
51
52 EAPI=2
53 inherit eutils fdo-mime
54
55 DESCRIPTION="GTK+ utility for editing MP2, MP3, MP4, FLAC, Ogg and other media tags"
56 HOMEPAGE="http://easytag.sourceforge.net"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="flac mp3 speex vorbis wavpack"
63
64 RDEPEND=">=x11-libs/gtk+-2.12:2
65 mp3? ( >=media-libs/id3lib-3.8.3-r7
66 media-libs/libid3tag )
67 flac? ( media-libs/flac
68 media-libs/libvorbis )
69 vorbis? ( media-libs/libvorbis )
70 wavpack? ( media-sound/wavpack )
71 speex? ( media-libs/speex
72 media-libs/libvorbis )"
73 DEPEND="${RDEPEND}
74 dev-util/pkgconfig
75 sys-devel/gettext"
76
77 src_prepare() {
78 epatch "${FILESDIR}"/${P}-desktop_entry.patch
79 }
80
81 src_configure() {
82 econf \
83 $(use_enable mp3) \
84 $(use_enable mp3 id3v23) \
85 $(use_enable vorbis ogg) \
86 $(use_enable flac) \
87 --disable-mp4 \
88 $(use_enable wavpack) \
89 $(use_enable speex)
90 }
91
92 src_install() {
93 emake DESTDIR="${D}" install || die "emake install failed"
94 dodoc ChangeLog README THANKS TODO USERS-GUIDE
95 }
96
97 pkg_postinst() { fdo-mime_desktop_database_update; }
98 pkg_postrm() { fdo-mime_desktop_database_update; }