Magellan Linux

Contents of /trunk/core/fontconfig/fontconfig-2.12.2-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 29339 - (show annotations) (download)
Thu Jun 1 10:32:33 2017 UTC (7 years ago) by niro
File size: 2583 byte(s)
auto added: ver bump to 2.12.2-r1
1 # $Id$
2
3 PNAME="fontconfig"
4 PVER="2.12.2"
5 PBUILD="r1"
6
7 PCAT="media-libs"
8
9 DESCRIPTION="fontconfig is a library for configuring and customizing font access."
10 HOMEPAGE="http://fontconfig.org/"
11
12 DEPEND=">= media-libs/freetype-2.6
13 >= dev-libs/expat-2"
14
15 SDEPEND=">= virtual/sed
16 >= dev-util/gperf-3.1"
17
18 SRCFILE="${PNAME}-${PVER}.tar.gz"
19 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
20
21 sminclude multilib mtools
22
23 SRC_URI=(
24 http://fontconfig.org/release/${SRCFILE}
25 mirror://${PNAME}/${SRCFILE}
26 "mirror://${PNAME}/man-2.3.1/fc-cache.man man-2.3.1"
27 "mirror://${PNAME}/man-2.3.1/fc-list.man man-2.3.1"
28 mirror://${PNAME}/${PNAME}-2.12.1-freetype-271.patch
29 mirror://${PNAME}/${PNAME}-2.12.1-gperf31.patch
30 )
31
32 UP2DATE="updatecmd http://fontconfig.org/release/ | grep ${PNAME}- | highesttarball gz"
33
34 src_prepare()
35 {
36 munpack ${SRCFILE} || die
37
38 # fix ftbfs with freetype-2.7.1
39 mpatch ${PNAME}-2.12.1-freetype-271.patch || die
40 # fix ftbfs with gperf-3.1
41 mpatch ${PNAME}-2.12.1-gperf31.patch || die
42
43 # required by gperf-3.1 patch
44 mautoreconf || die
45 }
46
47 src_compile()
48 {
49 mconfigure \
50 --disable-docs \
51 --with-docdir=/usr/share/doc/${PNAME}-${PVER} \
52 --x-includes=/usr/include \
53 --x-libraries=/usr/$(mlibdir) \
54 --with-default-fonts=/usr/share/fonts \
55 --with-add-fonts=/usr/local/share/fonts \
56 || die
57
58 # does not like optimations
59 mmake -j1 || die
60
61 # remove Luxi TTF fonts from the list, the Type1 are much better
62 # all-abis 'sed -i "s:<dir>/usr/$(mlibdir)/X11/fonts/TTF</dir>::" fonts.conf' || die
63 }
64
65 src_install()
66 {
67 mmake DESTDIR=${BINDIR} install || die
68
69 # install font.conf
70 minstallfile fonts.conf /etc/fonts || die
71 minstallfile fonts.conf /etc/fonts/fonts.conf.new || die
72
73 # fc-lang directory contains language coverage datafiles
74 # which are needed to test the coverage of fonts.
75 minstalldir /usr/share/fc-lang || die
76 minstallfile fc-lang/\*.orth /usr/share/fc-lang || die
77
78 # install man-pages
79 # we're using prebuilded man pages to prevent docbook dependencies
80 minstalldir /usr/share/man/man1 || die
81 minstallfile -s man-2.3.1/fc-cache.man /usr/share/man/man1/fc-cache.1 || die
82 minstallfile -s man-2.3.1/fc-list.man /usr/share/man/man1/fc-list.1 || die
83 }
84
85 preinstall()
86 {
87 # delete this file if it exists
88 [ -f ${MROOT}/etc/fonts/fonts.conf.new ] && \
89 rm -f ${MROOT}/etc/fonts/fonts.conf.new
90 }
91
92 postinstall()
93 {
94 echo "Creating new font cache..."
95
96 # force update; config_protect will prevent this
97 mv -f ${MROOT}/etc/fonts/fonts.conf.new ${MROOT}/etc/fonts/fonts.conf
98 rm -f ${MROOT}/etc/fonts/._cfg????_fonts.conf
99 HOME="${MROOT}/root" ${MROOT}/usr/bin/fc-cache -sr
100 }