Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/avfs: ChangeLog avfs-1.0.2.ebuild
Date: Sun, 31 Aug 2014 06:11:18
Message-Id: 20140831061113.0D4F6451F@oystercatcher.gentoo.org
1 radhermit 14/08/31 06:11:13
2
3 Modified: ChangeLog
4 Added: avfs-1.0.2.ebuild
5 Log:
6 Version bump (bug #516866).
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4F064CA3)
9
10 Revision Changes Path
11 1.51 sys-fs/avfs/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/avfs/ChangeLog?rev=1.51&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/avfs/ChangeLog?rev=1.51&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/avfs/ChangeLog?r1=1.50&r2=1.51
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-fs/avfs/ChangeLog,v
20 retrieving revision 1.50
21 retrieving revision 1.51
22 diff -u -r1.50 -r1.51
23 --- ChangeLog 10 Aug 2014 20:19:19 -0000 1.50
24 +++ ChangeLog 31 Aug 2014 06:11:12 -0000 1.51
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-fs/avfs
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/avfs/ChangeLog,v 1.50 2014/08/10 20:19:19 slyfox Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/avfs/ChangeLog,v 1.51 2014/08/31 06:11:12 radhermit Exp $
30 +
31 +*avfs-1.0.2 (31 Aug 2014)
32 +
33 + 31 Aug 2014; Tim Harder <radhermit@g.o> +avfs-1.0.2.ebuild:
34 + Version bump (bug #516866).
35
36 10 Aug 2014; Sergei Trofimovich <slyfox@g.o> avfs-1.0.1.ebuild:
37 QA: drop trailing '.' from DESCRIPTION
38
39
40
41 1.1 sys-fs/avfs/avfs-1.0.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/avfs/avfs-1.0.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/avfs/avfs-1.0.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: avfs-1.0.2.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-fs/avfs/avfs-1.0.2.ebuild,v 1.1 2014/08/31 06:11:13 radhermit Exp $
51
52 EAPI=5
53 inherit eutils
54
55 DESCRIPTION="AVFS is a virtual filesystem that allows browsing of compressed files"
56 HOMEPAGE="http://sourceforge.net/projects/avf"
57 SRC_URI="mirror://sourceforge/avf/${P}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
62 IUSE="static-libs +lzma"
63
64 RDEPEND=">=sys-fs/fuse-2.4
65 sys-libs/zlib
66 app-arch/bzip2
67 lzma? ( app-arch/xz-utils )"
68 DEPEND="${RDEPEND}
69 virtual/pkgconfig"
70
71 src_configure() {
72 econf \
73 --enable-fuse \
74 --enable-library \
75 --enable-shared \
76 --with-system-zlib \
77 --with-system-bzlib \
78 $(use_enable static-libs static) \
79 $(use_with lzma xz)
80 }
81
82 src_install() {
83 default
84
85 # remove cruft
86 rm "${D}"/usr/bin/{davpass,ftppass} || die
87
88 # install docs
89 dodoc doc/{api-overview,background,FORMAT,INSTALL.*,README.avfs-fuse}
90 dosym /usr/lib/avfs/extfs/README /usr/share/doc/${PF}/README.extfs
91
92 docinto scripts
93 dodoc scripts/{avfscoda*,*pass}
94
95 prune_libtool_files
96 }
97
98 pkg_postinst() {
99 einfo "This version of AVFS includes FUSE support. It is user-based."
100 einfo "To execute:"
101 einfo "1) as user, mkdir ~/.avfs"
102 einfo "2) make sure fuse is either compiled into the kernel OR"
103 einfo " modprobe fuse or add to startup."
104 einfo "3) run mountavfs"
105 einfo "To unload daemon, type umountavfs"
106 einfo
107 einfo "READ the documentation! Enjoy :)"
108 }