diff options
author | 2005-10-18 01:05:39 +0000 | |
---|---|---|
committer | 2005-10-18 01:05:39 +0000 | |
commit | 2c00a0850ee9884aa034210651e653f23e46c257 (patch) | |
tree | 859d3c53ba86dffe8f82641e3528eb2d36b3759d /sci-biology | |
parent | Mark 0.101 stable on alpha (diff) | |
download | historical-2c00a0850ee9884aa034210651e653f23e46c257.tar.gz historical-2c00a0850ee9884aa034210651e653f23e46c257.tar.bz2 historical-2c00a0850ee9884aa034210651e653f23e46c257.zip |
Ebuild clean-up. Corrected home page.
Package-Manager: portage-2.0.51.22-r3
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/elph/ChangeLog | 5 | ||||
-rw-r--r-- | sci-biology/elph/elph-0.1.5.ebuild | 24 |
2 files changed, 16 insertions, 13 deletions
diff --git a/sci-biology/elph/ChangeLog b/sci-biology/elph/ChangeLog index fce7425f4af5..a447583d7f72 100644 --- a/sci-biology/elph/ChangeLog +++ b/sci-biology/elph/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-biology/elph # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/elph/ChangeLog,v 1.7 2005/03/04 22:57:32 j4rg0n Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/elph/ChangeLog,v 1.8 2005/10/18 01:05:39 ribosome Exp $ + + 18 Oct 2005; Olivier Fisette <ribosome@gentoo.org> elph-0.1.5.ebuild: + Ebuild clean-up. Corrected home page. 04 Mar 2005; Lina Pezzella <j4rg0n@gentoo.org> elph-0.1.5.ebuild Stable ppc-macos diff --git a/sci-biology/elph/elph-0.1.5.ebuild b/sci-biology/elph/elph-0.1.5.ebuild index 3792875f792b..0d7d77b6a1d0 100644 --- a/sci-biology/elph/elph-0.1.5.ebuild +++ b/sci-biology/elph/elph-0.1.5.ebuild @@ -1,37 +1,37 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/elph/elph-0.1.5.ebuild,v 1.6 2005/03/04 22:57:32 j4rg0n Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/elph/elph-0.1.5.ebuild,v 1.7 2005/10/18 01:05:39 ribosome Exp $ inherit eutils toolchain-funcs DESCRIPTION="Estimated Locations of Pattern Hits - Motif finder program" -HOMEPAGE="http://www.tigr.org/software/ELPH/index.shtml" -SRC_URI="ftp://ftp.tigr.org/pub/software/ELPH/ELPH-${PV}.tar.gz" LICENSE="Artistic" +HOMEPAGE="http://cbcb.umd.edu/software/ELPH/" +SRC_URI="ftp://ftp.cbcb.umd.edu/pub/software/elph/ELPH-${PV}.tar.gz" SLOT="0" -KEYWORDS="x86 ppc-macos" IUSE="" +KEYWORDS="x86 ppc-macos" S="${WORKDIR}/ELPH/sources" src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/${P}-usage.patch + cd "${S}" + epatch "${FILESDIR}"/${P}-usage.patch sed -i -e "s/CC := g++/CC := $(tc-getCXX)/" \ -e "s/-fno-exceptions -fno-rtti -D_REENTRANT -g/${CXXFLAGS}/" \ -e "s/LINKER := g++/LINKER := $(tc-getCXX)/" \ - Makefile || die + Makefile || die "Failed to patch Makefile." } src_compile() { - make || die + make || die "Compilation failed." } src_install() { - dobin elph - cd ${WORKDIR}/ELPH - dodoc VERSION - newdoc Readme.ELPH README + dobin elph || "Failed to install program." + cd "${WORKDIR}"/ELPH + dodoc VERSION || die "Documentation installation failed." + newdoc Readme.ELPH README || die "Readme installation failed." } |