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