diff options
author | Lars Weiler <pylon@gentoo.org> | 2004-03-25 00:43:50 +0000 |
---|---|---|
committer | Lars Weiler <pylon@gentoo.org> | 2004-03-25 00:43:50 +0000 |
commit | 686a9ce643bb481afa3523050d7ab712a71653e1 (patch) | |
tree | 00b7ad12754472e256f00fea161d311cdb850080 /app-doc | |
parent | ebuild submitted by negge@vt.edu in bug #39836. (diff) | |
download | historical-686a9ce643bb481afa3523050d7ab712a71653e1.tar.gz historical-686a9ce643bb481afa3523050d7ab712a71653e1.tar.bz2 historical-686a9ce643bb481afa3523050d7ab712a71653e1.zip |
use cp instead of dohtml (selfhtml does not only contain dohtml-related filetypes and the adding list became too long)
Diffstat (limited to 'app-doc')
-rw-r--r-- | app-doc/selfhtml/Manifest | 4 | ||||
-rw-r--r-- | app-doc/selfhtml/selfhtml-8.0-r1.ebuild | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-doc/selfhtml/Manifest b/app-doc/selfhtml/Manifest index 1c8ecb5cfdd0..91ec4f2547ea 100644 --- a/app-doc/selfhtml/Manifest +++ b/app-doc/selfhtml/Manifest @@ -1,4 +1,4 @@ -MD5 bb923284251ed8f6855473a38b52cf9f selfhtml-8.0-r1.ebuild 613 -MD5 6b20115d3b7ee153f6de0f6972cc44d3 ChangeLog 409 +MD5 555ad6c6e27c51e3dbe6e9660fbb4627 ChangeLog 408 MD5 035613e4ea415232c9b9fea9783994ce metadata.xml 221 +MD5 dd3c9a937ec82bff7b582e94494fc78a selfhtml-8.0-r1.ebuild 693 MD5 7806cf628ae7e19d57618c0fa53ab8fe files/digest-selfhtml-8.0-r1 124 diff --git a/app-doc/selfhtml/selfhtml-8.0-r1.ebuild b/app-doc/selfhtml/selfhtml-8.0-r1.ebuild index 57793934a1e7..90f7246b3030 100644 --- a/app-doc/selfhtml/selfhtml-8.0-r1.ebuild +++ b/app-doc/selfhtml/selfhtml-8.0-r1.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/selfhtml/selfhtml-8.0-r1.ebuild,v 1.1 2004/03/08 16:54:45 pylon Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/selfhtml/selfhtml-8.0-r1.ebuild,v 1.2 2004/03/25 00:43:50 pylon Exp $ S=${WORKDIR} +TARGET=/usr/share/doc/${PF}/html DESCRIPTION="\"The\" German HTML/XHTML/CSS/XML/DHTML/CGI/Perl/JavaScript Documentation" SRC_URI="http://www.stud.uni-goettingen.de/software/selfhtml80.zip http://selfaktuell.teamone.de/extras/selfhtml8err01.zip" @@ -14,5 +15,7 @@ KEYWORDS="x86 ppc sparc alpha mips hppa" IUSE="" src_install() { - dohtml -r * + dodir ${TARGET} + addwrite ${TARGET} + cp -R ${S}/* ${TARGET} } |