diff options
Diffstat (limited to 'net-fs/openafs-kernel/openafs-kernel-1.4.5.ebuild')
-rw-r--r-- | net-fs/openafs-kernel/openafs-kernel-1.4.5.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/net-fs/openafs-kernel/openafs-kernel-1.4.5.ebuild b/net-fs/openafs-kernel/openafs-kernel-1.4.5.ebuild deleted file mode 100644 index c0fa841ea818..000000000000 --- a/net-fs/openafs-kernel/openafs-kernel-1.4.5.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs-kernel/openafs-kernel-1.4.5.ebuild,v 1.6 2007/12/06 20:32:43 dertobi123 Exp $ - -inherit eutils linux-mod versionator toolchain-funcs - -PATCHVER=0.14 -MY_PN=${PN/-kernel} -MY_P=${MY_PN}-${PV} -S=${WORKDIR}/${MY_P} -DESCRIPTION="The OpenAFS distributed file system kernel module" -HOMEPAGE="http://www.openafs.org/" -SRC_URI="http://openafs.org/dl/${PV}/${MY_P}-src.tar.bz2 - mirror://gentoo/${MY_PN}-gentoo-${PATCHVER}.tar.bz2" - -LICENSE="IBM openafs-krb5 openafs-krb5-a APSL-2 sun-rpc" -SLOT="0" -KEYWORDS="alpha amd64 ppc ppc64 ~sparc x86" -IUSE="" - -PATCHDIR=${WORKDIR}/gentoo/patches/$(get_version_component_range 1-2) - -CONFIG_CHECK="!DEBUG_RODATA ~!AFS_FS" -ERROR_DEBUG_RODATA="OpenAFS is incompatible with linux' CONFIG_DEBUG_RODATA option" -ERROR_AFS_FS="OpenAFS conflicts with the in-kernel AFS-support. Make sure not to load both at the same time!" - -pkg_setup() { - linux-mod_pkg_setup -} - -src_unpack() { - unpack ${MY_P}-src.tar.bz2 - unpack ${MY_PN}-gentoo-${PATCHVER}.tar.bz2 - cd "${S}" - - EPATCH_SUFFIX="patch" epatch ${PATCHDIR} - - ./regen.sh || die "Failed: regenerating configure script" -} - -src_compile() { - ARCH="$(tc-arch-kernel)" econf --with-linux-kernel-headers=${KV_DIR} || die "Failed: econf" - - ARCH="$(tc-arch-kernel)" emake -j1 only_libafs || die "Failed: emake" -} - -src_install() { - MOD_SRCDIR=$(expr ${S}/src/libafs/MODLOAD-*) - [ -f ${MOD_SRCDIR}/libafs.${KV_OBJ} ] \ - || die "Couldn't find compiled kernel module" - - MODULE_NAMES='libafs(fs/openafs:$MOD_SRCDIR)' - - linux-mod_src_install -} |