Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 175274 Details for
Bug 193514
[patch] add support for v86d in genkernel
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
genkernel-3.4.10.902-r1.ebuild
genkernel-3.4.10.902-r1.ebuild (text/plain), 4.93 KB, created by
Oleg German
on 2008-12-14 19:13:55 UTC
(
hide
)
Description:
genkernel-3.4.10.902-r1.ebuild
Filename:
MIME Type:
Creator:
Oleg German
Created:
2008-12-14 19:13:55 UTC
Size:
4.93 KB
patch
obsolete
># Copyright 1999-2008 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: /var/cvsroot/gentoo-x86/sys-kernel/genkernel/genkernel-3.4.10.902.ebuild,v 1.2 2008/12/13 19:03:34 agaffney Exp $ > ># genkernel-9999 -> latest SVN ># genkernel-9999.REV -> use SVN REV ># genkernel-VERSION -> normal genkernel release > >VERSION_BUSYBOX='1.7.4' >VERSION_DMAP='1.02.22' >VERSION_DMRAID='1.0.0.rc14' >VERSION_E2FSPROGS='1.40.9' >VERSION_LVM='2.02.28' >VERSION_FUSE='2.7.4' >VERSION_UNIONFS_FUSE='0.22' >VERSION_KLIBC='1.5.12' >VERSION_V86D='0.1.9' > >MY_HOME="http://wolf31o2.org" >RH_HOME="ftp://sources.redhat.com/pub" >DM_HOME="http://people.redhat.com/~heinzm/sw/dmraid/src" >BB_HOME="http://www.busybox.net/downloads" > >COMMON_URI="${DM_HOME}/dmraid-${VERSION_DMRAID}.tar.bz2 > ${DM_HOME}/old/dmraid-${VERSION_DMRAID}.tar.bz2 > ${RH_HOME}/lvm2/LVM2.${VERSION_LVM}.tgz > ${RH_HOME}/lvm2/old/LVM2.${VERSION_LVM}.tgz > ${RH_HOME}/dm/device-mapper.${VERSION_DMAP}.tgz > ${RH_HOME}/dm/old/device-mapper.${VERSION_DMAP}.tgz > ${BB_HOME}/busybox-${VERSION_BUSYBOX}.tar.bz2 > mirror://sourceforge/e2fsprogs/e2fsprogs-${VERSION_E2FSPROGS}.tar.gz > mirror://sourceforge/fuse/fuse-${VERSION_FUSE}.tar.gz > http://podgorny.cz/unionfs-fuse/releases/unionfs-fuse-${VERSION_UNIONFS_FUSE}.tar.bz2 > mirror://kernel/linux/libs/klibc/klibc-${VERSION_KLIBC}.tar.bz2 > http://dev.gentoo.org/~spock/projects/uvesafb/archive/v86d-${VERSION_V86D}.tar.bz2" > >if [[ ${PV} == 9999* ]] >then > [[ ${PV} == 9999.* ]] && ESVN_UPDATE_CMD="svn up -r ${PV/9999./}" > EGIT_REPO_URI="git://git.wolf31o2.org/projs/genkernel.git" > inherit git bash-completion eutils > S="${WORKDIR}" > SRC_URI="${COMMON_URI}" >else > inherit bash-completion eutils > SRC_URI="mirror://gentoo/${P}.tar.bz2 > ${MY_HOME}/sources/genkernel/${P}.tar.bz2 > ${COMMON_URI}" >fi > >DESCRIPTION="Gentoo automatic kernel building scripts" >HOMEPAGE="http://www.gentoo.org" > >LICENSE="GPL-2" >SLOT="0" >RESTRICT="" ># Please don't touch individual KEYWORDS. Since this is maintained/tested by ># Release Engineering, it's easier for us to deal with all arches at once. >KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" >#KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sparc x86" >#KEYWORDS="" >IUSE="ibm selinux" > >DEPEND="sys-fs/e2fsprogs > selinux? ( sys-libs/libselinux )" >RDEPEND="${DEPEND} app-arch/cpio" > >src_unpack() { > if [[ ${PV} == 9999* ]] ; then > git_src_unpack > else > unpack ${P}.tar.bz2 > fi > > epatch "${FILESDIR}"/genkernel-v86d-3.4.10.902.patch > > use selinux && sed -i 's/###//g' "${S}"/gen_compile.sh >} > >src_install() { > # This block updates genkernel.conf > sed -e "s:VERSION_DMAP:$VERSION_DMAP:" \ > -e "s:VERSION_DMRAID:$VERSION_DMRAID:" \ > -e "s:VERSION_E2FSPROGS:$VERSION_E2FSPROGS:" \ > -e "s:VERSION_LVM:$VERSION_LVM:" \ > -e "s:VERSION_BUSYBOX:$VERSION_BUSYBOX:" \ > -e "s:VERSION_FUSE:$VERSION_FUSE:" \ > -e "s:VERSION_UNIONFS_FUSE:$VERSION_UNIONFS_FUSE:" \ > -e "s:VERSION_KLIBC:$VERSION_KLIBC:" \ > -e "s:VERSION_V86D:$VERSION_V86D:" \ > "${S}"/genkernel.conf > "${T}"/genkernel.conf \ > || die "Could not adjust versions" > insinto /etc > doins "${T}"/genkernel.conf || die "doins genkernel.conf" > > doman genkernel.8 || die "doman" > dodoc AUTHORS ChangeLog README TODO || die "dodoc" > > dobin genkernel || die "dobin genkernel" > > rm -f genkernel genkernel.8 AUTHORS ChangeLog README TODO genkernel.conf > > insinto /usr/share/genkernel > doins -r "${S}"/* || die "doins" > use ibm && cp "${S}"/ppc64/kernel-2.6-pSeries "${S}"/ppc64/kernel-2.6 || \ > cp "${S}"/arch/ppc64/kernel-2.6.g5 "${S}"/arch/ppc64/kernel-2.6 > > # Copy files to /var/cache/genkernel/src > elog "Copying files to /var/cache/genkernel/src..." > mkdir -p "${D}"/var/cache/genkernel/src > cp -f \ > "${DISTDIR}"/dmraid-${VERSION_DMRAID}.tar.bz2 \ > "${DISTDIR}"/LVM2.${VERSION_LVM}.tgz \ > "${DISTDIR}"/device-mapper.${VERSION_DMAP}.tgz \ > "${DISTDIR}"/e2fsprogs-${VERSION_E2FSPROGS}.tar.gz \ > "${DISTDIR}"/busybox-${VERSION_BUSYBOX}.tar.bz2 \ > "${DISTDIR}"/fuse-${VERSION_FUSE}.tar.gz \ > "${DISTDIR}"/unionfs-fuse-${VERSION_UNIONFS_FUSE}.tar.bz2 \ > "${DISTDIR}"/busybox-${VERSION_BUSYBOX}.tar.bz2 \ > "${DISTDIR}"/v86d-${VERSION_V86D}.tar.bz2 \ > "${D}"/var/cache/genkernel/src || die "Copying distfiles..." > > dobashcompletion "${FILESDIR}"/genkernel.bash >} > >pkg_postinst() { > echo > elog 'Documentation is available in the genkernel manual page' > elog 'as well as the following URL:' > echo > elog 'http://www.gentoo.org/doc/en/genkernel.xml' > echo > ewarn "This package is known to not work with reiser4. If you are running" > ewarn "reiser4 and have a problem, do not file a bug. We know it does not" > ewarn "work and we don't plan on fixing it since reiser4 is the one that is" > ewarn "broken in this regard. Try using a sane filesystem like ext3 or" > ewarn "even reiser3." > echo > ewarn "The LUKS support has changed from versions prior to 3.4.4. Now," > ewarn "you use crypt_root=/dev/blah instead of real_root=luks:/dev/blah." > echo > > bash-completion_pkg_postinst >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 193514
:
131688
|
159251
|
159253
|
159255
|
160140
|
160151
|
175271
|
175274
|
180833
|
180834