diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 21:02:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 21:02:42 +0000 |
commit | 9b9e96c08199f598ced87cbdf8651f7997b7c9a2 (patch) | |
tree | 4858a7288487f19d11836e8c94c7320fb3168e0f /app-doc/linuxfromscratch-html | |
parent | Changed einstall||die to einstall (diff) | |
download | gentoo-2-9b9e96c08199f598ced87cbdf8651f7997b7c9a2.tar.gz gentoo-2-9b9e96c08199f598ced87cbdf8651f7997b7c9a2.tar.bz2 gentoo-2-9b9e96c08199f598ced87cbdf8651f7997b7c9a2.zip |
Changed src_install () to src_install()
Diffstat (limited to 'app-doc/linuxfromscratch-html')
-rw-r--r-- | app-doc/linuxfromscratch-html/linuxfromscratch-html-3.3.ebuild | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/app-doc/linuxfromscratch-html/linuxfromscratch-html-3.3.ebuild b/app-doc/linuxfromscratch-html/linuxfromscratch-html-3.3.ebuild index e496ff4f98e5..236c65e79519 100644 --- a/app-doc/linuxfromscratch-html/linuxfromscratch-html-3.3.ebuild +++ b/app-doc/linuxfromscratch-html/linuxfromscratch-html-3.3.ebuild @@ -1,24 +1,21 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/linuxfromscratch-html/linuxfromscratch-html-3.3.ebuild,v 1.5 2002/10/04 04:02:45 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/linuxfromscratch-html/linuxfromscratch-html-3.3.ebuild,v 1.6 2002/11/30 21:02:42 vapier Exp $ MY_P="LFS-BOOK-${PV}-HTML" S=${WORKDIR}/${MY_P} DESCRIPTION="The Linux From Scratch Book. HTML Format" - SRC_URI="http://ftp.linuxfromscratch.org/lfs-books/${PV}/${MY_P}.tar.bz2 -ftp://ftp.planetmirror.com/pub/lfs/lfs-books/${PV}/${MY_P}.tar.bz2 -ftp://ftp.no.linuxfromscratch.org/mirrors/lfs/lfs-books/${PV}/${MY_P}.tar.bz2 -http://ftp.nl.linuxfromscratch.org/linux/lfs/lfs-books/${PV}/${MY_P}.tar.bz2" - -HOMEPAGE="http://www.linuxfromscratch.org" + ftp://ftp.planetmirror.com/pub/lfs/lfs-books/${PV}/${MY_P}.tar.bz2 + ftp://ftp.no.linuxfromscratch.org/mirrors/lfs/lfs-books/${PV}/${MY_P}.tar.bz2 + http://ftp.nl.linuxfromscratch.org/linux/lfs/lfs-books/${PV}/${MY_P}.tar.bz2" +HOMEPAGE="http://www.linuxfromscratch.org/" SLOT="0" LICENSE="as-is" KEYWORDS="x86 ppc sparc sparc64" -src_install () { +src_install() { dodir /usr/share/doc/linuxfromscratch-html-${PV} - cd ${S} cp -R * ${D}/usr/share/doc/linuxfromscratch-html-${PV} } |