Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/make: ChangeLog make-3.82-r4.ebuild
Date: Sat, 03 Dec 2011 00:57:45
Message-Id: 20111203005725.6BBB82004C@flycatcher.gentoo.org
1 vapier 11/12/03 00:57:25
2
3 Modified: ChangeLog
4 Added: make-3.82-r4.ebuild
5 Log:
6 Add some more fixes from upstream, and forward port the long cmdline patch from 3.81 #300867 by Alexander Vershilov.
7
8 (Portage version: 2.2.0_alpha75/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.92 sys-devel/make/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.92&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.92&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?r1=1.91&r2=1.92
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
20 retrieving revision 1.91
21 retrieving revision 1.92
22 diff -u -r1.91 -r1.92
23 --- ChangeLog 20 Oct 2011 18:08:45 -0000 1.91
24 +++ ChangeLog 3 Dec 2011 00:57:25 -0000 1.92
25 @@ -1,6 +1,14 @@
26 # ChangeLog for sys-devel/make
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.91 2011/10/20 18:08:45 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.92 2011/12/03 00:57:25 vapier Exp $
30 +
31 +*make-3.82-r4 (03 Dec 2011)
32 +
33 + 03 Dec 2011; Mike Frysinger <vapier@g.o> +make-3.82-r4.ebuild,
34 + +files/make-3.82-copy-on-expand.patch, +files/make-3.82-long-cmdline.patch,
35 + +files/make-3.82-oneshell.patch, +files/make-3.82-parallel-remake.patch:
36 + Add some more fixes from upstream, and forward port the long cmdline patch
37 + from 3.81 #300867 by Alexander Vershilov.
38
39 20 Oct 2011; Brent Baude <ranger@g.o> make-3.82-r1.ebuild:
40 Marking make-3.82-r1 ppc for bug 381199
41
42
43
44 1.1 sys-devel/make/make-3.82-r4.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/make-3.82-r4.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/make-3.82-r4.ebuild?rev=1.1&content-type=text/plain
48
49 Index: make-3.82-r4.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r4.ebuild,v 1.1 2011/12/03 00:57:25 vapier Exp $
54
55 EAPI="2"
56
57 inherit flag-o-matic eutils
58
59 DESCRIPTION="Standard tool to compile source trees"
60 HOMEPAGE="http://www.gnu.org/software/make/make.html"
61 SRC_URI="mirror://gnu//make/${P}.tar.bz2"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 #KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
66 IUSE="nls static"
67
68 DEPEND="nls? ( sys-devel/gettext )"
69 RDEPEND="nls? ( virtual/libintl )"
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${P}-archives-many-objs.patch #334889
73 epatch "${FILESDIR}"/${P}-MAKEFLAGS-reexec.patch #31975
74 epatch "${FILESDIR}"/${P}-memory-corruption.patch #355907
75 epatch "${FILESDIR}"/${P}-glob-speedup.patch #382845
76 epatch "${FILESDIR}"/${P}-copy-on-expand.patch
77 epatch "${FILESDIR}"/${P}-oneshell.patch
78 epatch "${FILESDIR}"/${P}-parallel-remake.patch
79 epatch "${FILESDIR}"/${P}-long-cmdline.patch #300867 #301116
80 }
81
82 src_configure() {
83 use static && append-ldflags -static
84 econf \
85 --program-prefix=g \
86 $(use_enable nls)
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die
91 dodoc AUTHORS ChangeLog NEWS README*
92 if [[ ${USERLAND} == "GNU" ]] ; then
93 # we install everywhere as 'gmake' but on GNU systems,
94 # symlink 'make' to 'gmake'
95 dosym gmake /usr/bin/make
96 dosym gmake.1 /usr/share/man/man1/make.1
97 fi
98 }