| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2010 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.1 2010/03/14 10:27:07 scarabeus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.18 2010/11/01 12:37:58 scarabeus Exp $ |
| 4 | # |
4 | # |
| 5 | # @ECLASS: xorg-2.eclass |
5 | # @ECLASS: xorg-2.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # x11@gentoo.org |
7 | # x11@gentoo.org |
| 8 | |
|
|
| 9 | # Author: Tomáš Chvátal <scarabeus@gentoo.org> |
|
|
| 10 | # Author: Donnie Berkholz <dberkholz@gentoo.org> |
|
|
| 11 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
| 12 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 13 | # This eclass makes trivial X ebuilds possible for apps, fonts, drivers, |
10 | # This eclass makes trivial X ebuilds possible for apps, fonts, drivers, |
| 14 | # and more. Many things that would normally be done in various functions |
11 | # and more. Many things that would normally be done in various functions |
| 15 | # can be accessed by setting variables instead, such as patching, |
12 | # can be accessed by setting variables instead, such as patching, |
| … | |
… | |
| 18 | # All you need to do in a basic ebuild is inherit this eclass and set |
15 | # All you need to do in a basic ebuild is inherit this eclass and set |
| 19 | # DESCRIPTION, KEYWORDS and RDEPEND/DEPEND. If your package is hosted |
16 | # DESCRIPTION, KEYWORDS and RDEPEND/DEPEND. If your package is hosted |
| 20 | # with the other X packages, you don't need to set SRC_URI. Pretty much |
17 | # with the other X packages, you don't need to set SRC_URI. Pretty much |
| 21 | # everything else should be automatic. |
18 | # everything else should be automatic. |
| 22 | |
19 | |
|
|
20 | # Author: Tomáš Chvátal <scarabeus@gentoo.org> |
|
|
21 | # Author: Donnie Berkholz <dberkholz@gentoo.org> |
|
|
22 | |
| 23 | GIT_ECLASS="" |
23 | GIT_ECLASS="" |
| 24 | if [[ ${PV} == *9999* ]]; then |
24 | if [[ ${PV} == *9999* ]]; then |
| 25 | GIT_ECLASS="git" |
25 | GIT_ECLASS="git" |
| 26 | XORG_EAUTORECONF="yes" |
26 | XORG_EAUTORECONF="yes" |
| 27 | SRC_URI="" |
27 | SRC_URI="" |
| … | |
… | |
| 42 | ${FONT_ECLASS} ${GIT_ECLASS} |
42 | ${FONT_ECLASS} ${GIT_ECLASS} |
| 43 | |
43 | |
| 44 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_postinst pkg_postrm" |
44 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_postinst pkg_postrm" |
| 45 | case "${EAPI:-0}" in |
45 | case "${EAPI:-0}" in |
| 46 | 3) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" ;; |
46 | 3) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" ;; |
| 47 | *) DEPEND="EAPI-UNSUPPORTED" ;; |
47 | *) die "EAPI-UNSUPPORTED" ;; |
| 48 | esac |
48 | esac |
| 49 | |
49 | |
| 50 | # exports must be ALWAYS after inherit |
50 | # exports must be ALWAYS after inherit |
| 51 | EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} |
51 | EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} |
| 52 | |
52 | |
| … | |
… | |
| 89 | : ${SLOT:=0} |
89 | : ${SLOT:=0} |
| 90 | |
90 | |
| 91 | # Set the license for the package. This can be overridden by setting |
91 | # Set the license for the package. This can be overridden by setting |
| 92 | # LICENSE after the inherit. Nearly all FreeDesktop-hosted X packages |
92 | # LICENSE after the inherit. Nearly all FreeDesktop-hosted X packages |
| 93 | # are under the MIT license. (This is what Red Hat does in their rpms) |
93 | # are under the MIT license. (This is what Red Hat does in their rpms) |
| 94 | : ${LICENSE=MIT} |
94 | : ${LICENSE:=MIT} |
| 95 | |
95 | |
| 96 | # Set up shared dependencies |
96 | # Set up shared dependencies |
| 97 | if [[ ${XORG_EAUTORECONF} != no ]]; then |
97 | if [[ ${XORG_EAUTORECONF} != no ]]; then |
| 98 | DEPEND+=" |
98 | DEPEND+=" |
| 99 | >=sys-devel/libtool-2.2.6a |
99 | >=sys-devel/libtool-2.2.6a |
| 100 | sys-devel/m4" |
100 | sys-devel/m4" |
| 101 | # This MUST BE STABLE |
101 | # This MUST BE STABLE |
| 102 | if [[ ${PN} != util-macros ]] ; then |
102 | if [[ ${PN} != util-macros ]] ; then |
| 103 | DEPEND+=" >=x11-misc/util-macros-1.5.0" |
103 | DEPEND+=" >=x11-misc/util-macros-1.11.0" |
| 104 | # Required even by xorg-server |
104 | # Required even by xorg-server |
| 105 | [[ ${PN} == "font-util" ]] || DEPEND+=" >=media-fonts/font-util-1.1.1-r1" |
105 | [[ ${PN} == "font-util" ]] || DEPEND+=" >=media-fonts/font-util-1.1.1-r1" |
| 106 | fi |
106 | fi |
| 107 | WANT_AUTOCONF="latest" |
107 | WANT_AUTOCONF="latest" |
| 108 | WANT_AUTOMAKE="latest" |
108 | WANT_AUTOMAKE="latest" |
| … | |
… | |
| 111 | if [[ ${FONT} == yes ]]; then |
111 | if [[ ${FONT} == yes ]]; then |
| 112 | RDEPEND+=" media-fonts/encodings |
112 | RDEPEND+=" media-fonts/encodings |
| 113 | x11-apps/mkfontscale |
113 | x11-apps/mkfontscale |
| 114 | x11-apps/mkfontdir" |
114 | x11-apps/mkfontdir" |
| 115 | PDEPEND+=" media-fonts/font-alias" |
115 | PDEPEND+=" media-fonts/font-alias" |
|
|
116 | DEPEND+=" >=media-fonts/font-util-1.1.1-r1" |
| 116 | |
117 | |
| 117 | # @ECLASS-VARIABLE: FONT_DIR |
118 | # @ECLASS-VARIABLE: FONT_DIR |
| 118 | # @DESCRIPTION: |
119 | # @DESCRIPTION: |
| 119 | # If you're creating a font package and the suffix of PN is not equal to |
120 | # If you're creating a font package and the suffix of PN is not equal to |
| 120 | # the subdirectory of /usr/share/fonts/ it should install into, set |
121 | # the subdirectory of /usr/share/fonts/ it should install into, set |
| … | |
… | |
| 135 | fi |
136 | fi |
| 136 | |
137 | |
| 137 | # If we're a driver package, then enable DRIVER case |
138 | # If we're a driver package, then enable DRIVER case |
| 138 | [[ ${PN} == xf86-video-* || ${PN} == xf86-input-* ]] && DRIVER="yes" |
139 | [[ ${PN} == xf86-video-* || ${PN} == xf86-input-* ]] && DRIVER="yes" |
| 139 | |
140 | |
|
|
141 | # @ECLASS-VARIABLE: XORG_STATIC |
|
|
142 | # @DESCRIPTION: |
|
|
143 | # Enables static-libs useflag. Set to no, if your package gets: |
|
|
144 | # |
|
|
145 | # QA: configure: WARNING: unrecognized options: --disable-static |
|
|
146 | : ${XORG_STATIC:="yes"} |
|
|
147 | |
| 140 | # Add static-libs useflag where usefull. |
148 | # Add static-libs useflag where usefull. |
|
|
149 | if [[ ${XORG_STATIC} == yes \ |
| 141 | if [[ ${FONT} != yes \ |
150 | && ${FONT} != yes \ |
| 142 | && ${CATEGORY} != app-doc \ |
151 | && ${CATEGORY} != app-doc \ |
|
|
152 | && ${CATEGORY} != x11-apps \ |
| 143 | && ${CATEGORY} != x11-proto \ |
153 | && ${CATEGORY} != x11-proto \ |
| 144 | && ${CATEGORY} != x11-drivers \ |
154 | && ${CATEGORY} != x11-drivers \ |
| 145 | && ${CATEGORY} != media-fonts \ |
155 | && ${CATEGORY} != media-fonts \ |
| 146 | && ${PN} != util-macros \ |
156 | && ${PN} != util-macros \ |
| 147 | && ${PN} != xbitmaps \ |
157 | && ${PN} != xbitmaps \ |
| … | |
… | |
| 155 | # Check deps on xorg-server |
165 | # Check deps on xorg-server |
| 156 | has dri ${IUSE//+} && DEPEND+=" dri? ( >=x11-base/xorg-server-1.6.3.901-r2[-minimal] )" |
166 | has dri ${IUSE//+} && DEPEND+=" dri? ( >=x11-base/xorg-server-1.6.3.901-r2[-minimal] )" |
| 157 | [[ -n "${DRIVER}" ]] && DEPEND+=" x11-base/xorg-server[xorg]" |
167 | [[ -n "${DRIVER}" ]] && DEPEND+=" x11-base/xorg-server[xorg]" |
| 158 | |
168 | |
| 159 | # @FUNCTION: xorg-2_pkg_setup |
169 | # @FUNCTION: xorg-2_pkg_setup |
| 160 | # @USAGE: |
|
|
| 161 | # @DESCRIPTION: |
170 | # @DESCRIPTION: |
| 162 | # Setup prefix compat |
171 | # Setup prefix compat |
| 163 | xorg-2_pkg_setup() { |
172 | xorg-2_pkg_setup() { |
| 164 | [[ ${FONT} == yes ]] && font_pkg_setup |
173 | [[ ${FONT} == yes ]] && font_pkg_setup |
| 165 | } |
174 | } |
| 166 | |
175 | |
| 167 | # @FUNCTION: xorg-2_src_unpack |
176 | # @FUNCTION: xorg-2_src_unpack |
| 168 | # @USAGE: |
|
|
| 169 | # @DESCRIPTION: |
177 | # @DESCRIPTION: |
| 170 | # Simply unpack source code. |
178 | # Simply unpack source code. |
| 171 | xorg-2_src_unpack() { |
179 | xorg-2_src_unpack() { |
| 172 | if [[ -n ${GIT_ECLASS} ]]; then |
180 | if [[ -n ${GIT_ECLASS} ]]; then |
| 173 | git_src_unpack |
181 | git_src_unpack |
| … | |
… | |
| 177 | |
185 | |
| 178 | [[ -n ${FONT_OPTIONS} ]] && einfo "Detected font directory: ${FONT_DIR}" |
186 | [[ -n ${FONT_OPTIONS} ]] && einfo "Detected font directory: ${FONT_DIR}" |
| 179 | } |
187 | } |
| 180 | |
188 | |
| 181 | # @FUNCTION: xorg-2_patch_source |
189 | # @FUNCTION: xorg-2_patch_source |
| 182 | # @USAGE: |
|
|
| 183 | # @DESCRIPTION: |
190 | # @DESCRIPTION: |
| 184 | # Apply all patches |
191 | # Apply all patches |
| 185 | xorg-2_patch_source() { |
192 | xorg-2_patch_source() { |
| 186 | # Use standardized names and locations with bulk patching |
193 | # Use standardized names and locations with bulk patching |
| 187 | # Patch directory is ${WORKDIR}/patch |
194 | # Patch directory is ${WORKDIR}/patch |
| 188 | # See epatch() in eutils.eclass for more documentation |
195 | # See epatch() in eutils.eclass for more documentation |
| 189 | EPATCH_SUFFIX=${EPATCH_SUFFIX:=patch} |
196 | EPATCH_SUFFIX=${EPATCH_SUFFIX:=patch} |
| 190 | |
197 | |
| 191 | [[ -d "${EPATCH_SOURCE}" ]] && epatch |
198 | [[ -d "${EPATCH_SOURCE}" ]] && epatch |
| 192 | base_src_prepare |
199 | base_src_prepare |
| 193 | epatch_user |
|
|
| 194 | } |
200 | } |
| 195 | |
201 | |
| 196 | # @FUNCTION: xorg-2_reconf_source |
202 | # @FUNCTION: xorg-2_reconf_source |
| 197 | # @USAGE: |
|
|
| 198 | # @DESCRIPTION: |
203 | # @DESCRIPTION: |
| 199 | # Run eautoreconf if necessary, and run elibtoolize. |
204 | # Run eautoreconf if necessary, and run elibtoolize. |
| 200 | xorg-2_reconf_source() { |
205 | xorg-2_reconf_source() { |
| 201 | case ${CHOST} in |
206 | case ${CHOST} in |
| 202 | *-interix* | *-aix* | *-winnt*) |
207 | *-interix* | *-aix* | *-winnt*) |
| 203 | # some hosts need full eautoreconf |
208 | # some hosts need full eautoreconf |
| 204 | [[ -e "./configure.ac" ]] && eautoreconf || ewarn "Unable to autoreconf the configure script. Things may fail." |
209 | [[ -e "./configure.ac" || -e "./configure.in" ]] && eautoreconf || ewarn "Unable to autoreconf the configure script. Things may fail." |
| 205 | ;; |
210 | ;; |
| 206 | *) |
211 | *) |
| 207 | # elibtoolize required for BSD |
212 | # elibtoolize required for BSD |
| 208 | [[ ${XORG_EAUTORECONF} != no && -e "./configure.ac" ]] && eautoreconf || elibtoolize |
213 | [[ ${XORG_EAUTORECONF} != no && ( -e "./configure.ac" || -e "./configure.in" ) ]] && eautoreconf || elibtoolize |
| 209 | ;; |
214 | ;; |
| 210 | esac |
215 | esac |
| 211 | } |
216 | } |
| 212 | |
217 | |
| 213 | # @FUNCTION: xorg-2_src_prepare |
218 | # @FUNCTION: xorg-2_src_prepare |
| 214 | # @USAGE: |
|
|
| 215 | # @DESCRIPTION: |
219 | # @DESCRIPTION: |
| 216 | # Prepare a package after unpacking, performing all X-related tasks. |
220 | # Prepare a package after unpacking, performing all X-related tasks. |
| 217 | xorg-2_src_prepare() { |
221 | xorg-2_src_prepare() { |
| 218 | [[ -n ${GIT_ECLASS} ]] && git_src_prepare |
222 | [[ -n ${GIT_ECLASS} ]] && git_src_prepare |
| 219 | xorg-2_patch_source |
223 | xorg-2_patch_source |
| 220 | xorg-2_reconf_source |
224 | xorg-2_reconf_source |
| 221 | } |
225 | } |
| 222 | |
226 | |
| 223 | # @FUNCTION: xorg-2_font_configure |
227 | # @FUNCTION: xorg-2_font_configure |
| 224 | # @USAGE: |
|
|
| 225 | # @DESCRIPTION: |
228 | # @DESCRIPTION: |
| 226 | # If a font package, perform any necessary configuration steps |
229 | # If a font package, perform any necessary configuration steps |
| 227 | xorg-2_font_configure() { |
230 | xorg-2_font_configure() { |
| 228 | if has nls ${IUSE//+} && ! use nls; then |
231 | if has nls ${IUSE//+} && ! use nls; then |
| 229 | FONT_OPTIONS+=" |
232 | FONT_OPTIONS+=" |
| … | |
… | |
| 245 | --disable-jisx0201 |
248 | --disable-jisx0201 |
| 246 | --disable-koi8-r" |
249 | --disable-koi8-r" |
| 247 | fi |
250 | fi |
| 248 | } |
251 | } |
| 249 | |
252 | |
| 250 | # @FUNCTION: x-modular_flags_setup |
253 | # @FUNCTION: xorg-2_flags_setup |
| 251 | # @USAGE: |
|
|
| 252 | # @DESCRIPTION: |
254 | # @DESCRIPTION: |
| 253 | # Set up CFLAGS for a debug build |
255 | # Set up CFLAGS for a debug build |
| 254 | xorg-2_flags_setup() { |
256 | xorg-2_flags_setup() { |
| 255 | # Win32 require special define |
257 | # Win32 require special define |
| 256 | [[ ${CHOST} == *-winnt* ]] && append-cppflags -DWIN32 -D__STDC__ |
258 | [[ ${CHOST} == *-winnt* ]] && append-cppflags -DWIN32 -D__STDC__ |
| 257 | # hardened ldflags |
259 | # hardened ldflags |
| 258 | [[ ${PN} = xorg-server || -n ${DRIVER} ]] && append-ldflags -Wl,-z,lazy |
260 | [[ ${PN} = xorg-server || -n ${DRIVER} ]] && append-ldflags -Wl,-z,lazy |
|
|
261 | |
|
|
262 | # Quite few libraries fail on runtime without these: |
|
|
263 | if has static-libs ${IUSE//+}; then |
|
|
264 | filter-flags -Wl,-Bdirect |
|
|
265 | filter-ldflags -Bdirect |
|
|
266 | filter-ldflags -Wl,-Bdirect |
|
|
267 | fi |
| 259 | } |
268 | } |
| 260 | |
269 | |
| 261 | # @FUNCTION: xorg-2_src_configure |
270 | # @FUNCTION: xorg-2_src_configure |
| 262 | # @USAGE: |
|
|
| 263 | # @DESCRIPTION: |
271 | # @DESCRIPTION: |
| 264 | # Perform any necessary pre-configuration steps, then run configure |
272 | # Perform any necessary pre-configuration steps, then run configure |
| 265 | xorg-2_src_configure() { |
273 | xorg-2_src_configure() { |
| 266 | local myopts="" |
274 | local myopts="" |
| 267 | |
275 | |
| 268 | xorg-2_flags_setup |
276 | xorg-2_flags_setup |
| 269 | [[ -n "${FONT}" ]] && xorg-2_font_configure |
277 | [[ -n "${FONT}" ]] && xorg-2_font_configure |
| 270 | |
278 | |
| 271 | # @VARIABLE: CONFIGURE_OPTIONS |
279 | # @VARIABLE: CONFIGURE_OPTIONS |
| 272 | # @DESCRIPTION: |
280 | # @DESCRIPTION: |
| 273 | # Any options to pass to configure |
281 | # Any options to pass to configure |
|
|
282 | # @DEFAULT_UNSET |
| 274 | CONFIGURE_OPTIONS=${CONFIGURE_OPTIONS:=""} |
283 | CONFIGURE_OPTIONS=${CONFIGURE_OPTIONS:=""} |
| 275 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
284 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
| 276 | if has static-libs ${IUSE//+}; then |
285 | if has static-libs ${IUSE//+}; then |
| 277 | myopts+=" $(use_enable static-libs static)" |
286 | myopts+=" $(use_enable static-libs static)" |
| 278 | fi |
287 | fi |
| … | |
… | |
| 282 | ${myopts} |
291 | ${myopts} |
| 283 | fi |
292 | fi |
| 284 | } |
293 | } |
| 285 | |
294 | |
| 286 | # @FUNCTION: xorg-2_src_compile |
295 | # @FUNCTION: xorg-2_src_compile |
| 287 | # @USAGE: |
|
|
| 288 | # @DESCRIPTION: |
296 | # @DESCRIPTION: |
| 289 | # Compile a package, performing all X-related tasks. |
297 | # Compile a package, performing all X-related tasks. |
| 290 | xorg-2_src_compile() { |
298 | xorg-2_src_compile() { |
| 291 | base_src_compile |
299 | base_src_compile |
| 292 | } |
300 | } |
| 293 | |
301 | |
| 294 | # @FUNCTION: xorg-2_src_install |
302 | # @FUNCTION: xorg-2_src_install |
| 295 | # @USAGE: |
|
|
| 296 | # @DESCRIPTION: |
303 | # @DESCRIPTION: |
| 297 | # Install a built package to ${D}, performing any necessary steps. |
304 | # Install a built package to ${D}, performing any necessary steps. |
| 298 | # Creates a ChangeLog from git if using live ebuilds. |
305 | # Creates a ChangeLog from git if using live ebuilds. |
| 299 | xorg-2_src_install() { |
306 | xorg-2_src_install() { |
| 300 | if [[ ${CATEGORY} == x11-proto ]]; then |
307 | if [[ ${CATEGORY} == x11-proto ]]; then |
| 301 | emake \ |
308 | emake \ |
| 302 | ${PN/proto/}docdir=${EPREFIX}/usr/share/doc/${PF} \ |
309 | ${PN/proto/}docdir=${EPREFIX}/usr/share/doc/${PF} \ |
|
|
310 | docdir=${EPREFIX}/usr/share/doc/${PF} \ |
| 303 | DESTDIR="${D}" \ |
311 | DESTDIR="${D}" \ |
| 304 | install || die "emake install failed" |
312 | install || die "emake install failed" |
| 305 | else |
313 | else |
| 306 | emake \ |
314 | emake \ |
| 307 | docdir=${EPREFIX}/usr/share/doc/${PF} \ |
315 | docdir=${EPREFIX}/usr/share/doc/${PF} \ |
| … | |
… | |
| 309 | install || die "emake install failed" |
317 | install || die "emake install failed" |
| 310 | fi |
318 | fi |
| 311 | |
319 | |
| 312 | if [[ -n ${GIT_ECLASS} ]]; then |
320 | if [[ -n ${GIT_ECLASS} ]]; then |
| 313 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" > /dev/null |
321 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" > /dev/null |
| 314 | git log ${GIT_TREE} > "${S}"/ChangeLog |
322 | git log ${EGIT_COMMIT} > "${S}"/ChangeLog |
| 315 | popd > /dev/null |
323 | popd > /dev/null |
| 316 | fi |
324 | fi |
| 317 | |
325 | |
| 318 | if [[ -e "${S}"/ChangeLog ]]; then |
326 | if [[ -e "${S}"/ChangeLog ]]; then |
| 319 | dodoc "${S}"/ChangeLog |
327 | dodoc "${S}"/ChangeLog |
| 320 | fi |
328 | fi |
| 321 | # @VARIABLE: DOCS |
329 | # @VARIABLE: DOCS |
| 322 | # @DESCRIPTION: |
330 | # @DESCRIPTION: |
| 323 | # Any documentation to install |
331 | # Any documentation to install |
|
|
332 | # @DEFAULT_UNSET |
| 324 | if [[ -n ${DOCS} ]]; then |
333 | if [[ -n ${DOCS} ]]; then |
| 325 | dodoc ${DOCS} || die "dodoc failed" |
334 | dodoc ${DOCS} || die "dodoc failed" |
| 326 | fi |
335 | fi |
| 327 | |
336 | |
| 328 | # Don't install libtool archives for server modules |
337 | # Don't install libtool archives for server modules |
| … | |
… | |
| 333 | |
342 | |
| 334 | [[ -n ${FONT} ]] && remove_font_metadata |
343 | [[ -n ${FONT} ]] && remove_font_metadata |
| 335 | } |
344 | } |
| 336 | |
345 | |
| 337 | # @FUNCTION: xorg-2_pkg_postinst |
346 | # @FUNCTION: xorg-2_pkg_postinst |
| 338 | # @USAGE: |
|
|
| 339 | # @DESCRIPTION: |
347 | # @DESCRIPTION: |
| 340 | # Run X-specific post-installation tasks on the live filesystem. The |
348 | # Run X-specific post-installation tasks on the live filesystem. The |
| 341 | # only task right now is some setup for font packages. |
349 | # only task right now is some setup for font packages. |
| 342 | xorg-2_pkg_postinst() { |
350 | xorg-2_pkg_postinst() { |
| 343 | [[ -n ${FONT} ]] && setup_fonts |
351 | [[ -n ${FONT} ]] && setup_fonts |
| 344 | } |
352 | } |
| 345 | |
353 | |
| 346 | # @FUNCTION: xorg-2_pkg_postrm |
354 | # @FUNCTION: xorg-2_pkg_postrm |
| 347 | # @USAGE: |
|
|
| 348 | # @DESCRIPTION: |
355 | # @DESCRIPTION: |
| 349 | # Run X-specific post-removal tasks on the live filesystem. The only |
356 | # Run X-specific post-removal tasks on the live filesystem. The only |
| 350 | # task right now is some cleanup for font packages. |
357 | # task right now is some cleanup for font packages. |
| 351 | xorg-2_pkg_postrm() { |
358 | xorg-2_pkg_postrm() { |
| 352 | if [[ -n ${FONT} ]]; then |
359 | if [[ -n ${FONT} ]]; then |
| 353 | cleanup_fonts |
|
|
| 354 | font_pkg_postrm |
360 | font_pkg_postrm |
| 355 | fi |
361 | fi |
| 356 | } |
362 | } |
| 357 | |
363 | |
| 358 | # @FUNCTION: cleanup_fonts |
|
|
| 359 | # @USAGE: |
|
|
| 360 | # @DESCRIPTION: |
|
|
| 361 | # Get rid of font directories that only contain generated files |
|
|
| 362 | cleanup_fonts() { |
|
|
| 363 | local allowed_files="encodings.dir fonts.alias fonts.cache-1 fonts.dir fonts.scale" |
|
|
| 364 | local real_dir=${EROOT}usr/share/fonts/${FONT_DIR} |
|
|
| 365 | local fle allowed_file |
|
|
| 366 | |
|
|
| 367 | unset KEEP_FONTDIR |
|
|
| 368 | |
|
|
| 369 | einfo "Checking ${real_dir} for useless files" |
|
|
| 370 | pushd ${real_dir} &> /dev/null |
|
|
| 371 | for fle in *; do |
|
|
| 372 | unset MATCH |
|
|
| 373 | for allowed_file in ${allowed_files}; do |
|
|
| 374 | if [[ ${fle} = ${allowed_file} ]]; then |
|
|
| 375 | # If it's allowed, then move on to the next file |
|
|
| 376 | MATCH="yes" |
|
|
| 377 | break |
|
|
| 378 | fi |
|
|
| 379 | done |
|
|
| 380 | # If we found a match in allowed files, move on to the next file |
|
|
| 381 | [[ -n ${MATCH} ]] && continue |
|
|
| 382 | # If we get this far, there wasn't a match in the allowed files |
|
|
| 383 | KEEP_FONTDIR="yes" |
|
|
| 384 | # We don't need to check more files if we're already keeping it |
|
|
| 385 | break |
|
|
| 386 | done |
|
|
| 387 | popd &> /dev/null |
|
|
| 388 | # If there are no files worth keeping, then get rid of the dir |
|
|
| 389 | [[ -z "${KEEP_FONTDIR}" ]] && rm -rf ${real_dir} |
|
|
| 390 | } |
|
|
| 391 | |
|
|
| 392 | # @FUNCTION: setup_fonts |
364 | # @FUNCTION: setup_fonts |
| 393 | # @USAGE: |
|
|
| 394 | # @DESCRIPTION: |
365 | # @DESCRIPTION: |
| 395 | # Generates needed files for fonts and fixes font permissions |
366 | # Generates needed files for fonts and fixes font permissions |
| 396 | setup_fonts() { |
367 | setup_fonts() { |
| 397 | create_fonts_scale |
368 | create_fonts_scale |
| 398 | create_fonts_dir |
369 | create_fonts_dir |
| 399 | font_pkg_postinst |
370 | font_pkg_postinst |
| 400 | } |
371 | } |
| 401 | |
372 | |
| 402 | # @FUNCTION: remove_font_metadata |
373 | # @FUNCTION: remove_font_metadata |
| 403 | # @USAGE: |
|
|
| 404 | # @DESCRIPTION: |
374 | # @DESCRIPTION: |
| 405 | # Don't let the package install generated font files that may overlap |
375 | # Don't let the package install generated font files that may overlap |
| 406 | # with other packages. Instead, they're generated in pkg_postinst(). |
376 | # with other packages. Instead, they're generated in pkg_postinst(). |
| 407 | remove_font_metadata() { |
377 | remove_font_metadata() { |
| 408 | if [[ ${FONT_DIR} != Speedo && ${FONT_DIR} != CID ]]; then |
378 | if [[ ${FONT_DIR} != Speedo && ${FONT_DIR} != CID ]]; then |
| … | |
… | |
| 410 | rm -rf "${ED}"/usr/share/fonts/${FONT_DIR}/fonts.{scale,dir,cache-1} |
380 | rm -rf "${ED}"/usr/share/fonts/${FONT_DIR}/fonts.{scale,dir,cache-1} |
| 411 | fi |
381 | fi |
| 412 | } |
382 | } |
| 413 | |
383 | |
| 414 | # @FUNCTION: create_fonts_scale |
384 | # @FUNCTION: create_fonts_scale |
| 415 | # @USAGE: |
|
|
| 416 | # @DESCRIPTION: |
385 | # @DESCRIPTION: |
| 417 | # Create fonts.scale file, used by the old server-side fonts subsystem. |
386 | # Create fonts.scale file, used by the old server-side fonts subsystem. |
| 418 | create_fonts_scale() { |
387 | create_fonts_scale() { |
| 419 | if [[ ${FONT_DIR} != Speedo && ${FONT_DIR} != CID ]]; then |
388 | if [[ ${FONT_DIR} != Speedo && ${FONT_DIR} != CID ]]; then |
| 420 | ebegin "Generating font.scale" |
389 | ebegin "Generating font.scale" |
| … | |
… | |
| 424 | eend $? |
393 | eend $? |
| 425 | fi |
394 | fi |
| 426 | } |
395 | } |
| 427 | |
396 | |
| 428 | # @FUNCTION: create_fonts_dir |
397 | # @FUNCTION: create_fonts_dir |
| 429 | # @USAGE: |
|
|
| 430 | # @DESCRIPTION: |
398 | # @DESCRIPTION: |
| 431 | # Create fonts.dir file, used by the old server-side fonts subsystem. |
399 | # Create fonts.dir file, used by the old server-side fonts subsystem. |
| 432 | create_fonts_dir() { |
400 | create_fonts_dir() { |
| 433 | ebegin "Generating fonts.dir" |
401 | ebegin "Generating fonts.dir" |
| 434 | mkfontdir \ |
402 | mkfontdir \ |