Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/mtpfs: mtpfs-1.1.ebuild ChangeLog
Date: Wed, 29 Feb 2012 13:07:44
Message-Id: 20120229130727.B04D92004B@flycatcher.gentoo.org
1 voyageur 12/02/29 13:07:27
2
3 Modified: ChangeLog
4 Added: mtpfs-1.1.ebuild
5 Log:
6 Version bump, adds support for multiple storage areas
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 sys-fs/mtpfs/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 15 Feb 2012 00:20:41 -0000 1.3
24 +++ ChangeLog 29 Feb 2012 13:07:27 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-fs/mtpfs
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/ChangeLog,v 1.3 2012/02/15 00:20:41 voyageur Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/ChangeLog,v 1.4 2012/02/29 13:07:27 voyageur Exp $
30 +
31 +*mtpfs-1.1 (29 Feb 2012)
32 +
33 + 29 Feb 2012; Bernard Cafarelli <voyageur@g.o> +mtpfs-1.1.ebuild:
34 + Version bump, adds support for multiple storage areas
35
36 *mtpfs-1.0 (15 Feb 2012)
37
38
39
40
41 1.1 sys-fs/mtpfs/mtpfs-1.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/mtpfs-1.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/mtpfs-1.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mtpfs-1.1.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/mtpfs-1.1.ebuild,v 1.1 2012/02/29 13:07:27 voyageur Exp $
51
52 EAPI=4
53
54 DESCRIPTION="A FUSE filesystem providing access to MTP devices"
55 HOMEPAGE="http://www.adebenham.com/mtpfs/"
56 SRC_URI="http://www.adebenham.com/files/mtp/${P}.tar.gz"
57
58 LICENSE="GPL-3"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="debug"
62
63 DEPEND="dev-libs/glib:2
64 media-libs/libid3tag
65 media-libs/libmad
66 >=media-libs/libmtp-1.1.2
67 sys-fs/fuse"
68 RDEPEND="${DEPEND}"
69
70 DOCS=(AUTHORS NEWS README)
71
72 src_configure() {
73 econf $(use_enable debug)
74 }
75
76 pkg_postinst() {
77 einfo "To mount your MTP device, issue:"
78 einfo " /usr/bin/mtpfs <mountpoint>"
79 echo
80 einfo "To unmount your MTP device, issue:"
81 einfo " /usr/bin/fusermount -u <mountpoint>"
82
83 if use debug; then
84 echo
85 einfo "You have enabled debugging output."
86 einfo "Please make sure you run mtpfs with the -d flag."
87 fi
88 }