recipe 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. # Build recipe for libXfont2.
  2. #
  3. # Copyright (c) 2017 Mateus P. Rodrigues <mprodrigues@dragora.org>.
  4. # Copyright (c) 2017-2019, 2022 Matias Fonzo, <selk@dragora.org>.
  5. #
  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
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  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.
  17. # Exit immediately on any error
  18. set -e
  19. program=libXfont2
  20. version=2.0.6
  21. release=1
  22. # Define a category for the output of the package name
  23. pkgcategory=xorg_lib
  24. tarname=${program}-${version}.tar.gz
  25. # Remote source(s)
  26. fetch=https://www.x.org/releases/individual/lib/$tarname
  27. description="
  28. The core of the legacy X11 font system.
  29. libXfont provides the core of the legacy X11 font system, handling the
  30. index files (fonts.dir, fonts.alias, fonts.scale), the various font
  31. file formats, nd rasterizing them. It is used by the X servers, and
  32. will eventually be used by the X Font Server (xfs), but should not be
  33. used by normal X11 clients. X11 clients access fonts via either the
  34. new APIs in libXft, or the legacy APIs in libX11.
  35. "
  36. homepage=https://www.x.org
  37. license="MIT X Consortium"
  38. # Source documentation
  39. docs="AUTHORS COPYING ChangeLog README.md"
  40. docsdir="${docdir}/${program}-${version}"
  41. build()
  42. {
  43. unpack "${tardir}/$tarname"
  44. cd "$srcdir"
  45. # Set sane permissions
  46. chmod -R u+w,go-w,a+rX-s .
  47. ./configure CPPFLAGS="$QICPPFLAGS" \
  48. CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
  49. $configure_args \
  50. --libdir=/usr/lib${libSuffix} \
  51. --mandir=$mandir \
  52. --docdir=$docsdir \
  53. --enable-shared=yes \
  54. --enable-static=no \
  55. --enable-ipv6=yes \
  56. --enable-snfformat \
  57. --with-bzip2 \
  58. --build="$(gcc -dumpmachine)"
  59. make -j${jobs} V=1
  60. make -j${jobs} DESTDIR="$destdir" install-strip
  61. # Compress and link man pages (if needed)
  62. if test -d "${destdir}/$mandir"
  63. then
  64. (
  65. cd "${destdir}/$mandir"
  66. find . -type f -exec lzip -9 {} +
  67. find . -type l | while read -r file
  68. do
  69. ln -sf "$(readlink -- "$file").lz" "${file}.lz"
  70. rm -- "$file"
  71. done
  72. )
  73. fi
  74. # Copy documentation
  75. mkdir -p "${destdir}/$docsdir"
  76. cp -p $docs "${destdir}/$docsdir"
  77. }