diff options
author | Jérôme Poulin (TiCPU) <jeromepoulin@gmail.com> | 2006-09-07 15:06:01 +0000 |
---|---|---|
committer | Jérôme Poulin (TiCPU) <jeromepoulin@gmail.com> | 2006-09-07 15:06:01 +0000 |
commit | 5b0035ffe023c1e1a4033ab53834df8dc1cddfeb (patch) | |
tree | d429a5f5616cbbc7aee91fc350b706382b079df3 /sys-fs/cromfs/cromfs-1.2.3.ebuild | |
parent | x11-misc/dmenu: Add error message (diff) | |
download | sunrise-5b0035ffe023c1e1a4033ab53834df8dc1cddfeb.tar.gz sunrise-5b0035ffe023c1e1a4033ab53834df8dc1cddfeb.tar.bz2 sunrise-5b0035ffe023c1e1a4033ab53834df8dc1cddfeb.zip |
sys-fs/cromfs: New eBuild for bug 146694
svn path=/sunrise/; revision=1171
Diffstat (limited to 'sys-fs/cromfs/cromfs-1.2.3.ebuild')
-rw-r--r-- | sys-fs/cromfs/cromfs-1.2.3.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sys-fs/cromfs/cromfs-1.2.3.ebuild b/sys-fs/cromfs/cromfs-1.2.3.ebuild new file mode 100644 index 000000000..9256c990b --- /dev/null +++ b/sys-fs/cromfs/cromfs-1.2.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +DESCRIPTION="Cromfs is a FUSE based compressed read-only filesystem for Linux." +HOMEPAGE="http://bisqwit.iki.fi/source/cromfs.html" +SRC_URI="http://bisqwit.iki.fi/src/arch/cromfs-1.2.3.tar.bz2" + +LICENSE="GPL-1" +SLOT="0" +KEYWORDS="~x86" +IUSE="static" + +DEPEND=">=sys-fs/fuse-2.5.2" +RDEPEND="${DEPEND}" + +src_compile() { + sed -i -e '/upx/d' -e '/strip/d' Makefile + emake -j1 +} + +src_install() { + exeinto /usr/bin + if use static; then + doexe cromfs-driver-static + fi + doexe cromfs-driver util/mkcromfs util/unmkcromfs util/cvcromfs + dodoc doc/*.txt doc/FORMAT doc/ChangeLog COPYING + insinto /usr/share/doc/${PF} + doins doc/*.html doc/*.png +} |