* Removed unionfs oldie

This commit is contained in:
grimmlin 2008-12-28 02:05:27 +00:00
parent 1469837566
commit c01cf8dccc
3 changed files with 0 additions and 87 deletions

View file

@ -1,8 +0,0 @@
DIST unionfs-1.4.tar.gz 164696 RMD160 5a19ccfd6edf25f55c48ba1b820347572353c7ba SHA1 746fe5b9d6348e6530a85b38cdb8a8e08f513264 SHA256 3ff105782aba722b1f263e408fac638245d302a9c8d0f37ac09e5a80caf0126b
EBUILD unionfs-1.4.ebuild 2049 RMD160 553bd2f180c297f5730a55284204b9078067cdf6 SHA1 c107e301bffc62091d2c759f2394c041a148bd00 SHA256 ee4311cdc7cb2daae96335d7d187c40d4b771c3965049541f228df1d7ece3fac
MD5 4a071205a132a6864a27c1411fc182cc unionfs-1.4.ebuild 2049
RMD160 553bd2f180c297f5730a55284204b9078067cdf6 unionfs-1.4.ebuild 2049
SHA256 ee4311cdc7cb2daae96335d7d187c40d4b771c3965049541f228df1d7ece3fac unionfs-1.4.ebuild 2049
MD5 5c4e22af43b7d07167d1a55ece05c7de files/digest-unionfs-1.4 235
RMD160 7c62add63c773b4849287380a2e4c190514606bd files/digest-unionfs-1.4 235
SHA256 378583db0c92c79ef807cf1030888d902baf230c6e8ac4831c2474e07cb90634 files/digest-unionfs-1.4 235

View file

@ -1,3 +0,0 @@
MD5 38ed4d9e41c20cf398018928d2c62700 unionfs-1.4.tar.gz 164696
RMD160 5a19ccfd6edf25f55c48ba1b820347572353c7ba unionfs-1.4.tar.gz 164696
SHA256 3ff105782aba722b1f263e408fac638245d302a9c8d0f37ac09e5a80caf0126b unionfs-1.4.tar.gz 164696

View file

@ -1,76 +0,0 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/unionfs/unionfs-1.3.ebuild,v 1.3 2006/10/22 18:05:00 swegener Exp $
inherit eutils linux-mod
DESCRIPTION="Stackable unification file system, which can appear to merge the contents of several directories"
HOMEPAGE="http://www.fsl.cs.sunysb.edu/project-unionfs.html"
SRC_URI="ftp://ftp.fsl.cs.sunysb.edu/pub/unionfs/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE="acl debug nfs"
local_version_info() {
ewarn
ewarn "you need the proper kernel version!"
ewarn
einfo "kernel: 2.4.x (x>19) Version: 1.0.14"
einfo "kernel: 2.6.x (x<9) Version: Not Supported"
einfo "kernel: 2.6.9 - 2.6.15 Version: 1.1.5"
einfo "kernel: 2.6.16 Version: 1.2"
einfo "kernel: 2.6.17 Version: 1.3"
}
pkg_setup() {
# kernel version check
if ! kernel_is eq 2 6 18; then
local_version_info
die
fi
linux-mod_pkg_setup
MODULE_NAMES="unionfs(kernel/fs/${PN}:)"
BUILD_TARGETS="all"
BUILD_PARAMS="LINUXSRC=${KV_DIR} KERNELVERSION=${KV_MAJOR}.${KV_MINOR}"
}
src_unpack() {
local user_Makefile=fistdev.mk EXTRACFLAGS=""
unpack ${A}
cd ${S}
if ! use debug; then
echo "UNIONFS_DEBUG_CFLAG=" >> ${user_Makefile}
EXTRACFLAGS="${EXTRACFLAGS} -DUNIONFS_NDEBUG"
fi
if use acl; then
EXTRACFLAGS="${EXTRACFLAGS} -DUNIONFS_XATTR" # -DFIST_SETXATTR_CONSTVOID"
elif use nfs; then
EXTRACFLAGS="${EXTRACFLAGS} -DNFS_SECURITY_HOLE"
fi
echo "EXTRACFLAGS=${EXTRACFLAGS}" >> ${user_Makefile}
einfo EXTRACFLAGS: ${EXTRACFLAGS}
echo "UNIONFS_OPT_CFLAG=${CFLAGS}" >> ${user_Makefile}
}
src_install() {
linux-mod_src_install
dodoc INSTALL NEWS README ChangeLog patch-kernel.sh
emake \
PREFIX="${D}" \
MANDIR="${D}/usr/share/man" \
install-utils # Makefile is bugged
#doman man/unionfs.4 man/unionctl.8 man/uniondbg.8 man/unionimap.8
#into / # ${D}/sbin: usr could be unionfs mounted: bug #129960
#dosbin utils/unionctl utils/uniondbg utils/unionimap
}