diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2010-09-01 15:16:59 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2010-09-01 15:16:59 +0000 |
commit | dc4c1bb3d69a53120483249cd0e08e36b26df2e4 (patch) | |
tree | bd4f14cd6193e5b4693d7bf5c4817b2f122e1dec /sci-biology | |
parent | Respect CC,CFLAGS,LDFLAGS. Fixes bug 335520. Thanks to Diego for the report. ... (diff) | |
download | gentoo-2-dc4c1bb3d69a53120483249cd0e08e36b26df2e4.tar.gz gentoo-2-dc4c1bb3d69a53120483249cd0e08e36b26df2e4.tar.bz2 gentoo-2-dc4c1bb3d69a53120483249cd0e08e36b26df2e4.zip |
Respect CC,CFLAGS,LDFLAGS wrt bug 335553. Thanks to Diego for the report.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/sim4/ChangeLog | 10 | ||||
-rw-r--r-- | sci-biology/sim4/sim4-20030921-r1.ebuild | 26 |
2 files changed, 34 insertions, 2 deletions
diff --git a/sci-biology/sim4/ChangeLog b/sci-biology/sim4/ChangeLog index d9e20c24a2fe..c5954ed895d2 100644 --- a/sci-biology/sim4/ChangeLog +++ b/sci-biology/sim4/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-biology/sim4 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/sim4/ChangeLog,v 1.7 2007/03/25 03:03:48 kugelfang Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/sim4/ChangeLog,v 1.8 2010/09/01 15:16:59 xarthisius Exp $ + +*sim4-20030921-r1 (01 Sep 2010) + + 01 Sep 2010; Kacper Kowalik <xarthisius@gentoo.org> + +sim4-20030921-r1.ebuild: + Respect CC,CFLAGS,LDFLAGS wrt bug 335553. Thanks to Diego for the report. 25 Mar 2007; Danny van Dyk <kugelfang@gentoo.org> sim4-20030921.ebuild: QA: Removed redundant src_compile(). diff --git a/sci-biology/sim4/sim4-20030921-r1.ebuild b/sci-biology/sim4/sim4-20030921-r1.ebuild new file mode 100644 index 000000000000..193fe619971a --- /dev/null +++ b/sci-biology/sim4/sim4-20030921-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/sim4/sim4-20030921-r1.ebuild,v 1.1 2010/09/01 15:16:59 xarthisius Exp $ + +inherit toolchain-funcs + +DESCRIPTION="A program to align cDNA and genomic DNA" +HOMEPAGE="http://globin.cse.psu.edu/html/docs/sim4.html" +SRC_URI="http://globin.cse.psu.edu/ftp/dist/sim4/sim4.tar.gz" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +S=${WORKDIR}/${PN}.2003-09-21 + +src_compile() { + echo "$(tc-getCC) -o ${PN} ${LDFLAGS} -I. ${CFLAGS} *.c -lm" + $(tc-getCC) -o ${PN} ${LDFLAGS} -I. ${CFLAGS} *.c -lm || die +} + +src_install() { + dobin ${PN} || die + dodoc README.* VERSION || die +} |