| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2009 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/xfconf.eclass,v 1.11 2010/03/26 11:41:57 ssuominen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.21 2011/01/27 17:32:49 ssuominen Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: xfconf.eclass |
5 | # @ECLASS: xfconf.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # XFCE maintainers <xfce@gentoo.org> |
7 | # XFCE maintainers <xfce@gentoo.org> |
| 8 | # @BLURB: Default XFCE ebuild layout |
8 | # @BLURB: Default XFCE ebuild layout |
| … | |
… | |
| 27 | |
27 | |
| 28 | # @ECLASS-VARIABLE: XFCONF |
28 | # @ECLASS-VARIABLE: XFCONF |
| 29 | # @DESCRIPTION: |
29 | # @DESCRIPTION: |
| 30 | # Define options for econf |
30 | # Define options for econf |
| 31 | |
31 | |
| 32 | inherit autotools base fdo-mime gnome2-utils libtool |
32 | inherit autotools base eutils fdo-mime gnome2-utils libtool |
| 33 | |
33 | |
| 34 | if ! [[ ${MY_P} ]]; then |
34 | if ! [[ ${MY_P} ]]; then |
| 35 | MY_P=${P} |
35 | MY_P=${P} |
| 36 | else |
36 | else |
| 37 | S=${WORKDIR}/${MY_P} |
37 | S=${WORKDIR}/${MY_P} |
| … | |
… | |
| 54 | unset _xfce4_intltool |
54 | unset _xfce4_intltool |
| 55 | unset _xfce4_m4 |
55 | unset _xfce4_m4 |
| 56 | |
56 | |
| 57 | XFCONF_EXPF="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
57 | XFCONF_EXPF="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
| 58 | case ${EAPI:-0} in |
58 | case ${EAPI:-0} in |
| 59 | 3|2) XFCONF_EXPF="${XFCONF_EXPF} src_prepare src_configure" ;; |
59 | 4|3|2) XFCONF_EXPF="${XFCONF_EXPF} src_prepare src_configure" ;; |
| 60 | 1|0) ;; |
60 | 1|0) ;; |
| 61 | *) die "Unknown EAPI." ;; |
61 | *) die "Unknown EAPI." ;; |
| 62 | esac |
62 | esac |
| 63 | EXPORT_FUNCTIONS ${XFCONF_EXPF} |
63 | EXPORT_FUNCTIONS ${XFCONF_EXPF} |
| 64 | |
64 | |
| 65 | # @FUNCTION: xfconf_use_debug |
65 | # @FUNCTION: xfconf_use_debug |
| 66 | # @RETURN: |
66 | # @DESCRIPTION: |
| 67 | # Return --enable-debug, --enable-debug=full or --disable-debug based on |
67 | # Return --enable-debug, null, --enable-debug=full or --disable-debug based on |
| 68 | # I_KNOW_WHAT_I_AM_DOING variable |
68 | # XFCONF_FULL_DEBUG variable and USE debug |
| 69 | xfconf_use_debug() { |
69 | xfconf_use_debug() { |
|
|
70 | if has debug ${IUSE}; then |
| 70 | if use debug; then |
71 | if use debug; then |
| 71 | if [[ -n $I_KNOW_WHAT_I_AM_DOING ]]; then |
72 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
| 72 | echo "--enable-debug=full" |
73 | echo "--enable-debug=full" |
|
|
74 | else |
|
|
75 | echo "--enable-debug" |
|
|
76 | fi |
| 73 | else |
77 | else |
| 74 | echo "--enable-debug" |
78 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
| 75 | fi |
|
|
| 76 | else |
|
|
| 77 | if [[ -n $I_KNOW_WHAT_I_AM_DOING ]]; then |
|
|
| 78 | echo "--disable-debug" |
79 | echo "--disable-debug" |
|
|
80 | fi |
| 79 | fi |
81 | fi |
| 80 | fi |
82 | fi |
| 81 | } |
83 | } |
| 82 | |
84 | |
| 83 | # @FUNCTION: xfconf_src_unpack |
85 | # @FUNCTION: xfconf_src_unpack |
| 84 | # @DESCRIPTION: |
86 | # @DESCRIPTION: |
| 85 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
87 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
| 86 | xfconf_src_unpack() { |
88 | xfconf_src_unpack() { |
|
|
89 | debug-print-function ${FUNCNAME} "$@" |
| 87 | unpack ${A} |
90 | unpack ${A} |
| 88 | cd "${S}" |
91 | cd "${S}" |
| 89 | has src_prepare ${XFCONF_EXPF} || xfconf_src_prepare |
92 | has src_prepare ${XFCONF_EXPF} || xfconf_src_prepare |
| 90 | } |
93 | } |
| 91 | |
94 | |
| 92 | # @FUNCTION: xfconf_src_prepare |
95 | # @FUNCTION: xfconf_src_prepare |
| 93 | # @DESCRIPTION: |
96 | # @DESCRIPTION: |
| 94 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
97 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
| 95 | xfconf_src_prepare() { |
98 | xfconf_src_prepare() { |
|
|
99 | debug-print-function ${FUNCNAME} "$@" |
| 96 | base_src_prepare |
100 | base_src_prepare |
| 97 | |
101 | |
| 98 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
102 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
| 99 | intltoolize --force --copy --automake || die "intltoolize failed" |
103 | intltoolize --force --copy --automake || die "intltoolize failed" |
| 100 | fi |
104 | fi |
| … | |
… | |
| 107 | fi |
111 | fi |
| 108 | } |
112 | } |
| 109 | |
113 | |
| 110 | # @FUNCTION: xfconf_src_configure |
114 | # @FUNCTION: xfconf_src_configure |
| 111 | # @DESCRIPTION: |
115 | # @DESCRIPTION: |
| 112 | # Run econf with opts in XFCONF variable |
116 | # Run econf with opts in XFCONF array |
| 113 | xfconf_src_configure() { |
117 | xfconf_src_configure() { |
|
|
118 | debug-print-function ${FUNCNAME} "$@" |
|
|
119 | |
|
|
120 | # Convert XFCONF to an array, see base.eclass for original code |
|
|
121 | if [[ "$(declare -p XFCONF 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
122 | XFCONF=( ${XFCONF} ) |
|
|
123 | fi |
|
|
124 | |
| 114 | econf ${XFCONF} |
125 | econf ${XFCONF[@]} |
| 115 | } |
126 | } |
| 116 | |
127 | |
| 117 | # @FUNCTION: xfconf_src_compile |
128 | # @FUNCTION: xfconf_src_compile |
| 118 | # @DESCRIPTION: |
129 | # @DESCRIPTION: |
| 119 | # Run econf with opts in XFCONF variable |
130 | # Run econf with opts in XFCONF variable |
| 120 | xfconf_src_compile() { |
131 | xfconf_src_compile() { |
|
|
132 | debug-print-function ${FUNCNAME} "$@" |
| 121 | has src_configure ${XFCONF_EXPF} || xfconf_src_configure |
133 | has src_configure ${XFCONF_EXPF} || xfconf_src_configure |
| 122 | emake || die "emake failed" |
134 | emake || die "emake failed" |
| 123 | } |
135 | } |
| 124 | |
136 | |
| 125 | # @FUNCTION: xfconf_src_install |
137 | # @FUNCTION: xfconf_src_install |
| 126 | # @DESCRIPTION: |
138 | # @DESCRIPTION: |
| 127 | # Run emake install and install documentation in DOCS variable |
139 | # Run emake install and install documentation in DOCS variable |
| 128 | xfconf_src_install() { |
140 | xfconf_src_install() { |
|
|
141 | debug-print-function ${FUNCNAME} "$@" |
| 129 | emake DESTDIR="${D}" install || die "emake install failed" |
142 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 130 | |
143 | |
| 131 | if [[ -n ${DOCS} ]]; then |
144 | if [[ -n ${DOCS} ]]; then |
| 132 | dodoc ${DOCS} || die "dodoc failed" |
145 | dodoc ${DOCS} || die "dodoc failed" |
| 133 | fi |
146 | fi |
|
|
147 | |
|
|
148 | has "${EAPI:-0}" 0 1 2 && ! use prefix && ED="${D}" |
|
|
149 | find "${ED}" -name '*.la' -exec rm -f {} + |
|
|
150 | |
|
|
151 | validate_desktop_entries |
| 134 | } |
152 | } |
| 135 | |
153 | |
| 136 | # @FUNCTION: xfconf_pkg_preinst |
154 | # @FUNCTION: xfconf_pkg_preinst |
| 137 | # @DESCRIPTION: |
155 | # @DESCRIPTION: |
| 138 | # Run gnome2_icon_savelist |
156 | # Run gnome2_icon_savelist |
| 139 | xfconf_pkg_preinst() { |
157 | xfconf_pkg_preinst() { |
|
|
158 | debug-print-function ${FUNCNAME} "$@" |
| 140 | gnome2_icon_savelist |
159 | gnome2_icon_savelist |
| 141 | } |
160 | } |
| 142 | |
161 | |
| 143 | # @FUNCTION: xfconf_pkg_postinst |
162 | # @FUNCTION: xfconf_pkg_postinst |
| 144 | # @DESCRIPTION: |
163 | # @DESCRIPTION: |
| 145 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
164 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
| 146 | xfconf_pkg_postinst() { |
165 | xfconf_pkg_postinst() { |
|
|
166 | debug-print-function ${FUNCNAME} "$@" |
| 147 | fdo-mime_desktop_database_update |
167 | fdo-mime_desktop_database_update |
| 148 | fdo-mime_mime_database_update |
168 | fdo-mime_mime_database_update |
| 149 | gnome2_icon_cache_update |
169 | gnome2_icon_cache_update |
| 150 | } |
170 | } |
| 151 | |
171 | |
| 152 | # @FUNCTION: xfconf_pkg_postrm |
172 | # @FUNCTION: xfconf_pkg_postrm |
| 153 | # @DESCRIPTION: |
173 | # @DESCRIPTION: |
| 154 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
174 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
| 155 | xfconf_pkg_postrm() { |
175 | xfconf_pkg_postrm() { |
|
|
176 | debug-print-function ${FUNCNAME} "$@" |
| 156 | fdo-mime_desktop_database_update |
177 | fdo-mime_desktop_database_update |
| 157 | fdo-mime_mime_database_update |
178 | fdo-mime_mime_database_update |
| 158 | gnome2_icon_cache_update |
179 | gnome2_icon_cache_update |
| 159 | } |
180 | } |