Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/libmuscle: libmuscle-3.7-r2.ebuild ChangeLog
Date: Mon, 28 Jun 2010 20:37:46
Message-Id: 20100628203743.95F6A2C621@corvid.gentoo.org
1 jlec 10/06/28 20:37:43
2
3 Modified: ChangeLog
4 Added: libmuscle-3.7-r2.ebuild
5 Log:
6 Fix for bufferoverflow, #309341
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 sci-libs/libmuscle/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libmuscle/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libmuscle/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libmuscle/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libmuscle/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 7 Jul 2009 17:12:22 -0000 1.3
23 +++ ChangeLog 28 Jun 2010 20:37:43 -0000 1.4
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sci-libs/libmuscle
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libmuscle/ChangeLog,v 1.3 2009/07/07 17:12:22 weaver Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libmuscle/ChangeLog,v 1.4 2010/06/28 20:37:43 jlec Exp $
30 +
31 +*libmuscle-3.7-r2 (28 Jun 2010)
32 +
33 + 28 Jun 2010; Justin Lecher <jlec@g.o>
34 + +files/3.7-bufferoverflow.patch, +libmuscle-3.7-r2.ebuild:
35 + Fix for bufferoverflow, #309341
36
37 *libmuscle-3.7-r1 (07 Jul 2009)
38
39
40
41
42 1.1 sci-libs/libmuscle/libmuscle-3.7-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libmuscle/libmuscle-3.7-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libmuscle/libmuscle-3.7-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libmuscle-3.7-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-libs/libmuscle/libmuscle-3.7-r2.ebuild,v 1.1 2010/06/28 20:37:43 jlec Exp $
52
53 EAPI="2"
54
55 MY_TAG="mauve-2-3-0-release"
56 #ESVN_REPO_URI="https://mauve.svn.sourceforge.net/svnroot/mauve/muscle/tags/${MY_TAG}"
57
58 #inherit subversion autotools
59 inherit autotools eutils
60
61 DESCRIPTION="Library for sci-biology/mauve"
62 HOMEPAGE="http://gel.ahabs.wisc.edu/mauve/"
63 #SRC_URI=""
64 SRC_URI="mirror://gentoo/${P}-r1.tar.bz2"
65
66 LICENSE="public-domain"
67 SLOT="0"
68 IUSE="doc"
69 KEYWORDS="~amd64 ~x86"
70
71 DEPEND="doc? ( app-doc/doxygen )
72 !sci-biology/muscle"
73 RDEPEND=""
74
75 #S="${WORKDIR}"
76
77 src_prepare() {
78 epatch "${FILESDIR}"/${PV}-bufferoverflow.patch
79 eautoreconf
80 }
81
82 src_compile() {
83 emake -j1 || die
84 }
85
86 src_install() {
87 emake install DESTDIR="${D}" || die
88 }