diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-06-28 20:37:43 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-06-28 20:37:43 +0000 |
commit | 29e4bd6e5bf0ae91a330a18a12602277d1396b8e (patch) | |
tree | 5ba5200525379c9ab52bfd3ce149ab8fdf51a676 /sci-libs/libmuscle/libmuscle-3.7-r2.ebuild | |
parent | Revbump. Fix bug 248669 and 318033. Some QA fixes. Add a Makefile patch to us... (diff) | |
download | gentoo-2-29e4bd6e5bf0ae91a330a18a12602277d1396b8e.tar.gz gentoo-2-29e4bd6e5bf0ae91a330a18a12602277d1396b8e.tar.bz2 gentoo-2-29e4bd6e5bf0ae91a330a18a12602277d1396b8e.zip |
Fix for bufferoverflow, #309341
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/libmuscle/libmuscle-3.7-r2.ebuild')
-rw-r--r-- | sci-libs/libmuscle/libmuscle-3.7-r2.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/sci-libs/libmuscle/libmuscle-3.7-r2.ebuild b/sci-libs/libmuscle/libmuscle-3.7-r2.ebuild new file mode 100644 index 000000000000..55e61bb87898 --- /dev/null +++ b/sci-libs/libmuscle/libmuscle-3.7-r2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libmuscle/libmuscle-3.7-r2.ebuild,v 1.1 2010/06/28 20:37:43 jlec Exp $ + +EAPI="2" + +MY_TAG="mauve-2-3-0-release" +#ESVN_REPO_URI="https://mauve.svn.sourceforge.net/svnroot/mauve/muscle/tags/${MY_TAG}" + +#inherit subversion autotools +inherit autotools eutils + +DESCRIPTION="Library for sci-biology/mauve" +HOMEPAGE="http://gel.ahabs.wisc.edu/mauve/" +#SRC_URI="" +SRC_URI="mirror://gentoo/${P}-r1.tar.bz2" + +LICENSE="public-domain" +SLOT="0" +IUSE="doc" +KEYWORDS="~amd64 ~x86" + +DEPEND="doc? ( app-doc/doxygen ) + !sci-biology/muscle" +RDEPEND="" + +#S="${WORKDIR}" + +src_prepare() { + epatch "${FILESDIR}"/${PV}-bufferoverflow.patch + eautoreconf +} + +src_compile() { + emake -j1 || die +} + +src_install() { + emake install DESTDIR="${D}" || die +} |