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