diff options
author | Stefaan De Roeck <stefaan@gentoo.org> | 2008-02-22 14:46:20 +0000 |
---|---|---|
committer | Stefaan De Roeck <stefaan@gentoo.org> | 2008-02-22 14:46:20 +0000 |
commit | a95aa9ec4ac1307aebf7339eb84f60dad837c24f (patch) | |
tree | e6acd52156bc67707a02a821225791d2625b7209 /net-fs/openafs-kernel | |
parent | rename file correctly (diff) | |
download | gentoo-2-a95aa9ec4ac1307aebf7339eb84f60dad837c24f.tar.gz gentoo-2-a95aa9ec4ac1307aebf7339eb84f60dad837c24f.tar.bz2 gentoo-2-a95aa9ec4ac1307aebf7339eb84f60dad837c24f.zip |
Add version pulled from stable-cvs for linux-2.6.24 compatibility (bug #207882)
(Portage version: 2.1.3.19)
Diffstat (limited to 'net-fs/openafs-kernel')
-rw-r--r-- | net-fs/openafs-kernel/ChangeLog | 8 | ||||
-rw-r--r-- | net-fs/openafs-kernel/openafs-kernel-1.4.6_p20080222.ebuild | 60 |
2 files changed, 67 insertions, 1 deletions
diff --git a/net-fs/openafs-kernel/ChangeLog b/net-fs/openafs-kernel/ChangeLog index 88ef7d82d16d..d35ff5c39b89 100644 --- a/net-fs/openafs-kernel/ChangeLog +++ b/net-fs/openafs-kernel/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-fs/openafs-kernel # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs-kernel/ChangeLog,v 1.95 2008/01/02 13:59:08 stefaan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs-kernel/ChangeLog,v 1.96 2008/02/22 14:46:20 stefaan Exp $ + +*openafs-kernel-1.4.6_p20080222 (22 Feb 2008) + + 22 Feb 2008; Stefaan De Roeck <stefaan@gentoo.org> + +openafs-kernel-1.4.6_p20080222.ebuild: + Add version pulled from stable-cvs for linux-2.6.24 compatibility (bug #207882) 02 Jan 2008; Stefaan De Roeck <stefaan@gentoo.org> openafs-kernel-1.4.6.ebuild: diff --git a/net-fs/openafs-kernel/openafs-kernel-1.4.6_p20080222.ebuild b/net-fs/openafs-kernel/openafs-kernel-1.4.6_p20080222.ebuild new file mode 100644 index 000000000000..8662be5f4112 --- /dev/null +++ b/net-fs/openafs-kernel/openafs-kernel-1.4.6_p20080222.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2008 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.6_p20080222.ebuild,v 1.1 2008/02/22 14:46:20 stefaan Exp $ + +inherit eutils linux-mod versionator toolchain-funcs + +PATCHVER=0.14 +MY_PN=${PN/-kernel} +MY_PV_DATE=${PV#*_p} +MY_PV=${PV%_p*} +MY_P=${MY_PN}-${MY_PV} +S=${WORKDIR}/${MY_P} +DESCRIPTION="The OpenAFS distributed file system kernel module" +HOMEPAGE="http://www.openafs.org/" +SRC_URI="http://openafs.org/dl/${MY_PV}/${MY_P}-src.tar.bz2 + mirror://gentoo/${MY_PN}-gentoo-${PATCHVER}.tar.bz2 + mirror://gentoo/${MY_PN}-${MY_PV}-cvs${MY_PV_DATE}.patch.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 ${DISTDIR}/${MY_P}-cvs${MY_PV_DATE}.patch.bz2 + + 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 +} |