| OLD | NEW |
| 1 # Copyright 1999-2009 Gentoo Foundation | 1 # Copyright 1999-2009 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/media-libs/fontconfig/fontconfig-2.7.1-r1.ebu
ild,v 1.1 2009/08/23 22:48:21 dirtyepic Exp $ | 3 # $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/fontconfig-2.7.1-r1.ebu
ild,v 1.1 2009/08/23 22:48:21 dirtyepic Exp $ |
| 4 | 4 |
| 5 EAPI="2" | 5 EAPI="2" |
| 6 | 6 |
| 7 inherit eutils libtool toolchain-funcs flag-o-matic | 7 inherit eutils libtool toolchain-funcs flag-o-matic |
| 8 | 8 |
| 9 DESCRIPTION="A library for configuring and customizing font access" | 9 DESCRIPTION="A library for configuring and customizing font access" |
| 10 HOMEPAGE="http://fontconfig.org/" | 10 HOMEPAGE="http://fontconfig.org/" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 app-text/docbook-sgml-utils[jadetex] | 30 app-text/docbook-sgml-utils[jadetex] |
| 31 =app-text/docbook-sgml-dtd-3.1* | 31 =app-text/docbook-sgml-dtd-3.1* |
| 32 )" | 32 )" |
| 33 PDEPEND="app-admin/eselect-fontconfig" | 33 PDEPEND="app-admin/eselect-fontconfig" |
| 34 | 34 |
| 35 src_prepare() { | 35 src_prepare() { |
| 36 epatch "${FILESDIR}"/${P}-latin-reorder.patch #130466 | 36 epatch "${FILESDIR}"/${P}-latin-reorder.patch #130466 |
| 37 epatch "${FILESDIR}"/${P}-fonts-config.patch | 37 epatch "${FILESDIR}"/${P}-fonts-config.patch |
| 38 epatch "${FILESDIR}"/${P}-metric-aliases.patch | 38 epatch "${FILESDIR}"/${P}-metric-aliases.patch |
| 39 epatch "${FILESDIR}"/${P}-conf-d.patch | 39 epatch "${FILESDIR}"/${P}-conf-d.patch |
| 40 epatch "${FILESDIR}"/${P}-orth.patch |
| 40 epunt_cxx #74077 | 41 epunt_cxx #74077 |
| 41 | 42 |
| 42 # Needed to get a sane .so versioning on fbsd, please dont drop | 43 # Needed to get a sane .so versioning on fbsd, please dont drop |
| 43 # If you have to run eautoreconf, you can also leave the elibtoolize cal
l as | 44 # If you have to run eautoreconf, you can also leave the elibtoolize cal
l as |
| 44 # it will be a no-op. | 45 # it will be a no-op. |
| 45 elibtoolize | 46 elibtoolize |
| 46 } | 47 } |
| 47 | 48 |
| 48 src_configure() { | 49 src_configure() { |
| 49 local myconf | 50 local myconf |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 ewarn "If you need to reset your configuration to upstream defaults, del
ete" | 110 ewarn "If you need to reset your configuration to upstream defaults, del
ete" |
| 110 ewarn "the directory ${ROOT}etc/fonts/conf.d/ and re-emerge fontconfig." | 111 ewarn "the directory ${ROOT}etc/fonts/conf.d/ and re-emerge fontconfig." |
| 111 echo | 112 echo |
| 112 | 113 |
| 113 if [[ ${ROOT} = / ]]; then | 114 if [[ ${ROOT} = / ]]; then |
| 114 ebegin "Creating global font cache" | 115 ebegin "Creating global font cache" |
| 115 /usr/bin/fc-cache -sr | 116 /usr/bin/fc-cache -sr |
| 116 eend $? | 117 eend $? |
| 117 fi | 118 fi |
| 118 } | 119 } |
| OLD | NEW |