Ravenports generated: 17 Apr 2023 15:41
[ravenports.git] / bucket_D3 / agrep
1 # Buildsheet autogenerated by ravenadm tool -- Do not edit.
2
3 NAMEBASE=               agrep
4 VERSION=                3.41.5
5 KEYWORDS=               textproc
6 VARIANTS=               standard
7 SDESC[standard]=        Approximate GREP for fast fuzzy string searching
8 HOMEPAGE=               https://github.com/Wikinaut/agrep
9 CONTACT=                Michael_Reim[kraileth@elderlinux.org]
10
11 DOWNLOAD_GROUPS=        main copying
12 SITES[main]=            GITHUB/Wikinaut:agrep:7b7f350
13 DISTFILE[1]=            generated:main
14 DF_INDEX=               1
15 SPKGS[standard]=        single
16
17 OPTIONS_AVAILABLE=      none
18 OPTIONS_STANDARD=       none
19
20 USES=                   gmake
21
22 LICENSE=                ISCL:single
23 LICENSE_FILE=           ISCL:{{WRKSRC}}/COPYRIGHT
24 LICENSE_SCHEME=         solo
25
26 FPC_EQUIVALENT=         textproc/agrep
27
28 BUILD_TARGET=           agrep
29
30 do-install:
31         ${MKDIR} -p ${STAGEDIR}${PREFIX}/bin
32         ${INSTALL_PROGRAM} ${WRKSRC}/agrep ${STAGEDIR}${PREFIX}/bin/agrep
33
34 [FILE:192:descriptions/desc.single]
35 AGREP "Approximate GREP" is a tool for fast fuzzy string searching. Files 
36 are searched for a string or regular expression, with approximate matching 
37 capabilities and user-definable records.
38
39
40 [FILE:108:distinfo]
41 d3d5bfd631359056d47ed2c8c37dc5f661c31074ae525a5386d9a0f455136123      3652802 Wikinaut-agrep-7b7f350.tar.gz
42
43
44 [FILE:10:manifests/plist.single]
45 bin/agrep
46
47
48 [FILE:307:patches/patch-checkfil.c]
49 --- checkfil.c.orig     2016-10-22 12:40:44 UTC
50 +++ checkfil.c
51 @@ -10,7 +10,7 @@
52  #include <ctype.h>
53  #include <fcntl.h>
54  #include <sys/types.h>
55 -#ifdef __APPLE__
56 +#if defined __APPLE__ || defined __DragonFly__ || defined __FreeBSD__ || defined __NetBSD__
57      #include <sys/stat.h>
58  #endif
59  #include <errno.h>
60
61
62 [FILE:307:patches/patch-newmgrep.c]
63 --- newmgrep.c.orig     2016-10-22 12:40:44 UTC
64 +++ newmgrep.c
65 @@ -16,7 +16,7 @@
66  #include <sys/types.h>
67  #endif
68  
69 -#if defined(_WIN32) || defined(__APPLE__)
70 +#if defined(_WIN32) || defined(__APPLE__) || defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__)
71      #include <sys/stat.h>
72  #endif
73  
74
75
76 [FILE:394:patches/patch-recursiv.c]
77 --- recursiv.c.orig     2016-10-22 12:40:44 UTC
78 +++ recursiv.c
79 @@ -21,6 +21,7 @@
80  
81  #include "autoconf.h"  /* ../libtemplate/include */
82  #include <stdio.h>
83 +#include <stdlib.h>
84  #include <sys/types.h>
85  
86  #if    ISO_CHAR_SET
87 @@ -53,7 +54,7 @@
88  
89  #endif
90  
91 -#ifdef __APPLE__
92 +#if defined __APPLE__ || defined __DragonFly__ || defined __FreeBSD__ || defined __NetBSD__
93      #include <sys/stat.h>
94  #endif
95  
96