| 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.35 2005/12/23 08:28:00 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.40 2006/01/19 04:38:27 joshuabaergen 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. |
| … | |
… | |
| 44 | http://xorg.freedesktop.org/releases/X11R7.0-RC4/everything/${P}.tar.bz2 |
44 | http://xorg.freedesktop.org/releases/X11R7.0-RC4/everything/${P}.tar.bz2 |
| 45 | http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
45 | http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
| 46 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
46 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
| 47 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
47 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
| 48 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
48 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
| 49 | LICENSE="X11" |
|
|
| 50 | SLOT="0" |
49 | SLOT="0" |
|
|
50 | |
|
|
51 | # Set the license for the package. This can be overridden by setting |
|
|
52 | # LICENSE after the inherit. |
|
|
53 | LICENSE=${PN} |
| 51 | |
54 | |
| 52 | # Set up shared dependencies |
55 | # Set up shared dependencies |
| 53 | if [[ -n "${SNAPSHOT}" ]]; then |
56 | if [[ -n "${SNAPSHOT}" ]]; then |
| 54 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
57 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 55 | DEPEND="${DEPEND} |
58 | DEPEND="${DEPEND} |
| … | |
… | |
| 65 | && [[ "${PN}" != "font-util" ]]; then |
68 | && [[ "${PN}" != "font-util" ]]; then |
| 66 | # Activate font code in the rest of the eclass |
69 | # Activate font code in the rest of the eclass |
| 67 | FONT="yes" |
70 | FONT="yes" |
| 68 | |
71 | |
| 69 | RDEPEND="${RDEPEND} |
72 | RDEPEND="${RDEPEND} |
| 70 | media-fonts/encodings" |
73 | media-fonts/encodings |
| 71 | DEPEND="${DEPEND} |
|
|
| 72 | x11-apps/mkfontscale |
74 | x11-apps/mkfontscale |
| 73 | x11-apps/mkfontdir" |
75 | x11-apps/mkfontdir" |
| 74 | PDEPEND="${PDEPEND} |
76 | PDEPEND="${PDEPEND} |
| 75 | media-fonts/font-alias" |
77 | media-fonts/font-alias" |
| 76 | |
78 | |
| … | |
… | |
| 99 | fi |
101 | fi |
| 100 | fi |
102 | fi |
| 101 | |
103 | |
| 102 | # If we're a driver package |
104 | # If we're a driver package |
| 103 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
105 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 104 | # Don't build static driver modules |
|
|
| 105 | DRIVER_OPTIONS="--disable-static" |
|
|
| 106 | |
|
|
| 107 | # Enable driver code in the rest of the eclass |
106 | # Enable driver code in the rest of the eclass |
| 108 | DRIVER="yes" |
107 | DRIVER="yes" |
| 109 | |
108 | |
| 110 | # Add driver patchset to SRC_URI |
109 | # Add driver patchset to SRC_URI |
| 111 | SRC_URI="${SRC_URI} |
110 | SRC_URI="${SRC_URI} |
| 112 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
111 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
| 113 | fi |
112 | fi |
| 114 | |
113 | |
| 115 | DEPEND="${DEPEND} |
114 | DEPEND="${DEPEND} |
| 116 | >=dev-util/pkgconfig-0.18 |
115 | >=dev-util/pkgconfig-0.18" |
|
|
116 | |
|
|
117 | if [[ "${PN/util-macros}" != "${PN}" ]]; then |
|
|
118 | DEPEND="${DEPEND} |
| 117 | >=x11-misc/util-macros-0.99.2" |
119 | >=x11-misc/util-macros-0.99.2" |
|
|
120 | fi |
| 118 | |
121 | |
| 119 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
122 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
| 120 | RDEPEND="${RDEPEND} |
123 | RDEPEND="${RDEPEND} |
| 121 | !<=x11-base/xorg-x11-6.9 |
124 | !<=x11-base/xorg-x11-6.9 |
| 122 | >=sys-apps/man-1.6b-r2" |
125 | >=sys-apps/man-1.6b-r2" |