diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-04-09 20:59:56 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-04-09 20:59:56 +0000 |
commit | 8b6a127eacadf4137d1f49f3120fe0b77a493cb9 (patch) | |
tree | 9c8e0f3aae4dfc7a2f21c8bdeaeb62c2984f0999 /app-doc/linuxfromscratch-text | |
parent | fixup console merging (diff) | |
download | gentoo-2-8b6a127eacadf4137d1f49f3120fe0b77a493cb9.tar.gz gentoo-2-8b6a127eacadf4137d1f49f3120fe0b77a493cb9.tar.bz2 gentoo-2-8b6a127eacadf4137d1f49f3120fe0b77a493cb9.zip |
Adding the book: "linux from scratch" since its one of the best
documentations on linux around for an end-user. recommended reading.
Diffstat (limited to 'app-doc/linuxfromscratch-text')
3 files changed, 33 insertions, 0 deletions
diff --git a/app-doc/linuxfromscratch-text/ChangeLog b/app-doc/linuxfromscratch-text/ChangeLog new file mode 100644 index 000000000000..8ad3eae85449 --- /dev/null +++ b/app-doc/linuxfromscratch-text/ChangeLog @@ -0,0 +1,7 @@ +# ChangeLog for app-doc/mini-howto-text +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-doc/linuxfromscratch-text/ChangeLog,v 1.1 2002/04/09 20:59:56 spider Exp $ + +*linuxfromscratch-text-3.3 (09 Apr 2002) + 09 Apr 2002; Spider <spider@gentoo.org> + intial package diff --git a/app-doc/linuxfromscratch-text/files/digest-linuxfromscratch-text-3.3 b/app-doc/linuxfromscratch-text/files/digest-linuxfromscratch-text-3.3 new file mode 100644 index 000000000000..f50a320f72a0 --- /dev/null +++ b/app-doc/linuxfromscratch-text/files/digest-linuxfromscratch-text-3.3 @@ -0,0 +1 @@ +MD5 168dcac2dad4a7799bfd4e10ac2198a3 LFS-BOOK-3.3.txt.bz2 82275 diff --git a/app-doc/linuxfromscratch-text/linuxfromscratch-text-3.3.ebuild b/app-doc/linuxfromscratch-text/linuxfromscratch-text-3.3.ebuild new file mode 100644 index 000000000000..035660c9c50f --- /dev/null +++ b/app-doc/linuxfromscratch-text/linuxfromscratch-text-3.3.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Parag Mehta <pm@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-doc/linuxfromscratch-text/linuxfromscratch-text-3.3.ebuild,v 1.1 2002/04/09 20:59:56 spider Exp $ + +P="LFS-BOOK-3.3.txt.bz2" +S="${WORKDIR}/LFS-BOOK-3.3" + +DESCRIPTION="The Linux From Scratch Book. Text Format" + +SRC_URI="http://ftp.linuxfromscratch.org/lfs-books/3.3/${P} +ftp://ftp.planetmirror.com/pub/lfs/lfs-books/3.3/${P} +ftp://ftp.no.linuxfromscratch.org/mirrors/lfs/lfs-books/3.3/${P} +http://ftp.nl.linuxfromscratch.org/linux/lfs/lfs-books/3.3/${P}" + +HOMEPAGE="http://www.linuxfromscratch.org" + +src_unpack () { + mkdir ${S} ; cd ${S} + cp ${DISTDIR}/${A} . + bunzip2 ${A} || die "bunzip2 failure" +} +src_install () { + dodoc * +} |