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