diff options
Diffstat (limited to 'app-doc')
-rw-r--r-- | app-doc/linux-device-drivers/ChangeLog | 8 | ||||
-rw-r--r-- | app-doc/linux-device-drivers/files/digest-linux-device-drivers-3 | 2 | ||||
-rw-r--r-- | app-doc/linux-device-drivers/linux-device-drivers-3.ebuild | 27 |
3 files changed, 36 insertions, 1 deletions
diff --git a/app-doc/linux-device-drivers/ChangeLog b/app-doc/linux-device-drivers/ChangeLog index c7880e4dfaff..8088b4145ff3 100644 --- a/app-doc/linux-device-drivers/ChangeLog +++ b/app-doc/linux-device-drivers/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-doc/linux-device-drivers # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-device-drivers/ChangeLog,v 1.1 2005/02/19 19:11:13 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-device-drivers/ChangeLog,v 1.2 2005/04/21 22:13:19 vapier Exp $ + +*linux-device-drivers-3 (21 Apr 2005) + + 21 Apr 2005; Mike Frysinger <vapier@gentoo.org> + +linux-device-drivers-3.ebuild: + Version bump. *linux-device-drivers-2 (19 Feb 2004) diff --git a/app-doc/linux-device-drivers/files/digest-linux-device-drivers-3 b/app-doc/linux-device-drivers/files/digest-linux-device-drivers-3 new file mode 100644 index 000000000000..9b6a2c551633 --- /dev/null +++ b/app-doc/linux-device-drivers/files/digest-linux-device-drivers-3 @@ -0,0 +1,2 @@ +MD5 5cfce7586b3eed87d57c715d5ba86e17 ldd3_pdf.tar.bz2 11553208 +MD5 8421c6b6d8f09eeae1a1fdb0df803317 LDD3-examples.tar.gz 77780 diff --git a/app-doc/linux-device-drivers/linux-device-drivers-3.ebuild b/app-doc/linux-device-drivers/linux-device-drivers-3.ebuild new file mode 100644 index 000000000000..3246e66cc8f1 --- /dev/null +++ b/app-doc/linux-device-drivers/linux-device-drivers-3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-doc/linux-device-drivers/linux-device-drivers-3.ebuild,v 1.1 2005/04/21 22:13:19 vapier Exp $ + +DESCRIPTION="howto write linux device drivers (updated for Linux 2.4)" +HOMEPAGE="http://www.oreilly.com/catalog/linuxdrive3/ http://lwn.net/Kernel/LDD3/" +SRC_URI="http://lwn.net/images/pdf/LDD3/ldd3_pdf.tar.bz2 + mirror://gentoo/LDD3-examples.tar.gz" +# original URL is this: +# http://examples.oreilly.com/linuxdrive3/examples.tar.gz +# but 'examples.tar.gz' is waaaaaay too generic + +LICENSE="CCPL-Attribution-ShareAlike-2.0" +SLOT="3" +KEYWORDS="amd64 arm hppa ia64 s390 sh x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +S=${WORKDIR} + +src_install() { + dodoc ldd3_pdf/*.pdf || die "pdfs" + insinto /usr/share/doc/${PF}/examples + doins -r examples/* || die "examples" +} |