Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/avfs: ChangeLog avfs-0.9.8-r1.ebuild
Date: Sun, 01 Mar 2009 20:09:49
Message-Id: E1Ldryt-0001SA-2f@stork.gentoo.org
1 patrick 09/03/01 20:09:47
2
3 Modified: ChangeLog
4 Added: avfs-0.9.8-r1.ebuild
5 Log:
6 Fix for gcc 4.3.3 / fortify_sources. Patch by Romain Perier.
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.18 sys-fs/avfs/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/avfs/ChangeLog?rev=1.18&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/avfs/ChangeLog?rev=1.18&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/avfs/ChangeLog?r1=1.17&r2=1.18
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/avfs/ChangeLog,v
19 retrieving revision 1.17
20 retrieving revision 1.18
21 diff -u -r1.17 -r1.18
22 --- ChangeLog 5 Jul 2008 09:36:48 -0000 1.17
23 +++ ChangeLog 1 Mar 2009 20:09:46 -0000 1.18
24 @@ -1,6 +1,13 @@
25 # ChangeLog for sys-fs/avfs
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/avfs/ChangeLog,v 1.17 2008/07/05 09:36:48 dertobi123 Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/avfs/ChangeLog,v 1.18 2009/03/01 20:09:46 patrick Exp $
30 +
31 +*avfs-0.9.8-r1 (01 Mar 2009)
32 +
33 + 01 Mar 2009; Patrick Lauer <patrick@g.o>
34 + +files/avfs-0.9.8-gcc43_fix_open_missing_mode.patch,
35 + +avfs-0.9.8-r1.ebuild:
36 + Fix for gcc 4.3.3 / fortify_sources. Patch by Romain Perier.
37
38 05 Jul 2008; Tobias Scherbaum <dertobi123@g.o> avfs-0.9.8.ebuild:
39 ppc stable, bug #230531
40
41
42
43 1.1 sys-fs/avfs/avfs-0.9.8-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/avfs/avfs-0.9.8-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/avfs/avfs-0.9.8-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: avfs-0.9.8-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-fs/avfs/avfs-0.9.8-r1.ebuild,v 1.1 2009/03/01 20:09:46 patrick Exp $
53
54 inherit eutils linux-info
55
56 DESCRIPTION="AVFS is a virtual filesystem that allows browsing of compressed files."
57 HOMEPAGE="http://sourceforge.net/projects/avf"
58 SRC_URI="mirror://sourceforge/avf/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
63
64 DEPEND=">=sys-fs/fuse-2.4"
65 RDEPEND="${DEPEND}"
66
67 IUSE=""
68
69 pkg_setup() {
70 kernel_is lt 2 6 && die "Must have a version 2.6 kernel. Cannot continue. :("
71 }
72
73 src_compile() {
74 # Fixs bug #258295
75 epatch "${FILESDIR}/${P}-gcc43_fix_open_missing_mode.patch"
76 econf --enable-fuse --enable-library || die "Sorry, can't configure :("
77 emake || die "Sorry make failed :("
78 }
79
80 src_install() {
81 einstall || die "Sorry, make install failed :("
82 # remove cruft
83 dobin scripts/avfs-config
84 cd "${D}"/usr
85 rm -f bin/davpass bin/ftppass
86 rm -fr sbin ../etc
87 cd "${S}"
88 cd doc
89 dodoc api-overview background FORMAT INSTALL.* README.avfs-fuse
90 cd ..
91 dodoc AUTHORS ChangeLog COPYING* INSTALL NEWS README TODO
92 docinto scripts
93 dodoc scripts/avfs* scripts/*pass scripts/*mountavfs
94 dosym /usr/lib/avfs/extfs/README /usr/share/doc/${PF}/README.extfs
95 }
96
97 pkg_postinst() {
98 einfo "This version of AVFS includes FUSE support. It is user-based."
99 einfo "To execute:"
100 einfo "1) as user, mkdir ~/.avfs"
101 einfo "2) make sure fuse is either compiled into the kernel OR"
102 einfo " modprobe fuse or add to startup."
103 einfo "3) run mountavfs"
104 einfo "To unload daemon, type umountavfs"
105 echo
106 einfo "READ the documentation! Enjoy :)"
107 }