Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/archfs: ChangeLog archfs-0.5.6b.ebuild
Date: Thu, 25 Feb 2010 19:46:36
Message-Id: E1NkjfM-0001LL-Ik@stork.gentoo.org
1 jer 10/02/25 19:46:32
2
3 Modified: ChangeLog
4 Added: archfs-0.5.6b.ebuild
5 Log:
6 Version bump, thanks to hrknf on Freenode for noticing.
7 (Portage version: 2.2_rc63/cvs/Linux i686)
8
9 Revision Changes Path
10 1.3 sys-fs/archfs/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/archfs/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/archfs/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/archfs/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/archfs/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 14 Oct 2007 09:39:26 -0000 1.2
23 +++ ChangeLog 25 Feb 2010 19:46:32 -0000 1.3
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-fs/archfs
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/archfs/ChangeLog,v 1.2 2007/10/14 09:39:26 jokey Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/archfs/ChangeLog,v 1.3 2010/02/25 19:46:32 jer Exp $
30 +
31 +*archfs-0.5.6b (25 Feb 2010)
32 +
33 + 25 Feb 2010; Jeroen Roovers <jer@g.o> +archfs-0.5.6b.ebuild:
34 + Version bump, thanks to hrknf on Freenode for noticing.
35
36 14 Oct 2007; Markus Ullmann <jokey@g.o> archfs-0.5.1.ebuild:
37 Add rdiff-backup to RDEPEND
38
39
40
41 1.1 sys-fs/archfs/archfs-0.5.6b.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/archfs/archfs-0.5.6b.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/archfs/archfs-0.5.6b.ebuild?rev=1.1&content-type=text/plain
45
46 Index: archfs-0.5.6b.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-fs/archfs/archfs-0.5.6b.ebuild,v 1.1 2010/02/25 19:46:32 jer Exp $
51
52 EAPI="2"
53
54 inherit autotools
55
56 DESCRIPTION="Filesystem for rdiff-backup'ed folders"
57 HOMEPAGE="http://code.google.com/p/archfs"
58 SRC_URI="http://archfs.googlecode.com/files/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~x86"
63 IUSE=""
64
65 DEPEND="sys-fs/fuse"
66 RDEPEND="${DEPEND}
67 app-backup/rdiff-backup"
68
69 S="${WORKDIR}/${P/b}"
70
71 src_prepare() {
72 sed -i configure.ac \
73 -e 's|-Wall -O3|-Wall|g' \
74 -e 's| -lfuse||g' \
75 -e 's|CFLAGS|INCLUDES|g' \
76 -e 's|LDFLAGS|LIBS|g' \
77 || die "sed failed"
78 eautoreconf
79 }
80
81 src_install() {
82 emake DESTDIR="${D}" install || die "emake install failed"
83 dodoc AUTHORS ChangeLog NEWS
84 }