| 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.86 2007/09/24 08:20:00 dberkholz 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 | # @ECLASS: x-modular.eclass |
|
|
6 | # @MAINTAINER: |
| 5 | # Author: Donnie Berkholz <dberkholz@gentoo.org> |
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 | # If you want to change the auto-application of the driver patchset or prevent |
|
|
| 25 | # it from applying, edit XDPVER in the ebuild. Set it to -1 to prevent patch |
|
|
| 26 | # application or positive integers for that patch version. |
|
|
| 27 | # |
|
|
| 28 | # IMPORTANT: SNAPSHOT, FONT_DIR and XDPVER must be set _before_ the inherit. |
|
|
| 29 | # |
|
|
| 30 | # If you want to install to a non-default prefix (e.g., /opt/xorg), change |
|
|
| 31 | # XDIR. This has not been recently tested. You may need to uncomment the |
|
|
| 32 | # setting of datadir and mandir in x-modular_src_install() or add it back in if |
|
|
| 33 | # it's no longer there. You may also want to change the SLOT. |
|
|
| 34 | # |
|
|
| 35 | # Pretty much everything else should be automatic. |
18 | # everything else should be automatic. |
| 36 | |
19 | |
| 37 | # Directory prefix to use for everything |
20 | # @ECLASS-VARIABLE: XDIR |
|
|
21 | # @DESCRIPTION: |
|
|
22 | # Directory prefix to use for everything. If you want to install to a |
|
|
23 | # non-default prefix (e.g., /opt/xorg), change XDIR. This has not been |
|
|
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. |
| 38 | XDIR="/usr" |
27 | XDIR="/usr" |
| 39 | |
|
|
| 40 | # Set up default patchset version(s) if necessary |
|
|
| 41 | # x11-driver-patches |
|
|
| 42 | if [[ -z "${XDPVER}" ]]; then |
|
|
| 43 | XDPVER="1" |
|
|
| 44 | fi |
|
|
| 45 | |
28 | |
| 46 | IUSE="" |
29 | IUSE="" |
| 47 | HOMEPAGE="http://xorg.freedesktop.org/" |
30 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 48 | |
31 | |
|
|
32 | if [[ -z ${SNAPSHOT} ]]; then |
|
|
33 | # @ECLASS-VARIABLE: SNAPSHOT |
|
|
34 | # @DESCRIPTION: |
|
|
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 | |
| 49 | # Set up SRC_URI for individual modular releases |
46 | # Set up SRC_URI for individual modular releases |
| 50 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
47 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 51 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
48 | # @ECLASS-VARIABLE: MODULE |
| 52 | SRC_URI="${SRC_URI} |
49 | # @DESCRIPTION: |
| 53 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
50 | # The subdirectory to download source from. Possible settings are app, |
| 54 | elif [[ ${CATEGORY} = app-doc ]]; then |
51 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
| 55 | SRC_URI="${SRC_URI} |
52 | # inherit to override the default autoconfigured module. |
| 56 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
53 | if [[ -z ${MODULE} ]]; then |
| 57 | # x11-misc contains data and util, x11-themes contains data |
54 | MODULE="" |
| 58 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
55 | case ${CATEGORY} in |
| 59 | SRC_URI="${SRC_URI} |
56 | app-doc) MODULE="doc" ;; |
| 60 | ${BASE_INDIVIDUAL_URI}/data/${P}.tar.bz2 |
57 | media-fonts) MODULE="font" ;; |
| 61 | ${BASE_INDIVIDUAL_URI}/util/${P}.tar.bz2" |
58 | x11-apps|x11-wm) MODULE="app" ;; |
| 62 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
59 | x11-misc|x11-themes) MODULE="util" ;; |
| 63 | SRC_URI="${SRC_URI} |
60 | x11-drivers) MODULE="driver" ;; |
| 64 | ${BASE_INDIVIDUAL_URI}/driver/${P}.tar.bz2" |
61 | x11-base) MODULE="xserver" ;; |
| 65 | elif [[ ${CATEGORY} = media-fonts ]]; then |
62 | x11-proto) MODULE="proto" ;; |
| 66 | SRC_URI="${SRC_URI} |
63 | x11-libs) MODULE="lib" ;; |
| 67 | ${BASE_INDIVIDUAL_URI}/font/${P}.tar.bz2" |
64 | esac |
| 68 | elif [[ ${CATEGORY} = x11-libs ]]; then |
65 | fi |
| 69 | SRC_URI="${SRC_URI} |
66 | |
| 70 | ${BASE_INDIVIDUAL_URI}/lib/${P}.tar.bz2" |
67 | if [[ -n ${GIT_ECLASS} ]]; then |
| 71 | elif [[ ${CATEGORY} = x11-proto ]]; then |
68 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}" |
| 72 | SRC_URI="${SRC_URI} |
69 | else |
| 73 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
70 | SRC_URI="${SRC_URI} ${BASE_INDIVIDUAL_URI}/${MODULE}/${P}.tar.bz2" |
| 74 | elif [[ ${CATEGORY} = x11-base ]]; then |
|
|
| 75 | SRC_URI="${SRC_URI} |
|
|
| 76 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
|
|
| 77 | fi |
71 | fi |
| 78 | |
72 | |
| 79 | SLOT="0" |
73 | SLOT="0" |
| 80 | |
74 | |
| 81 | # Set the license for the package. This can be overridden by setting |
75 | # Set the license for the package. This can be overridden by setting |
| … | |
… | |
| 114 | # Starting with 7.0RC3, we can specify the font directory |
108 | # Starting with 7.0RC3, we can specify the font directory |
| 115 | # 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 |
| 116 | |
110 | |
| 117 | # Wrap in `if` so ebuilds can set it too |
111 | # Wrap in `if` so ebuilds can set it too |
| 118 | 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. |
| 119 | FONT_DIR=${PN##*-} |
119 | FONT_DIR=${PN##*-} |
| 120 | |
120 | |
| 121 | fi |
121 | fi |
| 122 | |
122 | |
| 123 | # Fix case of font directories |
123 | # Fix case of font directories |
| … | |
… | |
| 128 | |
128 | |
| 129 | # Set up configure option |
129 | # Set up configure option |
| 130 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
130 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
| 131 | |
131 | |
| 132 | if [[ -n "${FONT}" ]]; then |
132 | if [[ -n "${FONT}" ]]; then |
| 133 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]]; then |
133 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
| 134 | IUSE="${IUSE} nls" |
134 | IUSE="${IUSE} nls" |
| 135 | fi |
135 | fi |
| 136 | fi |
136 | fi |
| 137 | fi |
137 | fi |
| 138 | |
138 | |
| 139 | # If we're a driver package |
139 | # If we're a driver package |
| 140 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
140 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 141 | # Enable driver code in the rest of the eclass |
141 | # Enable driver code in the rest of the eclass |
| 142 | DRIVER="yes" |
142 | DRIVER="yes" |
| 143 | |
|
|
| 144 | if [[ ${XDPVER} != -1 ]]; then |
|
|
| 145 | # Add driver patchset to SRC_URI |
|
|
| 146 | SRC_URI="${SRC_URI} |
|
|
| 147 | mirror://gentoo/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
| 148 | fi |
|
|
| 149 | fi |
143 | fi |
| 150 | |
144 | |
| 151 | # Debugging -- ignore packages that can't be built with debugging |
145 | # Debugging -- ignore packages that can't be built with debugging |
| 152 | if [[ -z "${FONT}" ]] \ |
146 | if [[ -z "${FONT}" ]] \ |
| 153 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
147 | && [[ "${CATEGORY/app-doc}" = "${CATEGORY}" ]] \ |
| 154 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
148 | && [[ "${CATEGORY/x11-proto}" = "${CATEGORY}" ]] \ |
| 155 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
149 | && [[ "${PN/util-macros}" = "${PN}" ]] \ |
| 156 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
150 | && [[ "${PN/xbitmaps}" = "${PN}" ]] \ |
| 157 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
151 | && [[ "${PN/xkbdata}" = "${PN}" ]] \ |
| 158 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
152 | && [[ "${PN/xorg-cf-files}" = "${PN}" ]] \ |
| 159 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
153 | && [[ "${PN/xcursor}" = "${PN}" ]] \ |
| 160 | ; then |
154 | ; then |
| 161 | DEBUGGABLE="yes" |
155 | DEBUGGABLE="yes" |
| 162 | IUSE="${IUSE} debug" |
156 | IUSE="${IUSE} debug" |
| 163 | fi |
157 | fi |
| 164 | |
158 | |
| … | |
… | |
| 170 | >=x11-misc/util-macros-0.99.2 |
164 | >=x11-misc/util-macros-0.99.2 |
| 171 | >=sys-devel/binutils-2.16.1-r3" |
165 | >=sys-devel/binutils-2.16.1-r3" |
| 172 | fi |
166 | fi |
| 173 | |
167 | |
| 174 | RDEPEND="${RDEPEND} |
168 | RDEPEND="${RDEPEND} |
| 175 | || ( >=sys-apps/man-1.6b-r2 >=sys-apps/man-db-2.4.3-r1 ) |
|
|
| 176 | !<=x11-base/xorg-x11-6.9" |
169 | !<=x11-base/xorg-x11-6.9" |
| 177 | # Provides virtual/x11 for temporary use until packages are ported |
170 | # Provides virtual/x11 for temporary use until packages are ported |
| 178 | # x11-base/x11-env" |
171 | # x11-base/x11-env" |
| 179 | |
172 | |
| 180 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools ${FONT_ECLASS} |
173 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
|
|
174 | ${FONT_ECLASS} ${GIT_ECLASS} |
| 181 | |
175 | |
|
|
176 | # @FUNCTION: x-modular_specs_check |
|
|
177 | # @USAGE: |
|
|
178 | # @DESCRIPTION: |
|
|
179 | # Make any necessary changes related to gcc specs (generally hardened) |
| 182 | x-modular_specs_check() { |
180 | x-modular_specs_check() { |
| 183 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
181 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
| 184 | append-ldflags -Wl,-z,lazy |
182 | append-ldflags -Wl,-z,lazy |
| 185 | # (#116698) breaks loading |
183 | # (#116698) breaks loading |
| 186 | filter-ldflags -Wl,-z,now |
184 | filter-ldflags -Wl,-z,now |
| 187 | fi |
185 | fi |
| 188 | } |
186 | } |
| 189 | |
187 | |
|
|
188 | # @FUNCTION: x-modular_dri_check |
|
|
189 | # @USAGE: |
|
|
190 | # @DESCRIPTION: |
|
|
191 | # Ensures the server supports DRI if building a driver with DRI support |
| 190 | x-modular_dri_check() { |
192 | x-modular_dri_check() { |
| 191 | # (#120057) Enabling DRI in drivers requires that the server was built with |
193 | # (#120057) Enabling DRI in drivers requires that the server was built with |
| 192 | # support for it |
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) |
| 193 | if [[ -n "${DRIVER}" ]]; then |
197 | if [[ -n "${DRIVER}" ]]; then |
| 194 | if has dri ${IUSE} && use dri; then |
198 | if has dri ${IUSE} && use dri; then |
| 195 | einfo "Checking for direct rendering capabilities ..." |
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 |
| 196 | if ! built_with_use x11-base/xorg-server dri; then |
205 | if ! built_with_use x11-base/xorg-server dri; then |
| 197 | die "You must build x11-base/xorg-server with USE=dri." |
206 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
207 | fi |
| 198 | fi |
208 | fi |
| 199 | fi |
209 | fi |
| 200 | fi |
210 | fi |
| 201 | } |
211 | } |
| 202 | |
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 |
| 203 | x-modular_server_supports_drivers_check() { |
217 | x-modular_server_supports_drivers_check() { |
| 204 | # (#135873) Only certain servers will actually use or be capable of |
218 | # (#135873) Only certain servers will actually use or be capable of |
| 205 | # building external drivers, including binary drivers. |
219 | # building external drivers, including binary drivers. |
| 206 | if [[ -n "${DRIVER}" ]]; then |
220 | if [[ -n "${DRIVER}" ]]; then |
| 207 | if has_version '>=x11-base/xorg-server-1.1'; then |
221 | if has_version '>=x11-base/xorg-server-1.1'; then |
| … | |
… | |
| 211 | fi |
225 | fi |
| 212 | fi |
226 | fi |
| 213 | fi |
227 | fi |
| 214 | } |
228 | } |
| 215 | |
229 | |
|
|
230 | # @FUNCTION: x-modular_unpack_source |
|
|
231 | # @USAGE: |
|
|
232 | # @DESCRIPTION: |
|
|
233 | # Simply unpack source code. Nothing else. |
| 216 | x-modular_unpack_source() { |
234 | x-modular_unpack_source() { |
|
|
235 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
236 | git_src_unpack |
|
|
237 | else |
| 217 | unpack ${A} |
238 | unpack ${A} |
|
|
239 | fi |
| 218 | cd ${S} |
240 | cd "${S}" |
| 219 | |
241 | |
| 220 | if [[ -n ${FONT_OPTIONS} ]]; then |
242 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 221 | einfo "Detected font directory: ${FONT_DIR}" |
243 | einfo "Detected font directory: ${FONT_DIR}" |
| 222 | fi |
244 | fi |
| 223 | } |
245 | } |
| 224 | |
246 | |
|
|
247 | # @FUNCTION: x-modular_patch_source |
|
|
248 | # @USAGE: |
|
|
249 | # @DESCRIPTION: |
|
|
250 | # Apply all patches |
| 225 | x-modular_patch_source() { |
251 | x-modular_patch_source() { |
| 226 | # Use standardized names and locations with bulk patching |
252 | # Use standardized names and locations with bulk patching |
| 227 | # Patch directory is ${WORKDIR}/patch |
253 | # Patch directory is ${WORKDIR}/patch |
| 228 | # See epatch() in eutils.eclass for more documentation |
254 | # See epatch() in eutils.eclass for more documentation |
| 229 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
255 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
| 230 | EPATCH_SUFFIX="patch" |
256 | EPATCH_SUFFIX="patch" |
| 231 | fi |
257 | fi |
| 232 | |
258 | |
| 233 | # If this is a driver package we need to fix man page install location. |
259 | # @VARIABLE: PATCHES |
| 234 | # Running autoreconf will use the patched util-macros to make the |
260 | # @DESCRIPTION: |
| 235 | # 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 |
| 236 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]\ |
262 | # will apply them. It also handles epatch-style bulk patches, if you know how to |
| 237 | && [[ ${XDPVER} != -1 ]]; then |
263 | # use them and set the correct variables. If you don't, read eutils.eclass. |
| 238 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
264 | if [[ ${#PATCHES[@]} -gt 1 ]]; then |
| 239 | fi |
265 | for x in "${PATCHES[@]}"; do |
| 240 | |
266 | epatch "${x}" |
| 241 | # For specific list of patches |
267 | done |
| 242 | if [[ -n "${PATCHES}" ]] ; then |
268 | elif [[ -n "${PATCHES}" ]]; then |
| 243 | for PATCH in ${PATCHES} |
269 | for x in ${PATCHES}; do |
| 244 | do |
|
|
| 245 | epatch ${PATCH} |
270 | epatch "${x}" |
| 246 | done |
271 | done |
| 247 | # For non-default directory bulk patching |
272 | # For non-default directory bulk patching |
| 248 | elif [[ -n "${PATCH_LOC}" ]] ; then |
273 | elif [[ -n "${PATCH_LOC}" ]] ; then |
| 249 | epatch ${PATCH_LOC} |
274 | epatch ${PATCH_LOC} |
| 250 | # For standard bulk patching |
275 | # For standard bulk patching |
| 251 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
276 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
| 252 | epatch |
277 | epatch |
| 253 | fi |
278 | fi |
| 254 | } |
279 | } |
| 255 | |
280 | |
|
|
281 | # @FUNCTION: x-modular_reconf_source |
|
|
282 | # @USAGE: |
|
|
283 | # @DESCRIPTION: |
|
|
284 | # Run eautoreconf if necessary, and run elibtoolize. |
| 256 | x-modular_reconf_source() { |
285 | x-modular_reconf_source() { |
| 257 | # Run autoreconf for CVS snapshots only |
|
|
| 258 | if [[ "${SNAPSHOT}" = "yes" ]] |
286 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 259 | then |
287 | then |
| 260 | # If possible, generate configure if it doesn't exist |
288 | # If possible, generate configure if it doesn't exist |
| 261 | if [ -f "./configure.ac" ] |
289 | if [ -f "./configure.ac" ] |
| 262 | then |
290 | then |
| … | |
… | |
| 267 | # Joshua Baergen - October 23, 2005 |
295 | # Joshua Baergen - October 23, 2005 |
| 268 | # Fix shared lib issues on MIPS, FBSD, etc etc |
296 | # Fix shared lib issues on MIPS, FBSD, etc etc |
| 269 | elibtoolize |
297 | elibtoolize |
| 270 | } |
298 | } |
| 271 | |
299 | |
|
|
300 | # @FUNCTION: x-modular_src_unpack |
|
|
301 | # @USAGE: |
|
|
302 | # @DESCRIPTION: |
|
|
303 | # Unpack a package, performing all X-related tasks. |
| 272 | x-modular_src_unpack() { |
304 | x-modular_src_unpack() { |
| 273 | x-modular_specs_check |
305 | x-modular_specs_check |
| 274 | x-modular_server_supports_drivers_check |
306 | x-modular_server_supports_drivers_check |
| 275 | x-modular_dri_check |
307 | x-modular_dri_check |
| 276 | x-modular_unpack_source |
308 | x-modular_unpack_source |
| 277 | x-modular_patch_source |
309 | x-modular_patch_source |
| 278 | x-modular_reconf_source |
310 | x-modular_reconf_source |
| 279 | } |
311 | } |
| 280 | |
312 | |
|
|
313 | # @FUNCTION: x-modular_font_configure |
|
|
314 | # @USAGE: |
|
|
315 | # @DESCRIPTION: |
|
|
316 | # If a font package, perform any necessary configuration steps |
| 281 | x-modular_font_configure() { |
317 | x-modular_font_configure() { |
| 282 | if [[ -n "${FONT}" ]]; then |
318 | if [[ -n "${FONT}" ]]; then |
| 283 | # Might be worth adding an option to configure your desired font |
319 | # Might be worth adding an option to configure your desired font |
| 284 | # 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? |
| 285 | if ! use nls; then |
321 | if ! use nls; then |
| … | |
… | |
| 303 | --disable-koi8-r" |
339 | --disable-koi8-r" |
| 304 | fi |
340 | fi |
| 305 | fi |
341 | fi |
| 306 | } |
342 | } |
| 307 | |
343 | |
|
|
344 | # @FUNCTION: x-modular_debug_setup |
|
|
345 | # @USAGE: |
|
|
346 | # @DESCRIPTION: |
|
|
347 | # Set up CFLAGS for a debug build |
| 308 | x-modular_debug_setup() { |
348 | x-modular_debug_setup() { |
| 309 | if [[ -n "${DEBUGGABLE}" ]]; then |
349 | if [[ -n "${DEBUGGABLE}" ]]; then |
| 310 | if use debug; then |
350 | if use debug; then |
| 311 | strip-flags |
351 | strip-flags |
| 312 | append-flags -g |
352 | append-flags -g |
| 313 | fi |
353 | fi |
| 314 | fi |
354 | fi |
| 315 | } |
355 | } |
| 316 | |
356 | |
|
|
357 | # @FUNCTION: x-modular_src_configure |
|
|
358 | # @USAGE: |
|
|
359 | # @DESCRIPTION: |
|
|
360 | # Perform any necessary pre-configuration steps, then run configure |
| 317 | x-modular_src_configure() { |
361 | x-modular_src_configure() { |
| 318 | x-modular_font_configure |
362 | x-modular_font_configure |
| 319 | x-modular_debug_setup |
363 | x-modular_debug_setup |
|
|
364 | |
|
|
365 | # @VARIABLE: CONFIGURE_OPTIONS |
|
|
366 | # @DESCRIPTION: |
|
|
367 | # Any options to pass to configure |
|
|
368 | [[ -n ${CONFIGURE_OPTIONS} ]] |
| 320 | |
369 | |
| 321 | # If prefix isn't set here, .pc files cause problems |
370 | # If prefix isn't set here, .pc files cause problems |
| 322 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
371 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
| 323 | econf --prefix=${XDIR} \ |
372 | econf --prefix=${XDIR} \ |
| 324 | --datadir=${XDIR}/share \ |
373 | --datadir=${XDIR}/share \ |
| … | |
… | |
| 326 | ${DRIVER_OPTIONS} \ |
375 | ${DRIVER_OPTIONS} \ |
| 327 | ${CONFIGURE_OPTIONS} |
376 | ${CONFIGURE_OPTIONS} |
| 328 | fi |
377 | fi |
| 329 | } |
378 | } |
| 330 | |
379 | |
|
|
380 | # @FUNCTION: x-modular_src_make |
|
|
381 | # @USAGE: |
|
|
382 | # @DESCRIPTION: |
|
|
383 | # Run make. |
| 331 | x-modular_src_make() { |
384 | x-modular_src_make() { |
| 332 | emake || die "emake failed" |
385 | emake || die "emake failed" |
| 333 | } |
386 | } |
| 334 | |
387 | |
|
|
388 | # @FUNCTION: x-modular_src_configure |
|
|
389 | # @USAGE: |
|
|
390 | # @DESCRIPTION: |
|
|
391 | # Compile a package, performing all X-related tasks. |
| 335 | x-modular_src_compile() { |
392 | x-modular_src_compile() { |
| 336 | x-modular_src_configure |
393 | x-modular_src_configure |
| 337 | x-modular_src_make |
394 | x-modular_src_make |
| 338 | } |
395 | } |
| 339 | |
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. |
| 340 | x-modular_src_install() { |
402 | x-modular_src_install() { |
| 341 | # Install everything to ${XDIR} |
403 | # Install everything to ${XDIR} |
|
|
404 | if [[ ${CATEGORY} = x11-proto ]]; then |
| 342 | make \ |
405 | make \ |
|
|
406 | ${PN/proto/}docdir=/usr/share/doc/${PF} \ |
| 343 | DESTDIR="${D}" \ |
407 | DESTDIR="${D}" \ |
| 344 | install |
408 | install \ |
|
|
409 | || die |
|
|
410 | else |
|
|
411 | make \ |
|
|
412 | DESTDIR="${D}" \ |
|
|
413 | install \ |
|
|
414 | || die |
|
|
415 | fi |
| 345 | # Shouldn't be necessary in XDIR=/usr |
416 | # Shouldn't be necessary in XDIR=/usr |
| 346 | # einstall forces datadir, so we need to re-force it |
417 | # einstall forces datadir, so we need to re-force it |
| 347 | # datadir=${XDIR}/share \ |
418 | # datadir=${XDIR}/share \ |
| 348 | # mandir=${XDIR}/share/man \ |
419 | # mandir=${XDIR}/share/man \ |
| 349 | |
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 | |
| 350 | if [[ -e ${S}/ChangeLog ]]; then |
427 | if [[ -e ${S}/ChangeLog ]]; then |
| 351 | dodoc ${S}/ChangeLog |
428 | dodoc "${S}"/ChangeLog |
| 352 | fi |
429 | fi |
| 353 | |
430 | # @VARIABLE: DOCS |
| 354 | # Make sure docs get compressed |
431 | # @DESCRIPTION: |
| 355 | prepalldocs |
432 | # Any documentation to install |
|
|
433 | [[ -n ${DOCS} ]] && dodoc ${DOCS} |
| 356 | |
434 | |
| 357 | # Don't install libtool archives for server modules |
435 | # Don't install libtool archives for server modules |
| 358 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
436 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 359 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
437 | find "${D}"/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| 360 | | xargs rm -f |
438 | | xargs rm -f |
| 361 | fi |
439 | fi |
| 362 | |
440 | |
| 363 | # Don't install overlapping fonts.* files |
|
|
| 364 | # Generate them instead when possible |
|
|
| 365 | if [[ -n "${FONT}" ]]; then |
441 | if [[ -n "${FONT}" ]]; then |
| 366 | remove_font_metadata |
442 | remove_font_metadata |
| 367 | fi |
443 | fi |
| 368 | |
444 | |
| 369 | if [[ -n "${DRIVER}" ]]; then |
445 | if [[ -n "${DRIVER}" ]]; then |
| 370 | install_driver_hwdata |
446 | install_driver_hwdata |
| 371 | fi |
447 | fi |
| 372 | } |
448 | } |
| 373 | |
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. |
| 374 | x-modular_pkg_preinst() { |
454 | x-modular_pkg_preinst() { |
| 375 | # We no longer do anything here, but we can't remove it from the API |
455 | # We no longer do anything here, but we can't remove it from the API |
| 376 | : |
456 | : |
| 377 | } |
457 | } |
| 378 | |
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. |
| 379 | x-modular_pkg_postinst() { |
464 | x-modular_pkg_postinst() { |
| 380 | if [[ -n "${FONT}" ]]; then |
465 | if [[ -n "${FONT}" ]]; then |
| 381 | setup_fonts |
466 | setup_fonts |
| 382 | fi |
467 | fi |
| 383 | } |
468 | } |
| 384 | |
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. |
| 385 | x-modular_pkg_postrm() { |
475 | x-modular_pkg_postrm() { |
| 386 | if [[ -n "${FONT}" ]]; then |
476 | if [[ -n "${FONT}" ]]; then |
| 387 | cleanup_fonts |
477 | cleanup_fonts |
| 388 | font_pkg_postrm |
478 | font_pkg_postrm |
| 389 | fi |
479 | fi |
| 390 | } |
480 | } |
| 391 | |
481 | |
|
|
482 | # @FUNCTION: cleanup_fonts |
|
|
483 | # @USAGE: |
|
|
484 | # @DESCRIPTION: |
|
|
485 | # Get rid of font directories that only contain generated files |
| 392 | cleanup_fonts() { |
486 | cleanup_fonts() { |
| 393 | 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" |
| 394 | for DIR in ${FONT_DIR}; do |
488 | for DIR in ${FONT_DIR}; do |
| 395 | unset KEEP_FONTDIR |
489 | unset KEEP_FONTDIR |
| 396 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
490 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
| … | |
… | |
| 422 | fi |
516 | fi |
| 423 | eend 0 |
517 | eend 0 |
| 424 | done |
518 | done |
| 425 | } |
519 | } |
| 426 | |
520 | |
|
|
521 | # @FUNCTION: setup_fonts |
|
|
522 | # @USAGE: |
|
|
523 | # @DESCRIPTION: |
|
|
524 | # Generates needed files for fonts and fixes font permissions |
| 427 | setup_fonts() { |
525 | setup_fonts() { |
| 428 | if [[ ! -n "${FONT_DIR}" ]]; then |
526 | if [[ ! -n "${FONT_DIR}" ]]; then |
| 429 | msg="FONT_DIR 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." |
| 430 | eerror "${msg}" |
528 | eerror "${msg}" |
| 431 | die "${msg}" |
529 | die "${msg}" |
| … | |
… | |
| 435 | create_fonts_dir |
533 | create_fonts_dir |
| 436 | fix_font_permissions |
534 | fix_font_permissions |
| 437 | create_font_cache |
535 | create_font_cache |
| 438 | } |
536 | } |
| 439 | |
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(). |
| 440 | remove_font_metadata() { |
543 | remove_font_metadata() { |
| 441 | local DIR |
544 | local DIR |
| 442 | for DIR in ${FONT_DIR}; do |
545 | for DIR in ${FONT_DIR}; do |
| 443 | if [[ "${DIR}" != "Speedo" ]] && \ |
546 | if [[ "${DIR}" != "Speedo" ]] && \ |
| 444 | [[ "${DIR}" != "CID" ]] ; then |
547 | [[ "${DIR}" != "CID" ]] ; then |
| 445 | # Delete font metadata files |
548 | # Delete font metadata files |
| 446 | # fonts.scale, fonts.dir, fonts.cache-1 |
549 | # fonts.scale, fonts.dir, fonts.cache-1 |
| 447 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
550 | rm -f "${D}"/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
| 448 | fi |
551 | fi |
| 449 | done |
552 | done |
| 450 | } |
553 | } |
| 451 | |
554 | |
|
|
555 | # @FUNCTION: install_driver_hwdata |
|
|
556 | # @USAGE: |
|
|
557 | # @DESCRIPTION: |
| 452 | # Installs device-to-driver mappings for system-config-display |
558 | # Installs device-to-driver mappings for system-config-display and |
| 453 | # and anything else that uses hwdata |
559 | # anything else that uses hwdata. |
| 454 | install_driver_hwdata() { |
560 | install_driver_hwdata() { |
| 455 | insinto /usr/share/hwdata/videoaliases |
561 | insinto /usr/share/hwdata/videoaliases |
| 456 | for i in "${FILESDIR}"/*.xinf; do |
562 | for i in "${FILESDIR}"/*.xinf; do |
| 457 | # We need this for the case when none exist, |
563 | # We need this for the case when none exist, |
| 458 | # so *.xinf doesn't expand |
564 | # so *.xinf doesn't expand |
| … | |
… | |
| 460 | doins $i |
566 | doins $i |
| 461 | fi |
567 | fi |
| 462 | done |
568 | done |
| 463 | } |
569 | } |
| 464 | |
570 | |
|
|
571 | # @FUNCTION: discover_font_dirs |
|
|
572 | # @USAGE: |
|
|
573 | # @DESCRIPTION: |
|
|
574 | # Deprecated. Sets up the now-unused FONT_DIRS variable. |
| 465 | discover_font_dirs() { |
575 | discover_font_dirs() { |
| 466 | FONT_DIRS="${FONT_DIR}" |
576 | FONT_DIRS="${FONT_DIR}" |
| 467 | } |
577 | } |
| 468 | |
578 | |
|
|
579 | # @FUNCTION: create_fonts_scale |
|
|
580 | # @USAGE: |
|
|
581 | # @DESCRIPTION: |
|
|
582 | # Create fonts.scale file, used by the old server-side fonts subsystem. |
| 469 | create_fonts_scale() { |
583 | create_fonts_scale() { |
| 470 | ebegin "Creating fonts.scale files" |
584 | ebegin "Creating fonts.scale files" |
| 471 | local x |
585 | local x |
| 472 | for DIR in ${FONT_DIR}; do |
586 | for DIR in ${FONT_DIR}; do |
| 473 | x=${ROOT}/usr/share/fonts/${DIR} |
587 | x=${ROOT}/usr/share/fonts/${DIR} |
| … | |
… | |
| 480 | # NOTE: There is no way to regenerate Speedo/CID fonts.scale |
594 | # NOTE: There is no way to regenerate Speedo/CID fonts.scale |
| 481 | # <dberkholz@gentoo.org> 2 August 2004 |
595 | # <dberkholz@gentoo.org> 2 August 2004 |
| 482 | if [[ "${x/encodings}" = "${x}" ]] \ |
596 | if [[ "${x/encodings}" = "${x}" ]] \ |
| 483 | && [[ -n "$(find ${x} -iname '*.[pot][ft][abcf]' -print)" ]]; then |
597 | && [[ -n "$(find ${x} -iname '*.[pot][ft][abcf]' -print)" ]]; then |
| 484 | mkfontscale \ |
598 | mkfontscale \ |
| 485 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
599 | -a "${ROOT}"/usr/share/fonts/encodings/encodings.dir \ |
| 486 | -- ${x} |
600 | -- ${x} |
| 487 | fi |
601 | fi |
| 488 | done |
602 | done |
| 489 | eend 0 |
603 | eend 0 |
| 490 | } |
604 | } |
| 491 | |
605 | |
|
|
606 | # @FUNCTION: create_fonts_dir |
|
|
607 | # @USAGE: |
|
|
608 | # @DESCRIPTION: |
|
|
609 | # Create fonts.dir file, used by the old server-side fonts subsystem. |
| 492 | create_fonts_dir() { |
610 | create_fonts_dir() { |
| 493 | ebegin "Generating fonts.dir files" |
611 | ebegin "Generating fonts.dir files" |
| 494 | for DIR in ${FONT_DIR}; do |
612 | for DIR in ${FONT_DIR}; do |
| 495 | x=${ROOT}/usr/share/fonts/${DIR} |
613 | x=${ROOT}/usr/share/fonts/${DIR} |
| 496 | [[ -z "$(ls ${x}/)" ]] && continue |
614 | [[ -z "$(ls ${x}/)" ]] && continue |
| 497 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
615 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 498 | |
616 | |
| 499 | if [[ "${x/encodings}" = "${x}" ]]; then |
617 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 500 | mkfontdir \ |
618 | mkfontdir \ |
| 501 | -e ${ROOT}/usr/share/fonts/encodings \ |
619 | -e "${ROOT}"/usr/share/fonts/encodings \ |
| 502 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
620 | -e "${ROOT}"/usr/share/fonts/encodings/large \ |
| 503 | -- ${x} |
621 | -- ${x} |
| 504 | fi |
622 | fi |
| 505 | done |
623 | done |
| 506 | eend 0 |
624 | eend 0 |
| 507 | } |
625 | } |
| 508 | |
626 | |
|
|
627 | # @FUNCTION: fix_font_permissions |
|
|
628 | # @USAGE: |
|
|
629 | # @DESCRIPTION: |
|
|
630 | # Font files should have 644 permissions. Ensure this is the case. |
| 509 | fix_font_permissions() { |
631 | fix_font_permissions() { |
| 510 | ebegin "Fixing permissions" |
632 | ebegin "Fixing permissions" |
| 511 | for DIR in ${FONT_DIR}; do |
633 | for DIR in ${FONT_DIR}; do |
| 512 | find ${ROOT}/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
634 | find "${ROOT}"/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
| 513 | -exec chmod 0644 {} \; |
635 | -exec chmod 0644 {} \; |
| 514 | done |
636 | done |
| 515 | eend 0 |
637 | eend 0 |
| 516 | } |
638 | } |
| 517 | |
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. |
| 518 | create_font_cache() { |
645 | create_font_cache() { |
| 519 | font_pkg_postinst |
646 | font_pkg_postinst |
| 520 | } |
647 | } |
| 521 | |
648 | |
| 522 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
649 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |