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