diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-04-07 04:30:08 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-04-07 04:30:08 +0000 |
commit | 374578740e82bcd511851279305bb4641c363ce1 (patch) | |
tree | f2075b297d87e8c5f20d6fb32e273e4c6eeac3e0 /sci-chemistry/ccp4/ccp4-6.0.2.ebuild | |
parent | Stable on amd64, bug #171643. Brought forward ~ia64 keyword, and removed olde... (diff) | |
download | gentoo-2-374578740e82bcd511851279305bb4641c363ce1.tar.gz gentoo-2-374578740e82bcd511851279305bb4641c363ce1.tar.bz2 gentoo-2-374578740e82bcd511851279305bb4641c363ce1.zip |
Convert DOCDESTTREE usage into proper calls to "docinto".
(Portage version: 2.1.2.3)
Diffstat (limited to 'sci-chemistry/ccp4/ccp4-6.0.2.ebuild')
-rw-r--r-- | sci-chemistry/ccp4/ccp4-6.0.2.ebuild | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/sci-chemistry/ccp4/ccp4-6.0.2.ebuild b/sci-chemistry/ccp4/ccp4-6.0.2.ebuild index 89fd658ebc7e..cdf37f0a1089 100644 --- a/sci-chemistry/ccp4/ccp4-6.0.2.ebuild +++ b/sci-chemistry/ccp4/ccp4-6.0.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/ccp4/ccp4-6.0.2.ebuild,v 1.2 2007/03/15 17:04:05 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/ccp4/ccp4-6.0.2.ebuild,v 1.3 2007/04/07 04:30:08 vapier Exp $ inherit fortran eutils gnuconfig toolchain-funcs @@ -355,17 +355,20 @@ src_install() { rm -rf "${D}"/usr/html for i in data rnase toxd; do - DOCDESTTREE="examples/${i}" dodoc ${S}/examples/${i}/* + docinto examples/${i} + dodoc ${S}/examples/${i}/* done - DOCDESTTREE="examples/tutorial" dohtml -r ${S}/examples/tutorial/html - DOCDESTTREE="examples/tutorial" dohtml examples/tutorial/tut.css + docinto examples/tutorial + dohtml -r ${S}/examples/tutorial/html examples/tutorial/tut.css for i in data results; do - DOCDESTTREE="examples/tutorial/${i}" dodoc ${S}/examples/tutorial/${i}/* + docinto examples/tutorial/${i} + dodoc ${S}/examples/tutorial/${i}/* done for i in non-runnable runnable; do - DOCDESTTREE="examples/unix/${i}" dodoc ${S}/examples/unix/${i} + docinto examples/unix/${i} + dodoc ${S}/examples/unix/${i} done # Needed for ccp4i docs to work |