Gentoo Archives: gentoo-commits

From: "Ned Ludd (solar)" <solar@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/squashfs-tools: ChangeLog squashfs-tools-3.3.ebuild
Date: Sun, 30 Dec 2007 19:00:10
Message-Id: E1J93OG-0005vo-G9@stork.gentoo.org
1 solar 07/12/30 19:00:04
2
3 Modified: ChangeLog
4 Added: squashfs-tools-3.3.ebuild
5 Log:
6 - Version bump.. get_nprocs() is a glibc only function and there is no reason to use it when sysconf(_SC_NPROCESSORS_CONF) exists. Also fixed some format mistakes.
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.52 sys-fs/squashfs-tools/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/squashfs-tools/ChangeLog?rev=1.52&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/squashfs-tools/ChangeLog?rev=1.52&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/squashfs-tools/ChangeLog?r1=1.51&r2=1.52
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/ChangeLog,v
19 retrieving revision 1.51
20 retrieving revision 1.52
21 diff -u -r1.51 -r1.52
22 --- ChangeLog 6 Nov 2007 22:54:24 -0000 1.51
23 +++ ChangeLog 30 Dec 2007 19:00:03 -0000 1.52
24 @@ -1,6 +1,14 @@
25 # ChangeLog for sys-fs/squashfs-tools
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/ChangeLog,v 1.51 2007/11/06 22:54:24 wolf31o2 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/ChangeLog,v 1.52 2007/12/30 19:00:03 solar Exp $
29 +
30 +*squashfs-tools-3.3 (30 Dec 2007)
31 +
32 + 30 Dec 2007; <solar@g.o> +files/squashfs-tools-3.3-posix.patch,
33 + +squashfs-tools-3.3.ebuild:
34 + - Version bump.. get_nprocs() is a glibc only function and there is no
35 + reason to use it when sysconf(_SC_NPROCESSORS_CONF) exists. Also fixed some
36 + format mistakes.
37
38 06 Nov 2007; Chris Gianelloni <wolf31o2@g.o>
39 squashfs-tools-3.2_p2.ebuild:
40
41
42
43 1.1 sys-fs/squashfs-tools/squashfs-tools-3.3.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/squashfs-tools/squashfs-tools-3.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/squashfs-tools/squashfs-tools-3.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: squashfs-tools-3.3.ebuild
49 ===================================================================
50 # Copyright 1999-2007 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/squashfs-tools-3.3.ebuild,v 1.1 2007/12/30 19:00:03 solar Exp $
53
54 inherit eutils toolchain-funcs
55
56 MY_PV=${PV/_p/-r}
57 DESCRIPTION="Tool for creating compressed filesystem type squashfs"
58 HOMEPAGE="http://squashfs.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/squashfs/squashfs${MY_PV}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
64 IUSE=""
65
66 RDEPEND="sys-libs/zlib"
67
68 S=${WORKDIR}/squashfs${PV/_p/-r}/squashfs-tools
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73 sed -i "s:-O2:${CFLAGS}:" Makefile
74 epatch "${FILESDIR}"/squashfs-tools-3.3-posix.patch || die patching failed
75 }
76
77 src_compile() {
78 emake CC="$(tc-getCC)" || die
79 }
80
81 src_install() {
82 dobin mksquashfs unsquashfs || die
83 cd ..
84 dodoc README ACKNOWLEDGEMENTS CHANGES PERFORMANCE.README README-3.3
85 }
86
87
88
89 --
90 gentoo-commits@g.o mailing list