Magellan Linux

Annotation of /branches/magellan-next/core/make/make-3.82-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8066 - (hide annotations) (download)
Wed Jun 29 14:52:24 2011 UTC (12 years, 11 months ago) by niro
File size: 892 byte(s)
auto added: ver bump to 3.82-r3
1 niro 8066 # $Id$
2    
3     PNAME="make"
4     PVER="3.82"
5     PBUILD="r3"
6    
7     PCATEGORIE="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     )
26    
27     UP2DATE="updatecmd_gnu ${PNAME}"
28    
29     src_prepare()
30     {
31     munpack ${SRCFILE} || die
32     cd ${SRCDIR}
33    
34     # http://savannah.gnu.org/bugs/?30612
35     mpatch ${PNAME}-${PVER}-bug30612.patch || die
36    
37     # http://savannah.gnu.org/bugs/?30723
38     mpatch ${PNAME}-${PVER}-bug30723.patch || die
39    
40     # https://bugzilla.redhat.com/show_bug.cgi?id=643359
41     mpatch ${PNAME}-${PVER}-sort-blank.patch || die
42     }