recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / xorg / lib / libXfont2 / recipe
blob60cc9bbaa5275c0986c151f2b6c65e18a6444062
1 # Build recipe for libXfont2.
3 # Copyright (c) 2017 Mateus P. Rodrigues <mprodrigues@dragora.org>.
4 # Copyright (c) 2017-2019, 2022 Matias Fonzo, <selk@dragora.org>.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 #    http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 # Exit immediately on any error
19 set -e
21 program=libXfont2
22 version=2.0.5
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=xorg_lib
28 tarname=${program}-${version}.tar.bz2
30 # Remote source(s)
31 fetch=https://www.x.org/releases/individual/lib/$tarname
33 description="
34 The core of the legacy X11 font system.
36 libXfont provides the core of the legacy X11 font system, handling the
37 index files (fonts.dir, fonts.alias, fonts.scale), the various font
38 file formats, nd rasterizing them.  It is used by the X servers, and
39 will eventually be used by the X Font Server (xfs), but should not be
40 used by normal X11 clients.  X11 clients access fonts via either the
41 new APIs in libXft, or the legacy APIs in libX11.
44 homepage=https://www.x.org
45 license="MIT X Consortium"
47 # Source documentation
48 docs="AUTHORS COPYING ChangeLog README.md"
49 docsdir="${docdir}/${program}-${version}"
51 build()
53     unpack "${tardir}/$tarname"
55     cd "$srcdir"
57     # Set sane permissions
58     chmod -R u+w,go-w,a+rX-s .
60     ./configure CPPFLAGS="$QICPPFLAGS" \
61     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
62      $configure_args \
63      --libdir=/usr/lib${libSuffix} \
64      --mandir=$mandir \
65      --docdir=$docsdir \
66      --enable-shared=yes \
67      --enable-static=no \
68      --enable-ipv6=yes \
69      --enable-snfformat \
70      --with-bzip2 \
71      --build="$(gcc -dumpmachine)"
73     make -j${jobs} V=1
74     make -j${jobs} DESTDIR="$destdir" install-strip
76     # Compress and link man pages (if needed)
77     if test -d "${destdir}/$mandir"
78     then
79         (
80             cd "${destdir}/$mandir"
81             find . -type f -exec lzip -9 {} +
82             find . -type l | while read -r file
83             do
84                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
85                 rm -- "$file"
86             done
87         )
88     fi
90     # Copy documentation
91     mkdir -p "${destdir}/$docsdir"
92     cp -p $docs "${destdir}/$docsdir"