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