Magellan Linux

Contents of /branches/R11-stable/core/make/make-3.82-r4.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 17778 - (show annotations) (download)
Wed Jun 26 12:30:18 2013 UTC (10 years, 11 months ago) by niro
File size: 1373 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="make"
4 PVER="3.82"
5 PBUILD="r4"
6
7 PCAT="sys-dev"
8
9 DESCRIPTION="Standard tool to compile source trees."
10 HOMEPAGE="http://www.gnu.org/software/make/make.html"
11
12 DEPEND=">= virtual/glibc"
13
14 SRCFILE="${PNAME}-${PVER}.tar.bz2"
15 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
16
17 sminclude mbuild
18
19 SRC_URI=(
20 gnu://${PNAME}/${SRCFILE}
21 mirror://${PNAME}/${SRCFILE}
22 mirror://${PNAME}/${PNAME}-${PVER}-bug30612.patch
23 mirror://${PNAME}/${PNAME}-${PVER}-bug30723.patch
24 mirror://${PNAME}/${PNAME}-${PVER}-sort-blank.patch
25 mirror://${PNAME}/${PNAME}-${PVER}-makeflags.patch
26 mirror://${PNAME}/${PNAME}-${PVER}-expensive-glob.patch
27 mirror://${PNAME}/${PNAME}-${PVER}-dont-prune-intermediate.patch
28 )
29
30 UP2DATE="updatecmd_gnu ${PNAME}"
31
32 src_prepare()
33 {
34 munpack ${SRCFILE} || die
35 cd ${SRCDIR}
36
37 # http://savannah.gnu.org/bugs/?30612
38 mpatch ${PNAME}-${PVER}-bug30612.patch || die
39
40 # http://savannah.gnu.org/bugs/?30723
41 mpatch ${PNAME}-${PVER}-bug30723.patch || die
42
43 # https://bugzilla.redhat.com/show_bug.cgi?id=643359
44 mpatch ${PNAME}-${PVER}-sort-blank.patch || die
45
46 # http://savannah.gnu.org/bugs/?33873
47 mpatch ${PNAME}-${PVER}-makeflags.patch || die
48
49 # http://lists.gnu.org/archive/html/bug-make/2011-04/msg00002.html
50 mpatch ${PNAME}-${PVER}-expensive-glob.patch || die
51
52 # http://savannah.gnu.org/bugs/?30653
53 mpatch ${PNAME}-${PVER}-dont-prune-intermediate.patch || die
54 }