diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-03-23 21:31:54 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-03-23 21:31:54 +0000 |
commit | 4fa4d963456368128fa40e22b40dfa61563e843a (patch) | |
tree | fe632c86b399b403b912fe9f4854b92b30f8c125 /sys-fs/redirfs | |
parent | Fix lax escaping in BUILD_PARAMS so that ebuild works again after recent modi... (diff) | |
download | gentoo-2-4fa4d963456368128fa40e22b40dfa61563e843a.tar.gz gentoo-2-4fa4d963456368128fa40e22b40dfa61563e843a.tar.bz2 gentoo-2-4fa4d963456368128fa40e22b40dfa61563e843a.zip |
Fix lax escaping of BUILD_PARAMS so that ebuild works again after recent modifications to linux-mod.eclass. Also install some of the documentation.
(Portage version: 2.1.4.4)
Diffstat (limited to 'sys-fs/redirfs')
-rw-r--r-- | sys-fs/redirfs/ChangeLog | 6 | ||||
-rw-r--r-- | sys-fs/redirfs/redirfs-0.2-r1.ebuild | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/sys-fs/redirfs/ChangeLog b/sys-fs/redirfs/ChangeLog index 2de4c67b80a2..39842479fe1f 100644 --- a/sys-fs/redirfs/ChangeLog +++ b/sys-fs/redirfs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-fs/redirfs # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/redirfs/ChangeLog,v 1.2 2008/03/15 09:04:25 alonbl Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/redirfs/ChangeLog,v 1.3 2008/03/23 21:31:54 robbat2 Exp $ + + 23 Mar 2008; Robin H. Johnson <robbat2@gentoo.org> redirfs-0.2-r1.ebuild: + Fix lax escaping of BUILD_PARAMS so that ebuild works again after recent + modifications to linux-mod.eclass. Also install some of the documentation. *redirfs-0.2-r1 (15 Mar 2008) diff --git a/sys-fs/redirfs/redirfs-0.2-r1.ebuild b/sys-fs/redirfs/redirfs-0.2-r1.ebuild index 2d8152be6e7c..5c3b97f7f99e 100644 --- a/sys-fs/redirfs/redirfs-0.2-r1.ebuild +++ b/sys-fs/redirfs/redirfs-0.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/redirfs/redirfs-0.2-r1.ebuild,v 1.1 2008/03/15 09:04:25 alonbl Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/redirfs/redirfs-0.2-r1.ebuild,v 1.2 2008/03/23 21:31:54 robbat2 Exp $ inherit linux-mod eutils @@ -20,8 +20,8 @@ pkg_setup() { linux-mod_pkg_setup MODULE_NAMES="redirfs(misc:)" BUILD_TARGETS="redirfs.ko" - BUILD_PARAMS=" - KERN_SRC=${KERNEL_DIR} + BUILD_PARAMS=" \ + KERN_SRC=\"${KERNEL_DIR}\" \ KERN_VER=${KV_MAJOR}.${KV_MINOR}" eerror "This package is EXPERIMENTAL use it at your own risk" @@ -35,6 +35,7 @@ src_unpack() { } src_install() { + dodoc CHANGELOG INSTALL README TODO linux-mod_src_install insinto /usr/include doins redirfs.h |