summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2004-06-04 08:49:18 +0000
committerDaniel Black <dragonheart@gentoo.org>2004-06-04 08:49:18 +0000
commit8243bdf0f9e02872c04a352441723191a52fb746 (patch)
tree32bed24e421b54ac66eb94a21a4da3ffd0d08c89 /sys-fs/squashfs-tools
parentversion bump (diff)
downloadhistorical-8243bdf0f9e02872c04a352441723191a52fb746.tar.gz
historical-8243bdf0f9e02872c04a352441723191a52fb746.tar.bz2
historical-8243bdf0f9e02872c04a352441723191a52fb746.zip
version bump
Diffstat (limited to 'sys-fs/squashfs-tools')
-rw-r--r--sys-fs/squashfs-tools/ChangeLog8
-rw-r--r--sys-fs/squashfs-tools/Manifest8
-rw-r--r--sys-fs/squashfs-tools/files/digest-squashfs-tools-2.0_alpha1
-rw-r--r--sys-fs/squashfs-tools/squashfs-tools-2.0_alpha.ebuild34
4 files changed, 47 insertions, 4 deletions
diff --git a/sys-fs/squashfs-tools/ChangeLog b/sys-fs/squashfs-tools/ChangeLog
index a6bc0dcf47d7..3776dd6aae0c 100644
--- a/sys-fs/squashfs-tools/ChangeLog
+++ b/sys-fs/squashfs-tools/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-apps/squashfs-tools
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/ChangeLog,v 1.1 2004/06/04 07:30:40 dragonheart Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/ChangeLog,v 1.2 2004/06/04 08:49:18 dragonheart Exp $
+
+*squashfs-tools-2.0_alpha (04 Jun 2004)
+
+ 04 Jun 2004; Daniel Black <dragonheart@gentoo.org>
+ +squashfs-tools-2.0_alpha.ebuild:
+ version bump thanks to Stefan Schweizer <stefan-schweizer@gmx.de> in bug #52038
04 Jun 2004; Daniel Black <dragonheart@gentoo.org> +metadata.xml,
+squashfs-tools-1.3.ebuild:
diff --git a/sys-fs/squashfs-tools/Manifest b/sys-fs/squashfs-tools/Manifest
index b402e7bdbc69..33cd7e3dea54 100644
--- a/sys-fs/squashfs-tools/Manifest
+++ b/sys-fs/squashfs-tools/Manifest
@@ -1,4 +1,6 @@
-MD5 fee0a11be0b39d332785d9a85127fb49 files/digest-squashfs-tools-1.3 64
-MD5 4a00eb3f27405e45696d2a0e2dd8fa03 ChangeLog 747
-MD5 e24fdae2cab763302d83ce65ce632106 squashfs-tools-1.3.ebuild 822
+MD5 030055e1c6c7052f854d72877f268faf ChangeLog 1125
+MD5 6e8ccfc1f27daaf9e7ebd30c89322040 squashfs-tools-1.3.ebuild 825
MD5 c7abfbaf2964534151718bdccb79bce3 metadata.xml 228
+MD5 415581174e98e0527b635aebc49ff65f squashfs-tools-2.0_alpha.ebuild 871
+MD5 fee0a11be0b39d332785d9a85127fb49 files/digest-squashfs-tools-1.3 64
+MD5 6f131952e2ae3dd6c6c9735557d35fc3 files/digest-squashfs-tools-2.0_alpha 69
diff --git a/sys-fs/squashfs-tools/files/digest-squashfs-tools-2.0_alpha b/sys-fs/squashfs-tools/files/digest-squashfs-tools-2.0_alpha
new file mode 100644
index 000000000000..e91910d3581a
--- /dev/null
+++ b/sys-fs/squashfs-tools/files/digest-squashfs-tools-2.0_alpha
@@ -0,0 +1 @@
+MD5 1729912704a299285be7b63988fe23b3 squashfs2.0-ALPHA.tar.gz 136174
diff --git a/sys-fs/squashfs-tools/squashfs-tools-2.0_alpha.ebuild b/sys-fs/squashfs-tools/squashfs-tools-2.0_alpha.ebuild
new file mode 100644
index 000000000000..eac5bc96bc69
--- /dev/null
+++ b/sys-fs/squashfs-tools/squashfs-tools-2.0_alpha.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/squashfs-tools-2.0_alpha.ebuild,v 1.1 2004/06/04 08:49:18 dragonheart Exp $
+
+MY_PV=${PV/_alpha/-ALPHA}
+DESCRIPTION="Tool for creating compressed filesystem type squashfs"
+HOMEPAGE="http://squashfs.sourceforge.net/"
+SRC_URI="mirror://sourceforge/squashfs/squashfs${MY_PV}.tar.gz"
+RESTRICT="nomirror"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64 ~ppc64 ~s390"
+IUSE=""
+
+DEPEND="virtual/glibc
+ sys-libs/zlib"
+
+S=${WORKDIR}/squashfs${PV/_alpha}/squashfs-tools
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ sed -i "s:-O2:${CFLAGS}:" Makefile
+}
+
+src_compile() {
+ emake || die
+}
+
+src_install() {
+ dobin mksquashfs || die
+ cd ..
+ dodoc README ACKNOWLEDGEMENTS CHANGES
+}