Magellan Linux

Annotation of /branches/R11-unstable/core/m4/m4-1.4.17-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 25015 - (hide annotations) (download)
Tue Nov 25 02:49:59 2014 UTC (9 years, 5 months ago) by niro
File size: 647 byte(s)
-release branches/R11-unstable
1 niro 21975 # $Id$
2    
3     PNAME="m4"
4     PVER="1.4.17"
5     PBUILD="r2"
6    
7     PCAT="sys-dev"
8    
9     DESCRIPTION="GNU macro processor."
10     HOMEPAGE="http://www.gnu.org/software/m4/m4.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}-1.4.14-fix-includes.patch
23     )
24    
25     UP2DATE="updatecmd_gnu ${PNAME}"
26    
27     src_prepare()
28     {
29     munpack ${SRCFILE} || die
30     cd ${SRCDIR}
31    
32     # fix missing includes
33     mpatch ${PNAME}-1.4.14-fix-includes.patch || die
34     }
35    
36    
37     src_compile()
38     {
39     cd ${SRCDIR}
40    
41     mconfigure --enable-changeword || die
42     mmake || die
43     }