Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/mtpfs: mtpfs-1.1.ebuild metadata.xml ChangeLog
Date: Wed, 29 Feb 2012 16:03:32
Message-Id: 20120229160321.A0CD02004B@flycatcher.gentoo.org
1 xarthisius 12/02/29 16:03:21
2
3 Modified: mtpfs-1.1.ebuild metadata.xml ChangeLog
4 Log:
5 Dependency on libmad and libid3tag is now optional
6
7 (Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 sys-fs/mtpfs/mtpfs-1.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/mtpfs-1.1.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/mtpfs-1.1.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/mtpfs-1.1.ebuild?r1=1.2&r2=1.3
15
16 Index: mtpfs-1.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/mtpfs-1.1.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- mtpfs-1.1.ebuild 29 Feb 2012 15:50:47 -0000 1.2
23 +++ mtpfs-1.1.ebuild 29 Feb 2012 16:03:21 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/mtpfs-1.1.ebuild,v 1.2 2012/02/29 15:50:47 xarthisius Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/mtpfs-1.1.ebuild,v 1.3 2012/02/29 16:03:21 xarthisius Exp $
29
30 EAPI=4
31
32 @@ -11,13 +11,15 @@
33 LICENSE="GPL-3"
34 SLOT="0"
35 KEYWORDS="~amd64 ~x86"
36 -IUSE="debug"
37 +IUSE="debug mad"
38
39 DEPEND="dev-libs/glib:2
40 - media-libs/libid3tag
41 - media-libs/libmad
42 >=media-libs/libmtp-1.1.2
43 - sys-fs/fuse"
44 + sys-fs/fuse
45 + mad? (
46 + media-libs/libid3tag
47 + media-libs/libmad
48 + )"
49 RDEPEND="${DEPEND}"
50
51 DOCS=(AUTHORS NEWS README)
52 @@ -28,7 +30,8 @@
53 }
54
55 src_configure() {
56 - econf $(use_enable debug)
57 + econf $(use_enable debug) \
58 + $(use_enable mad)
59 }
60
61 pkg_postinst() {
62
63
64
65 1.4 sys-fs/mtpfs/metadata.xml
66
67 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/metadata.xml?rev=1.4&view=markup
68 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/metadata.xml?rev=1.4&content-type=text/plain
69 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/metadata.xml?r1=1.3&r2=1.4
70
71 Index: metadata.xml
72 ===================================================================
73 RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/metadata.xml,v
74 retrieving revision 1.3
75 retrieving revision 1.4
76 diff -u -r1.3 -r1.4
77 --- metadata.xml 24 Sep 2011 10:37:24 -0000 1.3
78 +++ metadata.xml 29 Feb 2012 16:03:21 -0000 1.4
79 @@ -14,4 +14,7 @@
80 MTP device, as supported by libmtp. MTPfs includes extra features such
81 as playlist and meta information support for MP3 players.
82 </longdescription>
83 + <use>
84 + <flag name='mad'>Enable handling of MP3's metadata</flag>
85 + </use>
86 </pkgmetadata>
87
88
89
90 1.6 sys-fs/mtpfs/ChangeLog
91
92 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/ChangeLog?rev=1.6&view=markup
93 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/ChangeLog?rev=1.6&content-type=text/plain
94 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/ChangeLog?r1=1.5&r2=1.6
95
96 Index: ChangeLog
97 ===================================================================
98 RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/ChangeLog,v
99 retrieving revision 1.5
100 retrieving revision 1.6
101 diff -u -r1.5 -r1.6
102 --- ChangeLog 29 Feb 2012 15:50:47 -0000 1.5
103 +++ ChangeLog 29 Feb 2012 16:03:21 -0000 1.6
104 @@ -1,6 +1,10 @@
105 # ChangeLog for sys-fs/mtpfs
106 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
107 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/ChangeLog,v 1.5 2012/02/29 15:50:47 xarthisius Exp $
108 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/ChangeLog,v 1.6 2012/02/29 16:03:21 xarthisius Exp $
109 +
110 + 29 Feb 2012; Kacper Kowalik <xarthisius@g.o> metadata.xml,
111 + mtpfs-1.1.ebuild:
112 + Dependency on libmad and libid3tag is now optional
113
114 29 Feb 2012; Kacper Kowalik <xarthisius@g.o> mtpfs-1.0.ebuild,
115 mtpfs-1.1.ebuild: