| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 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/x-modular.eclass,v 1.25 2005/12/07 11:19:47 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.106 2009/03/03 16:26:20 remi Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
5 | # @ECLASS: x-modular.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # Donnie Berkholz <dberkholz@gentoo.org>, x11@gentoo.org |
|
|
8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
|
|
9 | # @DESCRIPTION: |
|
|
10 | # This eclass makes trivial X ebuilds possible for apps, fonts, drivers, |
|
|
11 | # and more. Many things that would normally be done in various functions |
|
|
12 | # can be accessed by setting variables instead, such as patching, |
|
|
13 | # running eautoreconf, passing options to configure and installing docs. |
| 6 | # |
14 | # |
| 7 | # This eclass is designed to reduce code duplication in the modularized X11 |
15 | # All you need to do in a basic ebuild is inherit this eclass and set |
| 8 | # ebuilds. |
16 | # DESCRIPTION, KEYWORDS and RDEPEND/DEPEND. If your package is hosted |
| 9 | # |
17 | # with the other X packages, you don't need to set SRC_URI. Pretty much |
| 10 | # If the ebuild installs fonts, set FONT="yes" at the top and set FONT_DIRS to |
18 | # everything else should be automatic. |
| 11 | # the subdirectories within /usr/share/fonts to which it installs fonts. |
|
|
| 12 | |
19 | |
| 13 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
20 | # @ECLASS-VARIABLE: XDIR |
| 14 | |
21 | # @DESCRIPTION: |
| 15 | inherit eutils libtool |
22 | # Directory prefix to use for everything. If you want to install to a |
| 16 | |
23 | # non-default prefix (e.g., /opt/xorg), change XDIR. This has not been |
| 17 | # Directory prefix to use for everything |
24 | # recently tested. You may need to uncomment the setting of datadir and |
|
|
25 | # mandir in x-modular_src_install() or add it back in if it's no longer |
|
|
26 | # there. You may also want to change the SLOT. |
| 18 | XDIR="/usr" |
27 | XDIR="/usr" |
| 19 | |
28 | |
| 20 | IUSE="" |
29 | IUSE="" |
| 21 | HOMEPAGE="http://xorg.freedesktop.org/" |
30 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 22 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
31 | |
| 23 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
32 | if [[ -z ${SNAPSHOT} ]]; then |
| 24 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
33 | # @ECLASS-VARIABLE: SNAPSHOT |
| 25 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
34 | # @DESCRIPTION: |
| 26 | LICENSE="X11" |
35 | # If set to 'yes' and configure.ac exists, eautoreconf will run. Set |
|
|
36 | # before inheriting this eclass. |
|
|
37 | SNAPSHOT="no" |
|
|
38 | fi |
|
|
39 | |
|
|
40 | if [[ ${PV} = 9999* ]]; then |
|
|
41 | GIT_ECLASS="git" |
|
|
42 | SNAPSHOT="yes" |
|
|
43 | SRC_URI="" |
|
|
44 | fi |
|
|
45 | |
|
|
46 | # Set up SRC_URI for individual modular releases |
|
|
47 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
|
|
48 | # @ECLASS-VARIABLE: MODULE |
|
|
49 | # @DESCRIPTION: |
|
|
50 | # The subdirectory to download source from. Possible settings are app, |
|
|
51 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
|
|
52 | # inherit to override the default autoconfigured module. |
|
|
53 | if [[ -z ${MODULE} ]]; then |
|
|
54 | MODULE="" |
|
|
55 | case ${CATEGORY} in |
|
|
56 | app-doc) MODULE="doc" ;; |
|
|
57 | media-fonts) MODULE="font" ;; |
|
|
58 | x11-apps|x11-wm) MODULE="app" ;; |
|
|
59 | x11-misc|x11-themes) MODULE="util" ;; |
|
|
60 | x11-drivers) MODULE="driver" ;; |
|
|
61 | x11-base) MODULE="xserver" ;; |
|
|
62 | x11-proto) MODULE="proto" ;; |
|
|
63 | x11-libs) MODULE="lib" ;; |
|
|
64 | esac |
|
|
65 | fi |
|
|
66 | |
|
|
67 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
68 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}" |
|
|
69 | else |
|
|
70 | SRC_URI="${SRC_URI} ${BASE_INDIVIDUAL_URI}/${MODULE}/${P}.tar.bz2" |
|
|
71 | fi |
|
|
72 | |
| 27 | SLOT="0" |
73 | SLOT="0" |
| 28 | |
74 | |
|
|
75 | # Set the license for the package. This can be overridden by setting |
|
|
76 | # LICENSE after the inherit. |
|
|
77 | LICENSE=${PN} |
|
|
78 | |
| 29 | # Set up shared dependencies |
79 | # Set up shared dependencies |
| 30 | if [ -n "${SNAPSHOT}" ]; then |
80 | if [[ -n "${SNAPSHOT}" ]]; then |
| 31 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
81 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 32 | DEPEND="${DEPEND} |
82 | DEPEND="${DEPEND} |
| 33 | >=sys-devel/autoconf-2.57 |
|
|
| 34 | >=sys-devel/automake-1.7 |
|
|
| 35 | >=sys-devel/libtool-1.5 |
83 | >=sys-devel/libtool-1.5 |
| 36 | >=sys-devel/m4-1.4" |
84 | >=sys-devel/m4-1.4" |
|
|
85 | WANT_AUTOCONF="latest" |
|
|
86 | WANT_AUTOMAKE="latest" |
| 37 | fi |
87 | fi |
| 38 | |
88 | |
| 39 | # If we're a font package, but not the font.alias one |
89 | # If we're a font package, but not the font.alias one |
|
|
90 | FONT_ECLASS="" |
| 40 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
91 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
92 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 41 | && [[ "${PN}" != "font-alias" ]] \ |
93 | && [[ "${PN}" != "font-alias" ]] \ |
| 42 | && [[ "${PN}" != "font-util" ]]; then |
94 | && [[ "${PN}" != "font-util" ]]; then |
| 43 | # Activate font code in the rest of the eclass |
95 | # Activate font code in the rest of the eclass |
| 44 | FONT="yes" |
96 | FONT="yes" |
| 45 | |
97 | |
|
|
98 | # Whether to inherit the font eclass |
|
|
99 | FONT_ECLASS="font" |
|
|
100 | |
| 46 | RDEPEND="${RDEPEND} |
101 | RDEPEND="${RDEPEND} |
| 47 | media-fonts/encodings" |
102 | media-fonts/encodings |
|
|
103 | x11-apps/mkfontscale |
|
|
104 | x11-apps/mkfontdir" |
| 48 | PDEPEND="${PDEPEND} |
105 | PDEPEND="${PDEPEND} |
| 49 | media-fonts/font-alias" |
106 | media-fonts/font-alias" |
| 50 | |
107 | |
| 51 | # Starting with 7.0RC3, we can specify the font directory |
108 | # Starting with 7.0RC3, we can specify the font directory |
| 52 | # But oddly, we can't do the same for encodings or font-alias |
109 | # But oddly, we can't do the same for encodings or font-alias |
| 53 | |
110 | |
| 54 | # Wrap in `if` so ebuilds can set it too |
111 | # Wrap in `if` so ebuilds can set it too |
| 55 | if [[ -z ${FONT_DIR} ]]; then |
112 | if [[ -z ${FONT_DIR} ]]; then |
|
|
113 | # @ECLASS-VARIABLE: FONT_DIR |
|
|
114 | # @DESCRIPTION: |
|
|
115 | # If you're creating a font package and the suffix of PN is not equal to |
|
|
116 | # the subdirectory of /usr/share/fonts/ it should install into, set |
|
|
117 | # FONT_DIR to that directory or directories. Set before inheriting this |
|
|
118 | # eclass. |
| 56 | FONT_DIR=${PN##*-} |
119 | FONT_DIR=${PN##*-} |
| 57 | |
120 | |
| 58 | fi |
121 | fi |
| 59 | |
122 | |
| 60 | # Fix case of font directories |
123 | # Fix case of font directories |
| … | |
… | |
| 65 | |
128 | |
| 66 | # Set up configure option |
129 | # Set up configure option |
| 67 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
130 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
| 68 | |
131 | |
| 69 | if [[ -n "${FONT}" ]]; then |
132 | if [[ -n "${FONT}" ]]; then |
| 70 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]]; then |
133 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
| 71 | IUSE="${IUSE} nls" |
134 | IUSE="${IUSE} nls" |
| 72 | fi |
135 | fi |
| 73 | fi |
136 | fi |
| 74 | fi |
137 | fi |
| 75 | |
138 | |
| 76 | # If we're a driver package |
139 | # If we're a driver package |
| 77 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
140 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 78 | # Don't build static driver modules |
141 | # Enable driver code in the rest of the eclass |
| 79 | DRIVER_OPTIONS="--disable-static" |
142 | DRIVER="yes" |
|
|
143 | fi |
|
|
144 | |
|
|
145 | # Debugging -- ignore packages that can't be built with debugging |
|
|
146 | if [[ -z "${FONT}" ]] \ |
|
|
147 | && [[ "${CATEGORY/app-doc}" = "${CATEGORY}" ]] \ |
|
|
148 | && [[ "${CATEGORY/x11-proto}" = "${CATEGORY}" ]] \ |
|
|
149 | && [[ "${PN/util-macros}" = "${PN}" ]] \ |
|
|
150 | && [[ "${PN/xbitmaps}" = "${PN}" ]] \ |
|
|
151 | && [[ "${PN/xkbdata}" = "${PN}" ]] \ |
|
|
152 | && [[ "${PN/xorg-cf-files}" = "${PN}" ]] \ |
|
|
153 | && [[ "${PN/xcursor}" = "${PN}" ]] \ |
|
|
154 | ; then |
|
|
155 | DEBUGGABLE="yes" |
|
|
156 | IUSE="${IUSE} debug" |
| 80 | fi |
157 | fi |
| 81 | |
158 | |
| 82 | DEPEND="${DEPEND} |
159 | DEPEND="${DEPEND} |
| 83 | >=dev-util/pkgconfig-0.18 |
160 | >=dev-util/pkgconfig-0.18" |
|
|
161 | |
|
|
162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
|
|
163 | DEPEND="${DEPEND} |
| 84 | >=x11-misc/util-macros-0.99.2" |
164 | >=x11-misc/util-macros-0.99.2 |
|
|
165 | >=sys-devel/binutils-2.16.1-r3" |
|
|
166 | fi |
| 85 | |
167 | |
| 86 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
|
|
| 87 | RDEPEND="${RDEPEND} |
168 | RDEPEND="${RDEPEND} |
| 88 | !<=x11-base/xorg-x11-6.9 |
169 | !<=x11-base/xorg-x11-6.9" |
| 89 | >=sys-apps/man-1.6b-r2" |
|
|
| 90 | # Provides virtual/x11 for temporary use until packages are ported |
170 | # Provides virtual/x11 for temporary use until packages are ported |
| 91 | # x11-base/x11-env" |
171 | # x11-base/x11-env" |
| 92 | |
172 | |
|
|
173 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
|
|
174 | ${FONT_ECLASS} ${GIT_ECLASS} |
|
|
175 | |
|
|
176 | # @FUNCTION: x-modular_specs_check |
|
|
177 | # @USAGE: |
|
|
178 | # @DESCRIPTION: |
|
|
179 | # Make any necessary changes related to gcc specs (generally hardened) |
|
|
180 | x-modular_specs_check() { |
|
|
181 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
182 | append-ldflags -Wl,-z,lazy |
|
|
183 | # (#116698) breaks loading |
|
|
184 | filter-ldflags -Wl,-z,now |
|
|
185 | fi |
|
|
186 | } |
|
|
187 | |
|
|
188 | # @FUNCTION: x-modular_dri_check |
|
|
189 | # @USAGE: |
|
|
190 | # @DESCRIPTION: |
|
|
191 | # Ensures the server supports DRI if building a driver with DRI support |
|
|
192 | x-modular_dri_check() { |
|
|
193 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
194 | # support for it |
|
|
195 | if [[ -n "${DRIVER}" ]]; then |
|
|
196 | if has dri ${IUSE} && use dri; then |
|
|
197 | einfo "Checking for direct rendering capabilities ..." |
|
|
198 | if ! built_with_use --missing true x11-base/xorg-server dri; then |
|
|
199 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
200 | fi |
|
|
201 | fi |
|
|
202 | fi |
|
|
203 | } |
|
|
204 | |
|
|
205 | # @FUNCTION: x-modular_server_supports_drivers_check |
|
|
206 | # @USAGE: |
|
|
207 | # @DESCRIPTION: |
|
|
208 | # Ensures the server SDK is installed if a driver is being built |
|
|
209 | x-modular_server_supports_drivers_check() { |
|
|
210 | # (#135873) Only certain servers will actually use or be capable of |
|
|
211 | # building external drivers, including binary drivers. |
|
|
212 | if [[ -n "${DRIVER}" ]]; then |
|
|
213 | if has_version '>=x11-base/xorg-server-1.1'; then |
|
|
214 | if ! built_with_use x11-base/xorg-server xorg; then |
|
|
215 | eerror "x11-base/xorg-server is not built with support for external drivers." |
|
|
216 | die "You must build x11-base/xorg-server with USE=xorg." |
|
|
217 | fi |
|
|
218 | fi |
|
|
219 | fi |
|
|
220 | } |
|
|
221 | |
|
|
222 | # @FUNCTION: x-modular_unpack_source |
|
|
223 | # @USAGE: |
|
|
224 | # @DESCRIPTION: |
|
|
225 | # Simply unpack source code. Nothing else. |
| 93 | x-modular_unpack_source() { |
226 | x-modular_unpack_source() { |
|
|
227 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
228 | git_src_unpack |
|
|
229 | else |
| 94 | unpack ${A} |
230 | unpack ${A} |
|
|
231 | fi |
| 95 | cd ${S} |
232 | cd "${S}" |
| 96 | |
|
|
| 97 | # Joshua Baergen - October 23, 2005 |
|
|
| 98 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 99 | elibtoolize |
|
|
| 100 | |
233 | |
| 101 | if [[ -n ${FONT_OPTIONS} ]]; then |
234 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 102 | einfo "Detected font directory: ${FONT_DIR}" |
235 | einfo "Detected font directory: ${FONT_DIR}" |
| 103 | fi |
236 | fi |
| 104 | } |
237 | } |
| 105 | |
238 | |
|
|
239 | # @FUNCTION: x-modular_patch_source |
|
|
240 | # @USAGE: |
|
|
241 | # @DESCRIPTION: |
|
|
242 | # Apply all patches |
| 106 | x-modular_patch_source() { |
243 | x-modular_patch_source() { |
| 107 | # Use standardized names and locations with bulk patching |
244 | # Use standardized names and locations with bulk patching |
| 108 | # Patch directory is ${WORKDIR}/patch |
245 | # Patch directory is ${WORKDIR}/patch |
| 109 | # See epatch() in eutils.eclass for more documentation |
246 | # See epatch() in eutils.eclass for more documentation |
| 110 | if [ -z "${EPATCH_SUFFIX}" ] ; then |
247 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
| 111 | EPATCH_SUFFIX="patch" |
248 | EPATCH_SUFFIX="patch" |
| 112 | fi |
249 | fi |
| 113 | |
250 | |
| 114 | # For specific list of patches |
251 | # @VARIABLE: PATCHES |
|
|
252 | # @DESCRIPTION: |
|
|
253 | # If you have any patches to apply, set PATCHES to their locations and epatch |
|
|
254 | # will apply them. It also handles epatch-style bulk patches, if you know how to |
|
|
255 | # use them and set the correct variables. If you don't, read eutils.eclass. |
|
|
256 | if [[ ${#PATCHES[@]} -gt 1 ]]; then |
|
|
257 | for x in "${PATCHES[@]}"; do |
|
|
258 | epatch "${x}" |
|
|
259 | done |
| 115 | if [ -n "${PATCHES}" ] ; then |
260 | elif [[ -n "${PATCHES}" ]]; then |
| 116 | for PATCH in ${PATCHES} |
261 | for x in ${PATCHES}; do |
| 117 | do |
|
|
| 118 | epatch ${PATCH} |
262 | epatch "${x}" |
| 119 | done |
263 | done |
| 120 | # For non-default directory bulk patching |
264 | # For non-default directory bulk patching |
| 121 | elif [ -n "${PATCH_LOC}" ] ; then |
265 | elif [[ -n "${PATCH_LOC}" ]] ; then |
| 122 | epatch ${PATCH_LOC} |
266 | epatch ${PATCH_LOC} |
| 123 | # For standard bulk patching |
267 | # For standard bulk patching |
| 124 | elif [ -d "${EPATCH_SOURCE}" ] ; then |
268 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
| 125 | epatch |
269 | epatch |
| 126 | fi |
270 | fi |
| 127 | } |
271 | } |
| 128 | |
272 | |
|
|
273 | # @FUNCTION: x-modular_reconf_source |
|
|
274 | # @USAGE: |
|
|
275 | # @DESCRIPTION: |
|
|
276 | # Run eautoreconf if necessary, and run elibtoolize. |
| 129 | x-modular_reconf_source() { |
277 | x-modular_reconf_source() { |
| 130 | # Run autoreconf for CVS snapshots only |
|
|
| 131 | if [ "${SNAPSHOT}" = "yes" ] |
278 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 132 | then |
279 | then |
| 133 | # If possible, generate configure if it doesn't exist |
280 | # If possible, generate configure if it doesn't exist |
| 134 | if [ -f "${S}/configure.ac" ] |
281 | if [ -f "./configure.ac" ] |
| 135 | then |
282 | then |
| 136 | einfo "Running autoreconf..." |
283 | eautoreconf |
| 137 | autoreconf -v --force --install |
|
|
| 138 | fi |
|
|
| 139 | fi |
284 | fi |
|
|
285 | fi |
| 140 | |
286 | |
|
|
287 | # Joshua Baergen - October 23, 2005 |
|
|
288 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
289 | elibtoolize |
| 141 | } |
290 | } |
| 142 | |
291 | |
|
|
292 | # @FUNCTION: x-modular_src_unpack |
|
|
293 | # @USAGE: |
|
|
294 | # @DESCRIPTION: |
|
|
295 | # Unpack a package, performing all X-related tasks. |
| 143 | x-modular_src_unpack() { |
296 | x-modular_src_unpack() { |
|
|
297 | x-modular_specs_check |
|
|
298 | x-modular_server_supports_drivers_check |
|
|
299 | x-modular_dri_check |
| 144 | x-modular_unpack_source |
300 | x-modular_unpack_source |
| 145 | x-modular_patch_source |
301 | x-modular_patch_source |
| 146 | x-modular_reconf_source |
302 | x-modular_reconf_source |
| 147 | } |
303 | } |
| 148 | |
304 | |
|
|
305 | # @FUNCTION: x-modular_font_configure |
|
|
306 | # @USAGE: |
|
|
307 | # @DESCRIPTION: |
|
|
308 | # If a font package, perform any necessary configuration steps |
| 149 | x-modular_font_configure() { |
309 | x-modular_font_configure() { |
| 150 | if [[ -n "${FONT}" ]]; then |
310 | if [[ -n "${FONT}" ]]; then |
| 151 | # Might be worth adding an option to configure your desired font |
311 | # Might be worth adding an option to configure your desired font |
| 152 | # and exclude all others. Also, should this USE be nls or minimal? |
312 | # and exclude all others. Also, should this USE be nls or minimal? |
| 153 | if ! use nls; then |
313 | if ! use nls; then |
| … | |
… | |
| 171 | --disable-koi8-r" |
331 | --disable-koi8-r" |
| 172 | fi |
332 | fi |
| 173 | fi |
333 | fi |
| 174 | } |
334 | } |
| 175 | |
335 | |
|
|
336 | # @FUNCTION: x-modular_debug_setup |
|
|
337 | # @USAGE: |
|
|
338 | # @DESCRIPTION: |
|
|
339 | # Set up CFLAGS for a debug build |
|
|
340 | x-modular_debug_setup() { |
|
|
341 | if [[ -n "${DEBUGGABLE}" ]]; then |
|
|
342 | if use debug; then |
|
|
343 | strip-flags |
|
|
344 | append-flags -g |
|
|
345 | fi |
|
|
346 | fi |
|
|
347 | } |
|
|
348 | |
|
|
349 | # @FUNCTION: x-modular_src_configure |
|
|
350 | # @USAGE: |
|
|
351 | # @DESCRIPTION: |
|
|
352 | # Perform any necessary pre-configuration steps, then run configure |
| 176 | x-modular_src_configure() { |
353 | x-modular_src_configure() { |
| 177 | x-modular_font_configure |
354 | x-modular_font_configure |
|
|
355 | x-modular_debug_setup |
|
|
356 | |
|
|
357 | # @VARIABLE: CONFIGURE_OPTIONS |
|
|
358 | # @DESCRIPTION: |
|
|
359 | # Any options to pass to configure |
|
|
360 | [[ -n ${CONFIGURE_OPTIONS} ]] |
| 178 | |
361 | |
| 179 | # If prefix isn't set here, .pc files cause problems |
362 | # If prefix isn't set here, .pc files cause problems |
| 180 | if [ -x ./configure ]; then |
363 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
| 181 | econf --prefix=${XDIR} \ |
364 | econf --prefix=${XDIR} \ |
| 182 | --datadir=${XDIR}/share \ |
365 | --datadir=${XDIR}/share \ |
| 183 | ${FONT_OPTIONS} \ |
366 | ${FONT_OPTIONS} \ |
| 184 | ${DRIVER_OPTIONS} \ |
367 | ${DRIVER_OPTIONS} \ |
| 185 | ${CONFIGURE_OPTIONS} |
368 | ${CONFIGURE_OPTIONS} |
| 186 | fi |
369 | fi |
| 187 | } |
370 | } |
| 188 | |
371 | |
|
|
372 | # @FUNCTION: x-modular_src_make |
|
|
373 | # @USAGE: |
|
|
374 | # @DESCRIPTION: |
|
|
375 | # Run make. |
| 189 | x-modular_src_make() { |
376 | x-modular_src_make() { |
| 190 | emake || die "emake failed" |
377 | emake || die "emake failed" |
| 191 | } |
378 | } |
| 192 | |
379 | |
|
|
380 | # @FUNCTION: x-modular_src_configure |
|
|
381 | # @USAGE: |
|
|
382 | # @DESCRIPTION: |
|
|
383 | # Compile a package, performing all X-related tasks. |
| 193 | x-modular_src_compile() { |
384 | x-modular_src_compile() { |
| 194 | x-modular_src_configure |
385 | x-modular_src_configure |
| 195 | x-modular_src_make |
386 | x-modular_src_make |
| 196 | } |
387 | } |
| 197 | |
388 | |
|
|
389 | # @FUNCTION: x-modular_src_install |
|
|
390 | # @USAGE: |
|
|
391 | # @DESCRIPTION: |
|
|
392 | # Install a built package to ${D}, performing any necessary steps. |
|
|
393 | # Creates a ChangeLog from git if using live ebuilds. |
| 198 | x-modular_src_install() { |
394 | x-modular_src_install() { |
| 199 | # Install everything to ${XDIR} |
395 | # Install everything to ${XDIR} |
|
|
396 | if [[ ${CATEGORY} = x11-proto ]]; then |
| 200 | make \ |
397 | make \ |
|
|
398 | ${PN/proto/}docdir=/usr/share/doc/${PF} \ |
| 201 | DESTDIR="${D}" \ |
399 | DESTDIR="${D}" \ |
| 202 | install |
400 | install \ |
|
|
401 | || die |
|
|
402 | else |
|
|
403 | make \ |
|
|
404 | DESTDIR="${D}" \ |
|
|
405 | install \ |
|
|
406 | || die |
|
|
407 | fi |
| 203 | # Shouldn't be necessary in XDIR=/usr |
408 | # Shouldn't be necessary in XDIR=/usr |
| 204 | # einstall forces datadir, so we need to re-force it |
409 | # einstall forces datadir, so we need to re-force it |
| 205 | # datadir=${XDIR}/share \ |
410 | # datadir=${XDIR}/share \ |
| 206 | # mandir=${XDIR}/share/man \ |
411 | # mandir=${XDIR}/share/man \ |
| 207 | |
412 | |
|
|
413 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
414 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
|
|
415 | git log ${GIT_TREE} > "${S}"/ChangeLog |
|
|
416 | popd |
|
|
417 | fi |
|
|
418 | |
|
|
419 | if [[ -e ${S}/ChangeLog ]]; then |
|
|
420 | dodoc "${S}"/ChangeLog |
|
|
421 | fi |
|
|
422 | # @VARIABLE: DOCS |
|
|
423 | # @DESCRIPTION: |
|
|
424 | # Any documentation to install |
|
|
425 | [[ -n ${DOCS} ]] && dodoc ${DOCS} |
|
|
426 | |
| 208 | # Don't install libtool archives for server modules |
427 | # Don't install libtool archives for server modules |
| 209 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
428 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 210 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
429 | find "${D}"/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| 211 | | xargs rm -f |
430 | | xargs rm -f |
| 212 | fi |
431 | fi |
| 213 | } |
|
|
| 214 | |
432 | |
|
|
433 | if [[ -n "${FONT}" ]]; then |
|
|
434 | remove_font_metadata |
|
|
435 | fi |
|
|
436 | |
|
|
437 | if [[ -n "${DRIVER}" ]]; then |
|
|
438 | install_driver_hwdata |
|
|
439 | fi |
|
|
440 | } |
|
|
441 | |
|
|
442 | # @FUNCTION: x-modular_pkg_preinst |
|
|
443 | # @USAGE: |
|
|
444 | # @DESCRIPTION: |
|
|
445 | # This function doesn't do anything right now, but it may in the future. |
| 215 | x-modular_pkg_preinst() { |
446 | x-modular_pkg_preinst() { |
| 216 | if [[ -n "${FONT}" ]]; then |
447 | # We no longer do anything here, but we can't remove it from the API |
| 217 | discover_font_dirs |
448 | : |
| 218 | fi |
|
|
| 219 | } |
449 | } |
| 220 | |
450 | |
|
|
451 | # @FUNCTION: x-modular_pkg_postinst |
|
|
452 | # @USAGE: |
|
|
453 | # @DESCRIPTION: |
|
|
454 | # Run X-specific post-installation tasks on the live filesystem. The |
|
|
455 | # only task right now is some setup for font packages. |
| 221 | x-modular_pkg_postinst() { |
456 | x-modular_pkg_postinst() { |
| 222 | if [[ -n "${FONT}" ]]; then |
457 | if [[ -n "${FONT}" ]]; then |
| 223 | setup_fonts |
458 | setup_fonts |
| 224 | fi |
459 | fi |
| 225 | } |
460 | } |
| 226 | |
461 | |
|
|
462 | # @FUNCTION: x-modular_pkg_postrm |
|
|
463 | # @USAGE: |
|
|
464 | # @DESCRIPTION: |
|
|
465 | # Run X-specific post-removal tasks on the live filesystem. The only |
|
|
466 | # task right now is some cleanup for font packages. |
| 227 | x-modular_pkg_postrm() { |
467 | x-modular_pkg_postrm() { |
| 228 | if [[ -n "${FONT}" ]]; then |
468 | if [[ -n "${FONT}" ]]; then |
| 229 | cleanup_fonts |
469 | cleanup_fonts |
|
|
470 | font_pkg_postrm |
| 230 | fi |
471 | fi |
| 231 | } |
472 | } |
| 232 | |
473 | |
|
|
474 | # @FUNCTION: cleanup_fonts |
|
|
475 | # @USAGE: |
|
|
476 | # @DESCRIPTION: |
|
|
477 | # Get rid of font directories that only contain generated files |
| 233 | cleanup_fonts() { |
478 | cleanup_fonts() { |
| 234 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
479 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
| 235 | for DIR in ${FONT_DIR}; do |
480 | for DIR in ${FONT_DIR}; do |
| 236 | unset KEEP_FONTDIR |
481 | unset KEEP_FONTDIR |
| 237 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
482 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
| … | |
… | |
| 263 | fi |
508 | fi |
| 264 | eend 0 |
509 | eend 0 |
| 265 | done |
510 | done |
| 266 | } |
511 | } |
| 267 | |
512 | |
|
|
513 | # @FUNCTION: setup_fonts |
|
|
514 | # @USAGE: |
|
|
515 | # @DESCRIPTION: |
|
|
516 | # Generates needed files for fonts and fixes font permissions |
| 268 | setup_fonts() { |
517 | setup_fonts() { |
| 269 | if [[ ! -n "${FONT_DIRS}" ]]; then |
518 | if [[ ! -n "${FONT_DIR}" ]]; then |
| 270 | msg="FONT_DIRS is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
519 | msg="FONT_DIR is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
| 271 | eerror "${msg}" |
520 | eerror "${msg}" |
| 272 | die "${msg}" |
521 | die "${msg}" |
| 273 | fi |
522 | fi |
| 274 | |
523 | |
| 275 | create_fonts_scale |
524 | create_fonts_scale |
| 276 | create_fonts_dir |
525 | create_fonts_dir |
| 277 | fix_font_permissions |
526 | fix_font_permissions |
| 278 | create_font_cache |
527 | create_font_cache |
| 279 | } |
528 | } |
| 280 | |
529 | |
|
|
530 | # @FUNCTION: remove_font_metadata |
|
|
531 | # @USAGE: |
|
|
532 | # @DESCRIPTION: |
|
|
533 | # Don't let the package install generated font files that may overlap |
|
|
534 | # with other packages. Instead, they're generated in pkg_postinst(). |
|
|
535 | remove_font_metadata() { |
|
|
536 | local DIR |
|
|
537 | for DIR in ${FONT_DIR}; do |
|
|
538 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
539 | [[ "${DIR}" != "CID" ]] ; then |
|
|
540 | # Delete font metadata files |
|
|
541 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
542 | rm -f "${D}"/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
543 | fi |
|
|
544 | done |
|
|
545 | } |
|
|
546 | |
|
|
547 | # @FUNCTION: install_driver_hwdata |
|
|
548 | # @USAGE: |
|
|
549 | # @DESCRIPTION: |
|
|
550 | # Installs device-to-driver mappings for system-config-display and |
|
|
551 | # anything else that uses hwdata. |
|
|
552 | install_driver_hwdata() { |
|
|
553 | insinto /usr/share/hwdata/videoaliases |
|
|
554 | for i in "${FILESDIR}"/*.xinf; do |
|
|
555 | # We need this for the case when none exist, |
|
|
556 | # so *.xinf doesn't expand |
|
|
557 | if [[ -e $i ]]; then |
|
|
558 | doins $i |
|
|
559 | fi |
|
|
560 | done |
|
|
561 | } |
|
|
562 | |
|
|
563 | # @FUNCTION: discover_font_dirs |
|
|
564 | # @USAGE: |
|
|
565 | # @DESCRIPTION: |
|
|
566 | # Deprecated. Sets up the now-unused FONT_DIRS variable. |
| 281 | discover_font_dirs() { |
567 | discover_font_dirs() { |
| 282 | pushd ${IMAGE}/usr/share/fonts |
568 | FONT_DIRS="${FONT_DIR}" |
| 283 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
|
|
| 284 | FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')" |
|
|
| 285 | popd |
|
|
| 286 | } |
569 | } |
| 287 | |
570 | |
|
|
571 | # @FUNCTION: create_fonts_scale |
|
|
572 | # @USAGE: |
|
|
573 | # @DESCRIPTION: |
|
|
574 | # Create fonts.scale file, used by the old server-side fonts subsystem. |
| 288 | create_fonts_scale() { |
575 | create_fonts_scale() { |
| 289 | ebegin "Creating fonts.scale files" |
576 | ebegin "Creating fonts.scale files" |
| 290 | local x |
577 | local x |
| 291 | for FONT_DIR in ${FONT_DIRS}; do |
578 | for DIR in ${FONT_DIR}; do |
| 292 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
579 | x=${ROOT}/usr/share/fonts/${DIR} |
| 293 | [ -z "$(ls ${x}/)" ] && continue |
580 | [[ -z "$(ls ${x}/)" ]] && continue |
| 294 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
581 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 295 | |
582 | |
| 296 | # Only generate .scale files if truetype, opentype or type1 |
583 | # Only generate .scale files if truetype, opentype or type1 |
| 297 | # fonts are present ... |
584 | # fonts are present ... |
| 298 | |
585 | |
| 299 | # First truetype (ttf,ttc) |
|
|
| 300 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
|
|
| 301 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
586 | # NOTE: There is no way to regenerate Speedo/CID fonts.scale |
| 302 | # <spyderous@gentoo.org> 2 August 2004 |
587 | # <dberkholz@gentoo.org> 2 August 2004 |
| 303 | if [ "${x/encodings}" = "${x}" -a \ |
588 | if [[ "${x/encodings}" = "${x}" ]] \ |
| 304 | -n "$(find ${x} -iname '*.tt[cf]' -print)" ]; then |
|
|
| 305 | if [ -x ${ROOT}/usr/bin/ttmkfdir ]; then |
|
|
| 306 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
|
|
| 307 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
|
|
| 308 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
|
|
| 309 | -o ${x}/fonts.scale -d ${x} |
|
|
| 310 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
|
|
| 311 | local ttmkfdir_return=$? |
|
|
| 312 | else |
|
|
| 313 | # We didn't use ttmkfdir at all |
|
|
| 314 | local ttmkfdir_return=2 |
|
|
| 315 | fi |
|
|
| 316 | if [ ${ttmkfdir_return} -ne 0 ]; then |
|
|
| 317 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
|
|
| 318 | ${ROOT}/usr/bin/mkfontscale \ |
|
|
| 319 | -a /usr/share/fonts/encodings/encodings.dir \ |
|
|
| 320 | -- ${x} |
|
|
| 321 | fi |
|
|
| 322 | # Next type1 and opentype (pfa,pfb,otf,otc) |
|
|
| 323 | elif [ "${x/encodings}" = "${x}" -a \ |
|
|
| 324 | -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]; then |
589 | && [[ -n "$(find ${x} -iname '*.[pot][ft][abcf]' -print)" ]]; then |
| 325 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
590 | mkfontscale \ |
| 326 | ${ROOT}/usr/bin/mkfontscale \ |
|
|
| 327 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
591 | -a "${ROOT}"/usr/share/fonts/encodings/encodings.dir \ |
| 328 | -- ${x} |
592 | -- ${x} |
| 329 | fi |
593 | fi |
| 330 | done |
594 | done |
| 331 | eend 0 |
595 | eend 0 |
| 332 | } |
596 | } |
| 333 | |
597 | |
|
|
598 | # @FUNCTION: create_fonts_dir |
|
|
599 | # @USAGE: |
|
|
600 | # @DESCRIPTION: |
|
|
601 | # Create fonts.dir file, used by the old server-side fonts subsystem. |
| 334 | create_fonts_dir() { |
602 | create_fonts_dir() { |
| 335 | ebegin "Generating fonts.dir files" |
603 | ebegin "Generating fonts.dir files" |
| 336 | for FONT_DIR in ${FONT_DIRS}; do |
604 | for DIR in ${FONT_DIR}; do |
| 337 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
605 | x=${ROOT}/usr/share/fonts/${DIR} |
| 338 | [ -z "$(ls ${x}/)" ] && continue |
606 | [[ -z "$(ls ${x}/)" ]] && continue |
| 339 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
607 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 340 | |
608 | |
| 341 | if [ "${x/encodings}" = "${x}" ]; then |
609 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 342 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
610 | mkfontdir \ |
| 343 | ${ROOT}/usr/bin/mkfontdir \ |
|
|
| 344 | -e ${ROOT}/usr/share/fonts/encodings \ |
611 | -e "${ROOT}"/usr/share/fonts/encodings \ |
| 345 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
612 | -e "${ROOT}"/usr/share/fonts/encodings/large \ |
| 346 | -- ${x} |
613 | -- ${x} |
| 347 | fi |
614 | fi |
| 348 | done |
615 | done |
| 349 | eend 0 |
616 | eend 0 |
| 350 | } |
617 | } |
| 351 | |
618 | |
|
|
619 | # @FUNCTION: fix_font_permissions |
|
|
620 | # @USAGE: |
|
|
621 | # @DESCRIPTION: |
|
|
622 | # Font files should have 644 permissions. Ensure this is the case. |
| 352 | fix_font_permissions() { |
623 | fix_font_permissions() { |
| 353 | ebegin "Fixing permissions" |
624 | ebegin "Fixing permissions" |
| 354 | for FONT_DIR in ${FONT_DIRS}; do |
625 | for DIR in ${FONT_DIR}; do |
| 355 | find ${ROOT}/usr/share/fonts/${FONT_DIR} -type f -name 'font.*' \ |
626 | find "${ROOT}"/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
| 356 | -exec chmod 0644 {} \; |
627 | -exec chmod 0644 {} \; |
| 357 | done |
628 | done |
| 358 | eend 0 |
629 | eend 0 |
| 359 | } |
630 | } |
| 360 | |
631 | |
|
|
632 | # @FUNCTION: create_font_cache |
|
|
633 | # @USAGE: |
|
|
634 | # @DESCRIPTION: |
|
|
635 | # Create fonts.cache-1 files, used by the new client-side fonts |
|
|
636 | # subsystem. |
| 361 | create_font_cache() { |
637 | create_font_cache() { |
| 362 | # danarmak found out that fc-cache should be run AFTER all the above |
638 | font_pkg_postinst |
| 363 | # stuff, as otherwise the cache is invalid, and has to be run again |
|
|
| 364 | # as root anyway |
|
|
| 365 | if [ -x ${ROOT}/usr/bin/fc-cache ]; then |
|
|
| 366 | ebegin "Creating FC font cache" |
|
|
| 367 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
|
|
| 368 | eend 0 |
|
|
| 369 | fi |
|
|
| 370 | } |
639 | } |
|
|
640 | |
|
|
641 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |