Gentoo Archives: gentoo-commits

From: "Santiago M. Mola (coldwind)" <coldwind@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/picard: ChangeLog picard-0.9.0.ebuild picard-0.9.0_alpha14.ebuild
Date: Sun, 23 Dec 2007 22:13:08
Message-Id: E1J6Z4B-0000H9-CA@stork.gentoo.org
1 coldwind 07/12/23 22:13:03
2
3 Modified: ChangeLog
4 Added: picard-0.9.0.ebuild
5 Removed: picard-0.9.0_alpha14.ebuild
6 Log:
7 Version bump and remove old alpha, #203177 thanks to Marti Raudsepp.
8 (Portage version: 2.1.3.19)
9
10 Revision Changes Path
11 1.5 media-sound/picard/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 28 Oct 2007 17:24:35 -0000 1.4
24 +++ ChangeLog 23 Dec 2007 22:13:02 -0000 1.5
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-sound/picard
27 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.4 2007/10/28 17:24:35 coldwind Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.5 2007/12/23 22:13:02 coldwind Exp $
30 +
31 +*picard-0.9.0 (23 Dec 2007)
32 +
33 + 23 Dec 2007; Santiago M. Mola <coldwind@g.o>
34 + -files/picard-0.9.0_alpha14-disable-locales.patch,
35 + -picard-0.9.0_alpha14.ebuild, +picard-0.9.0.ebuild:
36 + Version bump and remove old alpha, #203177 thanks to Marti Raudsepp.
37
38 *picard-0.9.0_beta1 (28 Oct 2007)
39
40
41
42
43 1.1 media-sound/picard/picard-0.9.0.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/picard-0.9.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/picard-0.9.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: picard-0.9.0.ebuild
49 ===================================================================
50 # Copyright 1999-2007 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-sound/picard/picard-0.9.0.ebuild,v 1.1 2007/12/23 22:13:02 coldwind Exp $
53
54 inherit eutils distutils
55
56 DESCRIPTION="An improved rewrite/port of the Picard Tagger using Qt"
57 HOMEPAGE="http://musicbrainz.org/doc/PicardQt"
58 SRC_URI="http://ftp.musicbrainz.org/pub/musicbrainz/picard/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="cdaudio ffmpeg nls"
64
65 RDEPEND=">=dev-lang/python-2.4
66 || ( >=dev-lang/python-2.5 >=dev-python/ctypes-0.9 )
67 >=dev-python/PyQt4-4.2
68 >=x11-libs/qt-4.2
69 >=media-libs/mutagen-1.9
70 cdaudio? ( >=media-libs/libdiscid-0.1.1 )
71 ffmpeg? ( >=media-video/ffmpeg-0.4.9
72 >=media-libs/libofa-0.9.2 )"
73
74 DEPEND="${RDEPEND}"
75
76 DOCS="AUTHORS.txt INSTALL.txt NEWS.txt"
77
78 pkg_setup() {
79 if ! use ffmpeg; then
80 ewarn "The 'ffmpeg' USE flag is disabled. Acoustic fingerprinting and"
81 ewarn "recognition will not be available."
82 fi
83 if ! use cdaudio; then
84 ewarn "The 'cdaudio' USE flag is disabled. CD index lookup and"
85 ewarn "identification will not be available. You can get audio CD support"
86 ewarn "by installing media-libs/libdiscid."
87 fi
88
89 }
90
91 src_compile() {
92 ${python} setup.py config || die "setup.py config failed"
93 if ! use ffmpeg; then
94 sed -i -e "s:\(^with-avcodec\ =\ \).*:\1False:" \
95 -e "s:\(^with-libofa\ =\ \).*:\1False:" \
96 build.cfg || die "sed failed"
97 fi
98 ${python} setup.py build $(use nls || echo "--disable-locales") \
99 || die "setup.py build failed"
100 }
101
102 src_install() {
103 distutils_src_install --disable-autoupdate --skip-build \
104 $(use nls || echo "--disable-locales")
105 }
106
107 pkg_postinst() {
108 distutils_pkg_postinst
109 echo
110 elog "You should set the environment variable BROWSER to something like"
111 elog "\"firefox '%s' &\" to let python know which browser to use."
112 }
113
114
115
116 --
117 gentoo-commits@g.o mailing list