1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2011 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.8 2010/03/22 15:53:50 darkside Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.39 2011/12/27 17:55:13 fauli 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 |
9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
10 | # Default XFCE ebuild layout |
10 | # Default XFCE ebuild layout |
11 | |
11 | |
12 | # @ECLASS-VARIABLE: EAUTORECONF |
12 | # @ECLASS-VARIABLE: EAUTORECONF |
13 | # @DESCRIPTION: |
13 | # @DESCRIPTION: |
14 | # Run eautoreconf instead of elibtoolize if set "yes" |
14 | # Run eautoreconf instead of elibtoolize if the variable is set |
15 | |
15 | |
16 | # @ECLASS-VARIABLE: EINTLTOOLIZE |
16 | # @ECLASS-VARIABLE: EINTLTOOLIZE |
17 | # @DESCRIPTION: |
17 | # @DESCRIPTION: |
18 | # Run intltoolize --force --copy --automake if set "yes" |
18 | # Run intltoolize --force --copy --automake if the variable is set |
19 | |
|
|
20 | # @ECLASS-VARIABLE: DOCS |
|
|
21 | # @DESCRIPTION: |
|
|
22 | # Define documentation to install |
|
|
23 | |
|
|
24 | # @ECLASS-VARIABLE: PATCHES |
|
|
25 | # @DESCRIPTION: |
|
|
26 | # Define patches to apply |
|
|
27 | |
19 | |
28 | # @ECLASS-VARIABLE: XFCONF |
20 | # @ECLASS-VARIABLE: XFCONF |
29 | # @DESCRIPTION: |
21 | # @DESCRIPTION: |
30 | # Define options for econf |
22 | # This should be an array defining arguments for econf |
31 | |
23 | |
32 | inherit autotools base fdo-mime gnome2-utils libtool |
24 | AUTOTOOLS_AUTO_DEPEND="no" |
33 | |
25 | |
34 | if ! [[ ${MY_P} ]]; then |
26 | unset _xfconf_live |
35 | MY_P=${P} |
27 | [[ $PV == *9999* ]] && _xfconf_live=git-2 |
36 | else |
|
|
37 | S=${WORKDIR}/${MY_P} |
|
|
38 | fi |
|
|
39 | |
28 | |
40 | SRC_URI="mirror://xfce/xfce/${PV}/src/${MY_P}.tar.bz2" |
29 | inherit ${_xfconf_live} autotools base eutils fdo-mime gnome2-utils libtool |
41 | |
30 | |
42 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
31 | EGIT_BOOTSTRAP="autogen.sh" |
43 | _xfce4_intltool="dev-util/intltool" |
32 | EGIT_REPO_URI="git://git.xfce.org/xfce/${MY_PN:-${PN}}" |
44 | fi |
|
|
45 | |
33 | |
46 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
34 | _xfconf_deps="" |
47 | _xfce4_m4="dev-util/xfce4-dev-tools" |
35 | _xfconf_m4=">=dev-util/xfce4-dev-tools-4.8.0 ${AUTOTOOLS_DEPEND}" |
48 | fi |
36 | |
|
|
37 | [[ -n $_xfconf_live ]] && _xfconf_deps+=" dev-util/gtk-doc ${_xfconf_m4}" |
|
|
38 | [[ -n $EINTLTOOLIZE ]] && _xfconf_deps+=" dev-util/intltool" |
|
|
39 | [[ -n $EAUTORECONF ]] && _xfconf_deps+=" ${_xfconf_m4}" |
49 | |
40 | |
50 | RDEPEND="" |
41 | RDEPEND="" |
51 | DEPEND="${_xfce4_intltool} |
42 | DEPEND="${_xfconf_deps}" |
52 | ${_xfce4_m4}" |
|
|
53 | |
43 | |
54 | unset _xfce4_intltool |
44 | unset _xfconf_deps |
55 | unset _xfce4_m4 |
45 | unset _xfconf_m4 |
56 | |
46 | |
57 | XFCONF_EXPF="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
|
|
58 | case ${EAPI:-0} in |
47 | case ${EAPI:-0} in |
59 | 3|2) XFCONF_EXPF="${XFCONF_EXPF} src_prepare src_configure" ;; |
48 | 4) ;; |
60 | 1|0) ;; |
|
|
61 | *) die "Unknown EAPI." ;; |
49 | *) die "Unknown EAPI." ;; |
62 | esac |
50 | esac |
63 | EXPORT_FUNCTIONS ${XFCONF_EXPF} |
51 | |
|
|
52 | [[ -n $_xfconf_live ]] && _xfconf_live=src_unpack |
|
|
53 | |
|
|
54 | EXPORT_FUNCTIONS ${_xfconf_live} src_prepare src_configure src_install pkg_preinst pkg_postinst pkg_postrm |
|
|
55 | |
|
|
56 | # @FUNCTION: xfconf_use_debug |
|
|
57 | # @DESCRIPTION: |
|
|
58 | # If IUSE has debug, return --enable-debug=minimum. |
|
|
59 | # If USE debug is enabled, return --enable-debug which is the same as --enable-debug=yes. |
|
|
60 | # If USE debug is enabled and the XFCONF_FULL_DEBUG variable is set, return --enable-debug=full. |
|
|
61 | xfconf_use_debug() { |
|
|
62 | if has debug ${IUSE}; then |
|
|
63 | if use debug; then |
|
|
64 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
|
|
65 | echo "--enable-debug=full" |
|
|
66 | else |
|
|
67 | echo "--enable-debug" |
|
|
68 | fi |
|
|
69 | else |
|
|
70 | echo "--enable-debug=minimum" |
|
|
71 | fi |
|
|
72 | else |
|
|
73 | ewarn "${FUNCNAME} called without debug in IUSE" |
|
|
74 | fi |
|
|
75 | } |
64 | |
76 | |
65 | # @FUNCTION: xfconf_src_unpack |
77 | # @FUNCTION: xfconf_src_unpack |
66 | # @DESCRIPTION: |
78 | # @DESCRIPTION: |
67 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
79 | # Run git-2_src_unpack if required |
68 | xfconf_src_unpack() { |
80 | xfconf_src_unpack() { |
69 | unpack ${A} |
81 | NOCONFIGURE=1 git-2_src_unpack |
70 | cd "${S}" |
|
|
71 | has src_prepare ${XFCONF_EXPF} || xfconf_src_prepare |
|
|
72 | } |
82 | } |
73 | |
83 | |
74 | # @FUNCTION: xfconf_src_prepare |
84 | # @FUNCTION: xfconf_src_prepare |
75 | # @DESCRIPTION: |
85 | # @DESCRIPTION: |
76 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
86 | # Run base_src_prepare and eautoreconf or elibtoolize |
77 | xfconf_src_prepare() { |
87 | xfconf_src_prepare() { |
|
|
88 | debug-print-function ${FUNCNAME} "$@" |
78 | base_src_prepare |
89 | base_src_prepare |
79 | |
90 | |
80 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
91 | if [[ -n $EINTLTOOLIZE ]]; then |
81 | intltoolize --force --copy --automake || die "intltoolize failed" |
92 | local _intltoolize="intltoolize --force --copy --automake" |
|
|
93 | ebegin "Running ${_intltoolize}" |
|
|
94 | ${_intltoolize} || die |
|
|
95 | eend $? |
82 | fi |
96 | fi |
83 | |
97 | |
84 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
98 | if [[ -n $EAUTORECONF ]]; then |
85 | has "${EAPI:-0}" 0 1 2 && EPREFIX= |
|
|
86 | AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" eautoreconf |
99 | AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros eautoreconf |
87 | else |
100 | else |
88 | elibtoolize |
101 | elibtoolize |
89 | fi |
102 | fi |
90 | } |
103 | } |
91 | |
104 | |
92 | # @FUNCTION: xfconf_src_configure |
105 | # @FUNCTION: xfconf_src_configure |
93 | # @DESCRIPTION: |
106 | # @DESCRIPTION: |
94 | # Run econf with opts in XFCONF variable |
107 | # Run econf with opts from the XFCONF array |
95 | xfconf_src_configure() { |
108 | xfconf_src_configure() { |
|
|
109 | debug-print-function ${FUNCNAME} "$@" |
|
|
110 | [[ -n $_xfconf_live ]] && XFCONF+=( --enable-maintainer-mode ) |
96 | econf ${XFCONF} |
111 | econf "${XFCONF[@]}" |
97 | } |
|
|
98 | |
|
|
99 | # @FUNCTION: xfconf_src_compile |
|
|
100 | # @DESCRIPTION: |
|
|
101 | # Run econf with opts in XFCONF variable |
|
|
102 | xfconf_src_compile() { |
|
|
103 | has src_configure ${XFCONF_EXPF} || xfconf_src_configure |
|
|
104 | emake || die "emake failed" |
|
|
105 | } |
112 | } |
106 | |
113 | |
107 | # @FUNCTION: xfconf_src_install |
114 | # @FUNCTION: xfconf_src_install |
108 | # @DESCRIPTION: |
115 | # @DESCRIPTION: |
109 | # Run emake install and install documentation in DOCS variable |
116 | # Run emake install and install documentation in the DOCS array |
110 | xfconf_src_install() { |
117 | xfconf_src_install() { |
111 | emake DESTDIR="${D}" install || die "emake install failed" |
118 | debug-print-function ${FUNCNAME} "$@" |
112 | |
119 | |
113 | if [[ -n ${DOCS} ]]; then |
120 | # FIXME |
114 | dodoc ${DOCS} || die "dodoc failed" |
121 | if [[ -n $_xfconf_live ]] && ! [[ -e ChangeLog ]]; then |
|
|
122 | touch ChangeLog |
115 | fi |
123 | fi |
|
|
124 | |
|
|
125 | base_src_install "$@" || die |
|
|
126 | |
|
|
127 | find "${ED}" -name '*.la' -exec rm -f {} + |
|
|
128 | |
|
|
129 | validate_desktop_entries |
116 | } |
130 | } |
117 | |
131 | |
118 | # @FUNCTION: xfconf_pkg_preinst |
132 | # @FUNCTION: xfconf_pkg_preinst |
119 | # @DESCRIPTION: |
133 | # @DESCRIPTION: |
120 | # Run gnome2_icon_savelist |
134 | # Run gnome2_icon_savelist |
121 | xfconf_pkg_preinst() { |
135 | xfconf_pkg_preinst() { |
|
|
136 | debug-print-function ${FUNCNAME} "$@" |
122 | gnome2_icon_savelist |
137 | gnome2_icon_savelist |
123 | } |
138 | } |
124 | |
139 | |
125 | # @FUNCTION: xfconf_pkg_postinst |
140 | # @FUNCTION: xfconf_pkg_postinst |
126 | # @DESCRIPTION: |
141 | # @DESCRIPTION: |
127 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
142 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
128 | xfconf_pkg_postinst() { |
143 | xfconf_pkg_postinst() { |
|
|
144 | debug-print-function ${FUNCNAME} "$@" |
129 | fdo-mime_desktop_database_update |
145 | fdo-mime_desktop_database_update |
130 | fdo-mime_mime_database_update |
146 | fdo-mime_mime_database_update |
131 | gnome2_icon_cache_update |
147 | gnome2_icon_cache_update |
132 | } |
148 | } |
133 | |
149 | |
134 | # @FUNCTION: xfconf_pkg_postrm |
150 | # @FUNCTION: xfconf_pkg_postrm |
135 | # @DESCRIPTION: |
151 | # @DESCRIPTION: |
136 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
152 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
137 | xfconf_pkg_postrm() { |
153 | xfconf_pkg_postrm() { |
|
|
154 | debug-print-function ${FUNCNAME} "$@" |
138 | fdo-mime_desktop_database_update |
155 | fdo-mime_desktop_database_update |
139 | fdo-mime_mime_database_update |
156 | fdo-mime_mime_database_update |
140 | gnome2_icon_cache_update |
157 | gnome2_icon_cache_update |
141 | } |
158 | } |