adding unionfs-utils

git-svn-id: http://svn.sabayonlinux.org/overlay@866 d7aec97c-591d-0410-af39-a8856400b30a
This commit is contained in:
lxnay
2007-02-08 01:58:31 +00:00
parent 0654cd7e5f
commit 746ebd6bbb
3 changed files with 51 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
DIST unionfs-utils-0.1.tar.gz 37049 RMD160 058ce9c27dd36a90e338aa9f0314fd6d65c4f55d SHA1 04c1ff02d37adce07ef6987198d5e6462f6c53ca SHA256 345e213a0b6c95bbdcfc67ce1bddcff626664cb186559bb8c5ffcfa58c12aac2
EBUILD unionfs-utils-0.1.ebuild 780 RMD160 d29b90b60b981ebce2a5eb15c27ebf6c74b8eab2 SHA1 8d15a37c3c5618f7723bbac11168b4306aedd5a4 SHA256 1d5e6220af3d441085327f338f2779e3d0a9fc59fc31f821c716a1eb443649bd
MD5 74ec221c9db9d026f7626663015b518f unionfs-utils-0.1.ebuild 780
RMD160 d29b90b60b981ebce2a5eb15c27ebf6c74b8eab2 unionfs-utils-0.1.ebuild 780
SHA256 1d5e6220af3d441085327f338f2779e3d0a9fc59fc31f821c716a1eb443649bd unionfs-utils-0.1.ebuild 780
MD5 77e4d764735a35316b9fb60eba5041d0 files/digest-unionfs-utils-0.1 250
RMD160 bcebeaa1705133c9b7c54db258b3027e35d9dd57 files/digest-unionfs-utils-0.1 250
SHA256 eec7321a65ec606c9d5950f00d3575670cc744124ad59fba4d2168b2234ca83c files/digest-unionfs-utils-0.1 250
@@ -0,0 +1,3 @@
MD5 adbe18f19d1d45e80697fbccdf38d8df unionfs-utils-0.1.tar.gz 37049
RMD160 058ce9c27dd36a90e338aa9f0314fd6d65c4f55d unionfs-utils-0.1.tar.gz 37049
SHA256 345e213a0b6c95bbdcfc67ce1bddcff626664cb186559bb8c5ffcfa58c12aac2 unionfs-utils-0.1.tar.gz 37049
@@ -0,0 +1,40 @@
# Copyright 2007 Sabayon Linux
# Distributed under the terms of the GNU General Public License v2
inherit eutils autotools
DESCRIPTION="Unionfs 1.x/2.x userspace tools"
HOMEPAGE="http://www.am-utils.org/project-unionfs.html"
SRC_URI="ftp://ftp.fsl.cs.sunysb.edu/pub/unionfs/${PN}-0.x/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE=""
RESTRICT="nomirror"
S=${WORKDIR}/${PN}
src_compile() {
cd ${S}
./bootstrap || die "bootstrap failed"
econf --mandir="${D}/usr/share/man" \
--prefix="${D}" || die "Autoreconf failed"
emake || die "make failed"
}
src_install() {
# docs
dodoc INSTALL NEWS README ChangeLog
# man
doman man/unionctl.8 man/uniondbg.8 man/unionimap.8
# exes
exeinto /sbin
doexe unionctl uniondbg unionimap
}