diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-09-09 12:58:21 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-09-09 12:58:21 +0000 |
commit | 6df3c55d7ca52bf59b33be025aeab23f663331d7 (patch) | |
tree | 88b5febfeeb45742f8e9e13c875d7a8f00d8034d /sys-fs/squashfs-tools | |
parent | Version bump; removed 2.7.x ebuilds. (diff) | |
download | gentoo-2-6df3c55d7ca52bf59b33be025aeab23f663331d7.tar.gz gentoo-2-6df3c55d7ca52bf59b33be025aeab23f663331d7.tar.bz2 gentoo-2-6df3c55d7ca52bf59b33be025aeab23f663331d7.zip |
Version bump and closing bug #99886.
(Portage version: 2.0.52-r1)
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_p2 | 1 | ||||
-rw-r--r-- | sys-fs/squashfs-tools/squashfs-tools-2.2_p2.ebuild | 39 |
3 files changed, 47 insertions, 1 deletions
diff --git a/sys-fs/squashfs-tools/ChangeLog b/sys-fs/squashfs-tools/ChangeLog index bca2933a9edb..482a73c6a25a 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.21 2005/07/22 13:24:16 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/ChangeLog,v 1.22 2005/09/09 12:58:21 wolf31o2 Exp $ + +*squashfs-tools-2.2_p2 (09 Sep 2005) + + 09 Sep 2005; Chris Gianelloni <wolf31o2@gentoo.org> + +squashfs-tools-2.2_p2.ebuild: + Version bump and closing bug #99886. *squashfs-tools-2.2 (22 Jul 2005) diff --git a/sys-fs/squashfs-tools/files/digest-squashfs-tools-2.2_p2 b/sys-fs/squashfs-tools/files/digest-squashfs-tools-2.2_p2 new file mode 100644 index 000000000000..d29239117d8f --- /dev/null +++ b/sys-fs/squashfs-tools/files/digest-squashfs-tools-2.2_p2 @@ -0,0 +1 @@ +MD5 86b917ad06378805a760433be1758d2b squashfs2.2r2.tar.gz 234873 diff --git a/sys-fs/squashfs-tools/squashfs-tools-2.2_p2.ebuild b/sys-fs/squashfs-tools/squashfs-tools-2.2_p2.ebuild new file mode 100644 index 000000000000..7820d92ba4b1 --- /dev/null +++ b/sys-fs/squashfs-tools/squashfs-tools-2.2_p2.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_p2.ebuild,v 1.1 2005/09/09 12:58:21 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 +} |