diff options
author | Andrey Kislyuk <weaver@gentoo.org> | 2010-01-27 15:50:09 +0000 |
---|---|---|
committer | Andrey Kislyuk <weaver@gentoo.org> | 2010-01-27 15:50:09 +0000 |
commit | 2b0166d2e2848782452316d84e3e03d02406175c (patch) | |
tree | 713242a9eef05c87649e8c391219d434f1aee5e2 /sci-biology/plink | |
parent | Version bump (diff) | |
download | gentoo-2-2b0166d2e2848782452316d84e3e03d02406175c.tar.gz gentoo-2-2b0166d2e2848782452316d84e3e03d02406175c.tar.bz2 gentoo-2-2b0166d2e2848782452316d84e3e03d02406175c.zip |
Version bump
(Portage version: 2.2_rc30/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology/plink')
-rw-r--r-- | sci-biology/plink/ChangeLog | 9 | ||||
-rw-r--r-- | sci-biology/plink/plink-1.07.ebuild | 32 |
2 files changed, 39 insertions, 2 deletions
diff --git a/sci-biology/plink/ChangeLog b/sci-biology/plink/ChangeLog index 4a51e2ecc55b..ad70c60e313a 100644 --- a/sci-biology/plink/ChangeLog +++ b/sci-biology/plink/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-biology/plink -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/plink/ChangeLog,v 1.4 2009/08/05 21:16:10 maekke Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/plink/ChangeLog,v 1.5 2010/01/27 15:50:09 weaver Exp $ + +*plink-1.07 (27 Jan 2010) + + 27 Jan 2010; Andrey Kislyuk <weaver@gentoo.org> +plink-1.07.ebuild: + Version bump 05 Aug 2009; Markus Meier <maekke@gentoo.org> plink-1.06.ebuild: x86 stable, bug #279345 diff --git a/sci-biology/plink/plink-1.07.ebuild b/sci-biology/plink/plink-1.07.ebuild new file mode 100644 index 000000000000..0ead9c877de2 --- /dev/null +++ b/sci-biology/plink/plink-1.07.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/plink/plink-1.07.ebuild,v 1.1 2010/01/27 15:50:09 weaver Exp $ + +EAPI="2" + +DESCRIPTION="Whole genome association analysis toolset" +HOMEPAGE="http://pngu.mgh.harvard.edu/~purcell/plink/" +SRC_URI="http://pngu.mgh.harvard.edu/~purcell/plink/dist/${P}-src.zip" + +LICENSE="GPL-2" +SLOT="0" +IUSE="-webcheck" +KEYWORDS="~amd64 ~x86" + +DEPEND="app-arch/unzip" +RDEPEND="" + +S="${WORKDIR}/${P}-src" + +# Package collides with net-misc/putty. Renamed to p-link following discussion with Debian. +# Package contains bytecode-only jar gPLINK.jar. Ignored, notified upstream. + +src_prepare() { + sed -i -e '/CXXFLAGS =/ s/^/#/' -e 's/-static//' "${S}/Makefile" || die + use webcheck || sed -i '/WITH_WEBCHECK =/ s/^/#/' "${S}/Makefile" || die +} + +src_install() { + newbin plink p-link || die + dodoc README.txt +} |