Magellan Linux

Annotation of /smage/trunk/core/gawk/gawk-3.1.8-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1493 - (hide annotations) (download)
Thu Mar 3 14:21:43 2011 UTC (13 years, 2 months ago) by niro
File size: 799 byte(s)
-rev bump for mass rebuild
1 niro 1493 # $Id$
2    
3     PNAME="gawk"
4     PVER="3.1.8"
5     PBUILD="r2"
6    
7     PCATEGORIE="sys-apps"
8     STATE="unstable"
9    
10     DESCRIPTION="GNU awk pattern-matching language."
11     HOMEPAGE="http://www.gnu.org/software/gawk/gawk.html"
12    
13     DEPEND=">= virtual/glibc"
14    
15     SRCFILE="${PNAME}-${PVER}.tar.bz2"
16     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17    
18     MCORE_ONLY_KEEP="bin/gawk bin/awk"
19     sminclude mbuild mcore-split
20    
21     SRC_URI=(
22     gnu://${PNAME}/${SRCFILE}
23     mirror://${PNAME}/${SRCFILE}
24     )
25    
26     UP2DATE="updatecmd_gnu ${PNAME}"
27    
28     src_compile()
29     {
30     cd ${SRCDIR}
31    
32     mconfigure --libexecdir=/usr/$(mlibdir)/awk || die
33     mmake || die
34     }
35    
36     mcore_generic_src_install()
37     {
38     cd ${SRCDIR}
39    
40     minstall bindir=${BINDIR}/bin libexecdir=${BINDIR}/usr/$(mlibdir)/awk || die
41    
42     minstalldocs ABOUT-NLS AUTHORS COPYING ChangeLog FUTURES \
43     LIMITATIONS NEWS POSIX.STD PROBLEMS README || die
44     }