Magellan Linux

Contents of /trunk/core/make/make-4.2.1-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 32901 - (show annotations) (download)
Thu May 2 13:38:24 2019 UTC (4 years, 11 months ago) by niro
File size: 795 byte(s)
-added glibc-2.27 fixes
1 # $Id$
2
3 PNAME="make"
4 PVER="4.2.1"
5 PBUILD="r2"
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}-glob1.patch
23 mirror://${PNAME}/${PNAME}-${PVER}-glob2.patch
24 mirror://${PNAME}/${PNAME}-${PVER}-test-driver.patch
25 )
26
27 UP2DATE="updatecmd_gnu ${PNAME}"
28
29 src_prepare()
30 {
31 munpack ${SRCFILE} || die
32 cd ${SRCDIR}
33
34 # >=glibc-2.27 fixes
35 mpatch ${PNAME}-${PVER}-glob1.patch || die
36 mpatch ${PNAME}-${PVER}-glob2.patch || die
37
38 # fix broken perl test suite
39 mpatch ${PNAME}-${PVER}-test-driver.patch || die
40 }