diff options
author | 2006-01-12 15:21:48 +0000 | |
---|---|---|
committer | 2006-01-12 15:21:48 +0000 | |
commit | 2881cdf6c3b35d80658ea9f6735c17ccebb4501d (patch) | |
tree | 02d32394554b2ba4b27126c25e3dbe28e39de6cc /sci-astronomy/ds9/ds9-4.0_beta7.ebuild | |
parent | added celestia-1.4.0.ebuild (diff) | |
download | sci-2881cdf6c3b35d80658ea9f6735c17ccebb4501d.tar.gz sci-2881cdf6c3b35d80658ea9f6735c17ccebb4501d.tar.bz2 sci-2881cdf6c3b35d80658ea9f6735c17ccebb4501d.zip |
ds9-4.0_beta7.ebuild: added () for dohtml
git-svn-id: http://overlays.gentoo.org/svn/proj/science/overlay@46 32389bae-6d03-0410-99cf-db05cde120eb
Diffstat (limited to 'sci-astronomy/ds9/ds9-4.0_beta7.ebuild')
-rw-r--r-- | sci-astronomy/ds9/ds9-4.0_beta7.ebuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sci-astronomy/ds9/ds9-4.0_beta7.ebuild b/sci-astronomy/ds9/ds9-4.0_beta7.ebuild index 9521bbda1..ce2fb29c1 100644 --- a/sci-astronomy/ds9/ds9-4.0_beta7.ebuild +++ b/sci-astronomy/ds9/ds9-4.0_beta7.ebuild @@ -26,7 +26,7 @@ S=${WORKDIR}/sao${PN} src_unpack() { unpack ${A} cd ${S} - # The patch is to speed up the compilation + # The patch is to speed up the compilation # (avoid generating tcl man files for ex.) # and avoid local install bugs with symbolic linking. epatch ${FILESDIR}/${PN}-Makefile.patch @@ -38,15 +38,16 @@ src_compile() { use x86 && ln -s make.linux make.include use amd64 && ln -s make.linux64 make.include emake -j1 || die "emake failed" + # only install locally make install || die "make install (local) failed" } src_install () { - dobin bin/ds9 || die "dobin ds9 failed" + dobin bin/ds9 if use xpa; then - dobin bin/xpa* || die "dobin xpa failed" - doman man/man?/xpa* || die "doman xpa failed" + dobin bin/xpa* + doman man/man?/xpa* fi - dodoc README acknowledgement copyright || die "dodoc failed" - use doc && dohtml ds9/doc/* || die "dohtml failed" + dodoc README acknowledgement copyright + use doc && dohtml ds9/doc/* } |