Magellan Linux

Contents of /trunk/core/grep/grep-3.11-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33390 - (show annotations) (download)
Fri Jul 14 17:41:15 2023 UTC (10 months, 1 week ago) by niro
File size: 601 byte(s)
-ver bump to 3.11-r
1 # $Id$
2
3 PNAME="grep"
4 PVER="3.11"
5 PBUILD="r1"
6
7 PCAT="sys-apps"
8
9 DESCRIPTION="GNU regular expression matcher."
10 HOMEPAGE="http://www.gnu.org/software/grep/grep.html"
11
12 DEPEND=">= virtual/glibc
13 >= dev-libs/libpcre-8.45"
14 SDEPEND=">= sys-dev/gettext-0.18"
15 PROVIDE="virtual/grep"
16
17 SRCFILE="${PNAME}-${PVER}.tar.xz"
18 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
19
20 # one test fails
21 msetfeature "!check"
22 sminclude mbuild
23
24 SRC_URI=(
25 gnu://${PNAME}/${SRCFILE}
26 mirror://${PNAME}/${SRCFILE}
27 )
28
29 UP2DATE="updatecmd_gnu ${PNAME} xz"
30
31 src_compile()
32 {
33 cd ${SRCDIR}
34
35 mconfigure --without-included-regex || die
36 mmake || die
37 }