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: metadata.xml ChangeLog mtpfs-0.9.ebuild
Date: Thu, 30 Jun 2011 10:16:32
Message-Id: 20110630101621.9A3BA20057@flycatcher.gentoo.org
1 xarthisius 11/06/30 10:16:21
2
3 Added: metadata.xml ChangeLog mtpfs-0.9.ebuild
4 Log:
5 Initial import wrt bug 189304, thanks to everyone involved
6
7 (Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sys-fs/mtpfs/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>no-herd</herd>
21 <maintainer>
22 <email>xarthisius@g.o</email>
23 <name>Kacper Kowalik</name>
24 </maintainer>
25 <longdescription>
26 MTPfs is a FUSE filesystem that supports reading and writing from any
27 MTP device, as supported by libmtp. MTPfs includes extra features such
28 as playlist and meta information support for MP3 players.
29 </longdescription>
30 </pkgmetadata>
31
32
33
34 1.1 sys-fs/mtpfs/ChangeLog
35
36 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/ChangeLog?rev=1.1&view=markup
37 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/ChangeLog?rev=1.1&content-type=text/plain
38
39 Index: ChangeLog
40 ===================================================================
41 # ChangeLog for sys-fs/mtpfs
42 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
43 # $Header: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/ChangeLog,v 1.1 2011/06/30 10:16:21 xarthisius Exp $
44
45 *mtpfs-0.9 (30 Jun 2011)
46
47 30 Jun 2011; Kacper Kowalik <xarthisius@g.o> +mtpfs-0.9.ebuild,
48 +files/mtpfs-0.9-overflow.patch, +metadata.xml:
49 Initial import wrt bug 189304, thanks to everyone involved
50
51
52
53
54 1.1 sys-fs/mtpfs/mtpfs-0.9.ebuild
55
56 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/mtpfs-0.9.ebuild?rev=1.1&view=markup
57 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtpfs/mtpfs-0.9.ebuild?rev=1.1&content-type=text/plain
58
59 Index: mtpfs-0.9.ebuild
60 ===================================================================
61 # Copyright 1999-2011 Gentoo Foundation
62 # Distributed under the terms of the GNU General Public License v2
63 # $Header: /var/cvsroot/gentoo-x86/sys-fs/mtpfs/mtpfs-0.9.ebuild,v 1.1 2011/06/30 10:16:21 xarthisius Exp $
64
65 EAPI=4
66
67 inherit base
68
69 DESCRIPTION="A FUSE filesystem providing access to MTP devices"
70 HOMEPAGE="http://www.adebenham.com/mtpfs/"
71 SRC_URI="http://www.adebenham.com/debian/${P/-/_}.orig.tar.gz"
72
73 LICENSE="GPL-3"
74 SLOT="0"
75 KEYWORDS="~amd64 ~x86"
76 IUSE="debug"
77
78 DEPEND="dev-libs/glib:2
79 media-libs/libid3tag
80 media-libs/libmad
81 media-libs/libmtp
82 sys-fs/fuse"
83 RDEPEND="${DEPEND}"
84
85 S=${WORKDIR}/${P}.orig
86
87 PATCHES=( "${FILESDIR}"/${P}-overflow.patch )
88 DOCS=(AUTHORS NEWS README)
89
90 src_configure() {
91 econf $(use_enable debug)
92 }
93
94 pkg_postinst() {
95 einfo "To mount your MTP device, issue:"
96 einfo " /usr/bin/mtpfs <mountpoint>"
97 echo
98 einfo "To unmount your MTP device, issue:"
99 einfo " /usr/bin/fusermount -u <mountpoint>"
100
101 if use debug; then
102 echo
103 einfo "You have enabled debugging output."
104 einfo "Please make sure you run mtpfs with the -d flag."
105 fi
106 }