Ravenports generated: 11 May 2018 13:04
[ravenports.git] / bucket_F4 / xorg-xfont
1 # Buildsheet autogenerated by ravenadm tool -- Do not edit.
2
3 NAMEBASE=               xorg-xfont
4 VERSION=                1.5.4
5 KEYWORDS=               x11_fonts
6 VARIANTS=               standard
7 SDESC[standard]=        X font library
8 HOMEPAGE=               https://www.x.org/
9 CONTACT=                nobody
10
11 DOWNLOAD_GROUPS=        main
12 SITES[main]=            XORG/individual/lib
13 DISTFILE[1]=            libXfont-1.5.4.tar.bz2:main
14 DIST_SUBDIR=            xorg
15 DF_INDEX=               1
16 SPKGS[standard]=        single
17
18 OPTIONS_AVAILABLE=      none
19 OPTIONS_STANDARD=       none
20
21 BUILDRUN_DEPENDS=       freetype:primary:standard
22
23 USES=                   cpe libtool zlib
24 XORG_COMPONENTS=        xorgproto xtransproto fontenc
25
26 DISTNAME=               libXfont-1.5.4
27
28 LICENSE=                MIT:single
29 LICENSE_FILE=           MIT:{{WRKSRC}}/COPYING
30 LICENSE_SCHEME=         solo
31
32 CPE_PRODUCT=            libxfont
33 CPE_VENDOR=             x
34 FPC_EQUIVALENT=         x11-fonts/libXfont
35
36 MUST_CONFIGURE=         gnu
37 CONFIGURE_ARGS=         --without-xmlto
38                         --disable-devel-docs
39
40 INSTALL_TARGET=         install-strip
41
42 [FILE:41:descriptions/desc.single]
43 This package contains the X font libary.
44
45
46 [FILE:106:distinfo]
47 1a7f7490774c87f2052d146d1e0e64518d32e6848184a18654e8d0bb57883242       528883 xorg/libXfont-1.5.4.tar.bz2
48
49
50 [FILE:265:manifests/plist.single]
51 include/X11/fonts/
52  bdfint.h
53  bitmap.h
54  bufio.h
55  fntfil.h
56  fntfilio.h
57  fntfilst.h
58  fontconf.h
59  fontencc.h
60  fontmisc.h
61  fontshow.h
62  fontutil.h
63  fontxlfd.h
64  ft.h
65  ftfuncs.h
66  pcf.h
67 lib/
68  libXfont.a
69  libXfont.so
70  libXfont.so.1
71  libXfont.so.1.4.1
72 lib/pkgconfig/xfont.pc
73
74
75 [FILE:391:patches/patch-src_bitmap_pcfread.c]
76 --- src/bitmap/pcfread.c.orig   2017-11-28 14:34:21 UTC
77 +++ src/bitmap/pcfread.c
78 @@ -46,6 +46,18 @@ from The Open Group.
79  #include <stdint.h>
80  #include <string.h>
81  
82 +#ifdef __sun__
83 +static size_t
84 +strnlen(const char *s, size_t maxlen)
85 +{
86 +       size_t len;
87 +       for (len = 0; len < maxlen; len++, s++) {
88 +               if (!*s) break;
89 +       }
90 +       return (len);
91 +}
92 +#endif
93 +
94  void
95  pcfError(const char* message, ...)
96  {
97