diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-07-22 13:24:16 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-07-22 13:24:16 +0000 |
commit | f4eea4ed08d4470f587e72aae8d5a98308d6e171 (patch) | |
tree | c4e2d00acb20b3753522a981eda5ce71401cfbef /sys-fs/squashfs-tools | |
parent | Update version. (diff) | |
download | gentoo-2-f4eea4ed08d4470f587e72aae8d5a98308d6e171.tar.gz gentoo-2-f4eea4ed08d4470f587e72aae8d5a98308d6e171.tar.bz2 gentoo-2-f4eea4ed08d4470f587e72aae8d5a98308d6e171.zip |
Version bumped to latest version.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sys-fs/squashfs-tools')
-rw-r--r-- | sys-fs/squashfs-tools/ChangeLog | 8 | ||||
-rw-r--r-- | sys-fs/squashfs-tools/files/digest-squashfs-tools-2.2 | 1 | ||||
-rw-r--r-- | sys-fs/squashfs-tools/squashfs-tools-2.2.ebuild | 39 |
3 files changed, 47 insertions, 1 deletions
diff --git a/sys-fs/squashfs-tools/ChangeLog b/sys-fs/squashfs-tools/ChangeLog index 53850d7bda29..bca2933a9edb 100644 --- a/sys-fs/squashfs-tools/ChangeLog +++ b/sys-fs/squashfs-tools/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-fs/squashfs-tools # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/ChangeLog,v 1.20 2005/05/16 17:48:35 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/ChangeLog,v 1.21 2005/07/22 13:24:16 wolf31o2 Exp $ + +*squashfs-tools-2.2 (22 Jul 2005) + + 22 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org> + +squashfs-tools-2.2.ebuild: + Version bumped to latest version. 16 May 2005; Chris Gianelloni <wolf31o2@gentoo.org> squashfs-tools-2.1_p2-r1.ebuild: diff --git a/sys-fs/squashfs-tools/files/digest-squashfs-tools-2.2 b/sys-fs/squashfs-tools/files/digest-squashfs-tools-2.2 new file mode 100644 index 000000000000..b0fd3859f44b --- /dev/null +++ b/sys-fs/squashfs-tools/files/digest-squashfs-tools-2.2 @@ -0,0 +1 @@ +MD5 9537f1bfa3efd5df722f1a85cd424414 squashfs2.2.tar.gz 233078 diff --git a/sys-fs/squashfs-tools/squashfs-tools-2.2.ebuild b/sys-fs/squashfs-tools/squashfs-tools-2.2.ebuild new file mode 100644 index 000000000000..13888226fd72 --- /dev/null +++ b/sys-fs/squashfs-tools/squashfs-tools-2.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/squashfs-tools-2.2.ebuild,v 1.1 2005/07/22 13:24:16 wolf31o2 Exp $ + +inherit toolchain-funcs + +MY_PV=${PV/_p/-r} +DESCRIPTION="Tool for creating compressed filesystem type squashfs" +HOMEPAGE="http://squashfs.sourceforge.net/" +SRC_URI="mirror://sourceforge/squashfs/squashfs${MY_PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="" + +RDEPEND="virtual/libc + sys-libs/zlib" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" + +S=${WORKDIR}/squashfs${PV/_p/-r}/squashfs-tools + +src_unpack() { + unpack ${A} + cd ${S} + sed -i "s:-O2:${CFLAGS}:" Makefile +} + +src_compile() { + emake CC="$(tc-getCC)" || die +} + +src_install() { + dobin mksquashfs || die + cd .. + dodoc README ACKNOWLEDGEMENTS CHANGES README-2.{0,1} README-AMD64 \ + PERFORMANCE.README +} |