diff options
author | Andrey Kislyuk <weaver@gentoo.org> | 2009-07-08 03:50:03 +0000 |
---|---|---|
committer | Andrey Kislyuk <weaver@gentoo.org> | 2009-07-08 03:50:03 +0000 |
commit | 9a140813e9594f836733fec6f6a4ac8ecdf058e3 (patch) | |
tree | b1d5396f48a52f5441ba97288c2755ad1b859d81 /sci-biology | |
parent | Stable for HPPA (bug #276852). (diff) | |
download | gentoo-2-9a140813e9594f836733fec6f6a4ac8ecdf058e3.tar.gz gentoo-2-9a140813e9594f836733fec6f6a4ac8ecdf058e3.tar.bz2 gentoo-2-9a140813e9594f836733fec6f6a4ac8ecdf058e3.zip |
Typo and collision fixes
(Portage version: 2.2_rc30/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/allpaths/ChangeLog | 5 | ||||
-rw-r--r-- | sci-biology/allpaths/allpaths-2.0.ebuild | 10 |
2 files changed, 11 insertions, 4 deletions
diff --git a/sci-biology/allpaths/ChangeLog b/sci-biology/allpaths/ChangeLog index ef233e7ad61e..470981c22678 100644 --- a/sci-biology/allpaths/ChangeLog +++ b/sci-biology/allpaths/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-biology/allpaths # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/allpaths/ChangeLog,v 1.1 2009/07/07 23:09:24 weaver Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/allpaths/ChangeLog,v 1.2 2009/07/08 03:50:03 weaver Exp $ + + 07 Jul 2009; Andrey Kislyuk <weaver@gentoo.org> allpaths-2.0.ebuild: + Typo and collision fixes *allpaths-2.0 (07 Jul 2009) diff --git a/sci-biology/allpaths/allpaths-2.0.ebuild b/sci-biology/allpaths/allpaths-2.0.ebuild index c6da62f0c1eb..3d8192db7c3f 100644 --- a/sci-biology/allpaths/allpaths-2.0.ebuild +++ b/sci-biology/allpaths/allpaths-2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/allpaths/allpaths-2.0.ebuild,v 1.1 2009/07/07 23:09:24 weaver Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/allpaths/allpaths-2.0.ebuild,v 1.2 2009/07/08 03:50:03 weaver Exp $ EAPI="2" @@ -21,12 +21,16 @@ RDEPEND="" S="${WORKDIR}" src_prepare() { - rm -f libxerces* || die + rm -rf libxerces* xerces_include || die } src_install() { rm -rf bin/auxfiles - dobin bin/* || die + exeinto /usr/share/${PN}/bin + doexe bin/* || die + echo "PATH=\"/usr/share/${PN}/bin\"" > "${S}/99${PN}" + doenvd "${S}/99${PN}" || die + dosym /usr/share/${PN}/bin/RunAllPaths /usr/bin/RunAllPaths || die insinto /usr/share/doc/${PF} doins "${DISTDIR}/${P}.manual.docx" } |