-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://rarfs.svn.sourceforge.net/svnroot/rarfs/trunk@7 e7d50402-2a21-0410-9462-cc66f8fbb32f
- Loading branch information
ghostelf
committed
Jun 13, 2008
1 parent
64c2b12
commit 43b1c64
Showing
7 changed files
with
88 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,5 @@ fi | |
|
||
AC_OUTPUT(Makefile \ | ||
src/Makefile \ | ||
doc/Makefile | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
EXTRA_DIST = \ | ||
rarfs-0.0.8.ebuild | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright 1999-2008 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Header: $ | ||
|
||
inherit eutils | ||
|
||
DESCRIPTION="Fuse-filesystem for not compressed rar archives." | ||
SRC_URI="mirror://sourceforge/rarfs/${P}.tar.gz" | ||
HOMEPAGE="http://rarfs.wiki.sourceforge.net/" | ||
LICENSE="GPL-2" | ||
DEPEND=">=sys-fs/fuse-2.5.0" | ||
KEYWORDS="ppc64 X86" | ||
SLOT="0" | ||
IUSE="" | ||
|
||
src_unpack() | ||
{ | ||
unpack ${A} | ||
cd "${S}" | ||
epatch "${FILESDIR}"/rarfs.patch | ||
} | ||
|
||
src_install () | ||
{ | ||
make DESTDIR=${D} install || die "make install failed" | ||
dodoc README NEWS ChangeLog AUTHORS | ||
} | ||
|