diff options
author | Mike Pagano <mpagano@gentoo.org> | 2009-09-18 17:56:50 +0000 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2009-09-18 17:56:50 +0000 |
commit | 3ffd58f6f6b9bc9a77a9b02ae263d11db4c85768 (patch) | |
tree | d5ce62c01f09e679086e84ad4c6e21c739c684fa /sys-kernel/linux-docs/linux-docs-2.6.31.ebuild | |
parent | Improve handling of directory stack in python_execute_function(). (diff) | |
download | gentoo-2-3ffd58f6f6b9bc9a77a9b02ae263d11db4c85768.tar.gz gentoo-2-3ffd58f6f6b9bc9a77a9b02ae263d11db4c85768.tar.bz2 gentoo-2-3ffd58f6f6b9bc9a77a9b02ae263d11db4c85768.zip |
Version bump and old version cleanup
(Portage version: 2.2_rc40/cvs/Linux i686)
Diffstat (limited to 'sys-kernel/linux-docs/linux-docs-2.6.31.ebuild')
-rw-r--r-- | sys-kernel/linux-docs/linux-docs-2.6.31.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/sys-kernel/linux-docs/linux-docs-2.6.31.ebuild b/sys-kernel/linux-docs/linux-docs-2.6.31.ebuild new file mode 100644 index 000000000000..107545d09063 --- /dev/null +++ b/sys-kernel/linux-docs/linux-docs-2.6.31.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-docs/linux-docs-2.6.31.ebuild,v 1.1 2009/09/18 17:56:50 mpagano Exp $ + +inherit toolchain-funcs + +MY_P=linux-${PV} +S=${WORKDIR}/${MY_P} + +DESCRIPTION="Developer documentation generated from the Linux kernel" +HOMEPAGE="http://www.kernel.org/" +SRC_URI="mirror://kernel/linux/kernel/v2.6/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" + +IUSE="html" +DEPEND="app-text/docbook-sgml-utils + app-text/xmlto + sys-apps/sed + ~app-text/docbook-xml-dtd-4.1.2" +RDEPEND="" + +src_unpack() { + unpack ${A} + + sed -i \ + -e "s:db2:docbook2:g" \ + -e "s:/usr/local/man:${D}/usr/share/man:g" \ + "${S}"/Documentation/DocBook/Makefile + + # fix for parallel build as per bug #248337 + sed -i \ + -e "s:\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook \$@:+\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook \$@:" \ + "${S}"/Makefile +} + +src_compile() { + local ARCH=$(tc-arch-kernel) + unset KBUILD_OUTPUT + + emake mandocs || die "make mandocs failed" + + if use html; then + emake htmldocs || die "make htmldocs failed" + fi +} + +src_install() { + local file + local ARCH=$(tc-arch-kernel) + unset KBUILD_OUTPUT + + make installmandocs || die "make installmandocs failed" + + if use html; then + for file in Documentation/DocBook/*.html; do + dohtml -r ${file/\.html/} + done + fi +} |