diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2006-01-21 18:11:39 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2006-01-21 18:11:39 +0000 |
commit | 73e64f5017a7285cafa45f94040bc83a1d77f10f (patch) | |
tree | 78ba60b7e189318e052df4aa826730c08ae61ffb /sci-biology/rnaview | |
parent | added to ~ppc, bug #119099 (diff) | |
download | historical-73e64f5017a7285cafa45f94040bc83a1d77f10f.tar.gz historical-73e64f5017a7285cafa45f94040bc83a1d77f10f.tar.bz2 historical-73e64f5017a7285cafa45f94040bc83a1d77f10f.zip |
Ebuild clean-up
Package-Manager: portage-2.0.53
Diffstat (limited to 'sci-biology/rnaview')
-rw-r--r-- | sci-biology/rnaview/ChangeLog | 8 | ||||
-rw-r--r-- | sci-biology/rnaview/rnaview-20040713.ebuild | 18 |
2 files changed, 15 insertions, 11 deletions
diff --git a/sci-biology/rnaview/ChangeLog b/sci-biology/rnaview/ChangeLog index bb50324b04cf..acee81d8e40c 100644 --- a/sci-biology/rnaview/ChangeLog +++ b/sci-biology/rnaview/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-biology/rnaview -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/rnaview/ChangeLog,v 1.5 2005/05/13 01:16:49 ribosome Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/rnaview/ChangeLog,v 1.6 2006/01/21 18:11:39 ribosome Exp $ + + 21 Jan 2006; Olivier Fisette <ribosome@gentoo.org> + rnaview-20040713.ebuild: + Ebuild clean-up. *rnaview-20040713 (13 May 2005) diff --git a/sci-biology/rnaview/rnaview-20040713.ebuild b/sci-biology/rnaview/rnaview-20040713.ebuild index b6187c2070ae..c878e495ccb8 100644 --- a/sci-biology/rnaview/rnaview-20040713.ebuild +++ b/sci-biology/rnaview/rnaview-20040713.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/rnaview/rnaview-20040713.ebuild,v 1.1 2005/05/13 01:16:49 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/rnaview/rnaview-20040713.ebuild,v 1.2 2006/01/21 18:11:39 ribosome Exp $ inherit toolchain-funcs @@ -15,7 +15,7 @@ IUSE="" src_unpack() { unpack ${A} - cd ${S} + cd "${S}" sed -e "s/CC = cc/CC = $(tc-getCC)/" \ -e "s/CFLAGS =/CFLAGS = ${CFLAGS}/" \ -i Makefile || die @@ -24,16 +24,16 @@ src_unpack() { src_compile() { make clean make || die - cd ${S}/rnaml2ps + cd "${S}"/rnaml2ps make clean make || die - cd ${S}/test + cd "${S}"/test rm '.#t' } src_install() { - dobin bin/rnaview rnaml2ps/rnaml2ps - dodoc README - mkdir -p ${D}/usr/share/${PN} - cp -r BASEPARS test ${D}/usr/share/${PN} + dobin bin/rnaview rnaml2ps/rnaml2ps || die + dodoc README || die + mkdir -p "${D}"/usr/share/${PN} + cp -r BASEPARS test "${D}"/usr/share/${PN} } |