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/squashfs-tools: ChangeLog squashfs-tools-3.4.ebuild
Date: Thu, 28 Aug 2008 03:36:04
Message-Id: E1KYYIi-0004m9-LS@stork.gentoo.org
1 jer 08/08/28 03:36:00
2
3 Modified: ChangeLog
4 Added: squashfs-tools-3.4.ebuild
5 Log:
6 Version bump (bug #235867).
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.25-gentoo-r7-JeR i686)
8
9 Revision Changes Path
10 1.56 sys-fs/squashfs-tools/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/squashfs-tools/ChangeLog?rev=1.56&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/squashfs-tools/ChangeLog?rev=1.56&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/squashfs-tools/ChangeLog?r1=1.55&r2=1.56
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/ChangeLog,v
19 retrieving revision 1.55
20 retrieving revision 1.56
21 diff -u -r1.55 -r1.56
22 --- ChangeLog 28 Jun 2008 09:13:48 -0000 1.55
23 +++ ChangeLog 28 Aug 2008 03:36:00 -0000 1.56
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-fs/squashfs-tools
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/ChangeLog,v 1.55 2008/06/28 09:13:48 wolf31o2 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/ChangeLog,v 1.56 2008/08/28 03:36:00 jer Exp $
29 +
30 +*squashfs-tools-3.4 (28 Aug 2008)
31 +
32 + 28 Aug 2008; Jeroen Roovers <jer@g.o> +squashfs-tools-3.4.ebuild:
33 + Version bump (bug #235867).
34
35 28 Jun 2008; Chris Gianelloni <wolf31o2@g.o>
36 squashfs-tools-3.2_p2.ebuild, squashfs-tools-3.3.ebuild:
37
38
39
40 1.1 sys-fs/squashfs-tools/squashfs-tools-3.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/squashfs-tools/squashfs-tools-3.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/squashfs-tools/squashfs-tools-3.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: squashfs-tools-3.4.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/squashfs-tools-3.4.ebuild,v 1.1 2008/08/28 03:36:00 jer Exp $
50
51 inherit toolchain-funcs
52
53 MY_PV=${PV/_p/-r}
54 DESCRIPTION="Tool for creating compressed filesystem type squashfs"
55 HOMEPAGE="http://squashfs.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/squashfs/squashfs${MY_PV}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
61 IUSE=""
62
63 RDEPEND="sys-libs/zlib"
64
65 S=${WORKDIR}/squashfs${PV/_p/-r}/squashfs-tools
66
67 src_unpack() {
68 unpack ${A}
69 cd "${S}"
70 sed -i \
71 -e "s:-O2:${CFLAGS}:" \
72 -e 's:$(CC):$(CC) ${LDFLAGS}:' \
73 Makefile || die "sed failed"
74 }
75
76 src_compile() {
77 emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" || die
78 }
79
80 src_install() {
81 dobin mksquashfs unsquashfs || die
82 cd ..
83 dodoc README ACKNOWLEDGEMENTS CHANGES PERFORMANCE.README README
84 }
85
86 pkg_postinst() {
87 ewarn "This version of mksquashfs requires a 2.6.24 kernel or better."
88 }