| 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.20 2005/11/11 05:29:41 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.27 2005/12/09 16:13:54 spyderous Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass is designed to reduce code duplication in the modularized X11 |
7 | # This eclass is designed to reduce code duplication in the modularized X11 |
| 8 | # ebuilds. |
8 | # ebuilds. |
| 9 | # |
9 | # |
| 10 | # If the ebuild installs fonts, set FONT="yes" at the top and set FONT_DIRS to |
10 | # If the ebuild installs fonts, set FONT="yes" at the top and set FONT_DIRS to |
| 11 | # the subdirectories within /usr/share/fonts to which it installs fonts. |
11 | # the subdirectories within /usr/share/fonts to which it installs fonts. |
| 12 | |
12 | |
| 13 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst |
13 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
| 14 | |
14 | |
| 15 | inherit eutils libtool |
15 | inherit eutils libtool toolchain-funcs |
| 16 | |
16 | |
| 17 | # Directory prefix to use for everything |
17 | # Directory prefix to use for everything |
| 18 | XDIR="/usr" |
18 | XDIR="/usr" |
| 19 | |
19 | |
| 20 | IUSE="" |
20 | IUSE="" |
| 21 | HOMEPAGE="http://xorg.freedesktop.org/" |
21 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 22 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
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 |
| 23 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
24 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
| 24 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
25 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
| 25 | LICENSE="X11" |
26 | LICENSE="X11" |
| 26 | SLOT="0" |
27 | SLOT="0" |
| 27 | |
28 | |
| … | |
… | |
| 34 | >=sys-devel/libtool-1.5 |
35 | >=sys-devel/libtool-1.5 |
| 35 | >=sys-devel/m4-1.4" |
36 | >=sys-devel/m4-1.4" |
| 36 | fi |
37 | fi |
| 37 | |
38 | |
| 38 | # If we're a font package, but not the font.alias one |
39 | # If we're a font package, but not the font.alias one |
| 39 | if [[ "${PN/#font-}" != "${PN}" ]] && [[ "${PN}" != "font-alias" ]]; then |
40 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
41 | && [[ "${PN}" != "font-alias" ]] \ |
|
|
42 | && [[ "${PN}" != "font-util" ]]; then |
| 40 | # Activate font code in the rest of the eclass |
43 | # Activate font code in the rest of the eclass |
| 41 | FONT="yes" |
44 | FONT="yes" |
| 42 | |
45 | |
| 43 | RDEPEND="${RDEPEND} |
46 | RDEPEND="${RDEPEND} |
| 44 | media-fonts/encodings" |
47 | media-fonts/encodings" |
| 45 | PDEPEND="${PDEPEND} |
48 | PDEPEND="${PDEPEND} |
| 46 | media-fonts/font-alias" |
49 | media-fonts/font-alias" |
|
|
50 | |
|
|
51 | # Starting with 7.0RC3, we can specify the font directory |
|
|
52 | # But oddly, we can't do the same for encodings or font-alias |
|
|
53 | |
|
|
54 | # Wrap in `if` so ebuilds can set it too |
|
|
55 | if [[ -z ${FONT_DIR} ]]; then |
|
|
56 | FONT_DIR=${PN##*-} |
|
|
57 | |
|
|
58 | fi |
|
|
59 | |
|
|
60 | # Fix case of font directories |
|
|
61 | FONT_DIR=${FONT_DIR/ttf/TTF} |
|
|
62 | FONT_DIR=${FONT_DIR/otf/OTF} |
|
|
63 | FONT_DIR=${FONT_DIR/type1/Type1} |
|
|
64 | FONT_DIR=${FONT_DIR/speedo/Speedo} |
|
|
65 | |
|
|
66 | # Set up configure option |
|
|
67 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
|
|
68 | |
|
|
69 | if [[ -n "${FONT}" ]]; then |
|
|
70 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]]; then |
|
|
71 | IUSE="${IUSE} nls" |
|
|
72 | fi |
|
|
73 | fi |
| 47 | fi |
74 | fi |
| 48 | |
75 | |
| 49 | # If we're a driver package |
76 | # If we're a driver package |
| 50 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
77 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 51 | # Don't build static driver modules |
78 | # Don't build static driver modules |
| 52 | DRIVER_OPTIONS="--disable-static" |
79 | DRIVER_OPTIONS="--disable-static" |
| 53 | fi |
80 | fi |
| 54 | |
81 | |
| 55 | DEPEND="${DEPEND} |
82 | DEPEND="${DEPEND} |
| 56 | >=dev-util/pkgconfig-0.18 |
83 | >=dev-util/pkgconfig-0.18 |
| 57 | >=x11-misc/util-macros-0.99.0_p20051007" |
84 | >=x11-misc/util-macros-0.99.2" |
| 58 | |
85 | |
|
|
86 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
| 59 | RDEPEND="${RDEPEND} |
87 | RDEPEND="${RDEPEND} |
| 60 | !<x11-base/xorg-x11-7.0.0_rc0" |
88 | !<=x11-base/xorg-x11-6.9 |
|
|
89 | >=sys-apps/man-1.6b-r2" |
| 61 | # Provides virtual/x11 for temporary use until packages are ported |
90 | # Provides virtual/x11 for temporary use until packages are ported |
| 62 | # x11-base/x11-env" |
91 | # x11-base/x11-env" |
| 63 | |
92 | |
| 64 | x-modular_unpack_source() { |
93 | x-modular_unpack_source() { |
| 65 | unpack ${A} |
94 | unpack ${A} |
| 66 | cd ${S} |
95 | cd ${S} |
| 67 | |
96 | |
| 68 | # Joshua Baergen - October 23, 2005 |
97 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 69 | # Fix shared lib issues on MIPS, FBSD, etc etc |
98 | einfo "Detected font directory: ${FONT_DIR}" |
| 70 | elibtoolize |
99 | fi |
| 71 | } |
100 | } |
| 72 | |
101 | |
| 73 | x-modular_patch_source() { |
102 | x-modular_patch_source() { |
| 74 | # Use standardized names and locations with bulk patching |
103 | # Use standardized names and locations with bulk patching |
| 75 | # Patch directory is ${WORKDIR}/patch |
104 | # Patch directory is ${WORKDIR}/patch |
| … | |
… | |
| 106 | fi |
135 | fi |
| 107 | |
136 | |
| 108 | } |
137 | } |
| 109 | |
138 | |
| 110 | x-modular_src_unpack() { |
139 | x-modular_src_unpack() { |
|
|
140 | for x in xorg-server xf86-video- xf86-input- ; do |
|
|
141 | if [[ ${PN:0:11} = $x ]] && gcc-specs-now; then |
|
|
142 | msg="Do not emerge ${PN} without vanilla gcc!" |
|
|
143 | eerror "$msg" |
|
|
144 | die "$msg" |
|
|
145 | fi |
|
|
146 | done |
|
|
147 | |
| 111 | x-modular_unpack_source |
148 | x-modular_unpack_source |
| 112 | x-modular_patch_source |
149 | x-modular_patch_source |
| 113 | x-modular_reconf_source |
150 | x-modular_reconf_source |
|
|
151 | |
|
|
152 | # Joshua Baergen - October 23, 2005 |
|
|
153 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
154 | elibtoolize |
|
|
155 | } |
|
|
156 | |
|
|
157 | x-modular_font_configure() { |
|
|
158 | if [[ -n "${FONT}" ]]; then |
|
|
159 | # Might be worth adding an option to configure your desired font |
|
|
160 | # and exclude all others. Also, should this USE be nls or minimal? |
|
|
161 | if ! use nls; then |
|
|
162 | FONT_OPTIONS="${FONT_OPTIONS} |
|
|
163 | --disable-iso8859-2 |
|
|
164 | --disable-iso8859-3 |
|
|
165 | --disable-iso8859-4 |
|
|
166 | --disable-iso8859-5 |
|
|
167 | --disable-iso8859-6 |
|
|
168 | --disable-iso8859-7 |
|
|
169 | --disable-iso8859-8 |
|
|
170 | --disable-iso8859-9 |
|
|
171 | --disable-iso8859-10 |
|
|
172 | --disable-iso8859-11 |
|
|
173 | --disable-iso8859-12 |
|
|
174 | --disable-iso8859-13 |
|
|
175 | --disable-iso8859-14 |
|
|
176 | --disable-iso8859-15 |
|
|
177 | --disable-iso8859-16 |
|
|
178 | --disable-jisx0201 |
|
|
179 | --disable-koi8-r" |
|
|
180 | fi |
|
|
181 | fi |
| 114 | } |
182 | } |
| 115 | |
183 | |
| 116 | x-modular_src_configure() { |
184 | x-modular_src_configure() { |
|
|
185 | x-modular_font_configure |
|
|
186 | |
| 117 | # If prefix isn't set here, .pc files cause problems |
187 | # If prefix isn't set here, .pc files cause problems |
| 118 | if [ -x ./configure ]; then |
188 | if [ -x ./configure ]; then |
| 119 | econf --prefix=${XDIR} \ |
189 | econf --prefix=${XDIR} \ |
| 120 | --datadir=${XDIR}/share \ |
190 | --datadir=${XDIR}/share \ |
|
|
191 | ${FONT_OPTIONS} \ |
| 121 | ${DRIVER_OPTIONS} \ |
192 | ${DRIVER_OPTIONS} \ |
| 122 | ${CONFIGURE_OPTIONS} |
193 | ${CONFIGURE_OPTIONS} |
| 123 | fi |
194 | fi |
| 124 | } |
195 | } |
| 125 | |
196 | |
| … | |
… | |
| 159 | if [[ -n "${FONT}" ]]; then |
230 | if [[ -n "${FONT}" ]]; then |
| 160 | setup_fonts |
231 | setup_fonts |
| 161 | fi |
232 | fi |
| 162 | } |
233 | } |
| 163 | |
234 | |
|
|
235 | x-modular_pkg_postrm() { |
|
|
236 | if [[ -n "${FONT}" ]]; then |
|
|
237 | cleanup_fonts |
|
|
238 | fi |
|
|
239 | } |
|
|
240 | |
|
|
241 | cleanup_fonts() { |
|
|
242 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
|
|
243 | for DIR in ${FONT_DIR}; do |
|
|
244 | unset KEEP_FONTDIR |
|
|
245 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
|
|
246 | |
|
|
247 | ebegin "Checking ${REAL_DIR} for useless files" |
|
|
248 | pushd ${REAL_DIR} &> /dev/null |
|
|
249 | for FILE in *; do |
|
|
250 | unset MATCH |
|
|
251 | for ALLOWED_FILE in ${ALLOWED_FILES}; do |
|
|
252 | if [[ ${FILE} = ${ALLOWED_FILE} ]]; then |
|
|
253 | # If it's allowed, then move on to the next file |
|
|
254 | MATCH="yes" |
|
|
255 | break |
|
|
256 | fi |
|
|
257 | done |
|
|
258 | # If we found a match in allowed files, move on to the next file |
|
|
259 | if [[ -n ${MATCH} ]]; then |
|
|
260 | continue |
|
|
261 | fi |
|
|
262 | # If we get this far, there wasn't a match in the allowed files |
|
|
263 | KEEP_FONTDIR="yes" |
|
|
264 | # We don't need to check more files if we're already keeping it |
|
|
265 | break |
|
|
266 | done |
|
|
267 | popd &> /dev/null |
|
|
268 | # If there are no files worth keeping, then get rid of the dir |
|
|
269 | if [[ -z "${KEEP_FONTDIR}" ]]; then |
|
|
270 | rm -rf ${REAL_DIR} |
|
|
271 | fi |
|
|
272 | eend 0 |
|
|
273 | done |
|
|
274 | } |
|
|
275 | |
| 164 | setup_fonts() { |
276 | setup_fonts() { |
| 165 | if [[ ! -n "${FONT_DIRS}" ]]; then |
277 | if [[ ! -n "${FONT_DIRS}" ]]; then |
| 166 | msg="FONT_DIRS empty. Set it to at least one subdir of /usr/share/fonts." |
278 | msg="FONT_DIRS is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
| 167 | eerror ${msg} |
279 | eerror "${msg}" |
| 168 | die ${msg} |
280 | die "${msg}" |
| 169 | fi |
281 | fi |
| 170 | |
282 | |
| 171 | create_fonts_scale |
283 | create_fonts_scale |
| 172 | create_fonts_dir |
284 | create_fonts_dir |
| 173 | fix_font_permissions |
285 | fix_font_permissions |